@import url('https://fonts.googleapis.com/css2?family=Balsamiq+Sans:ital,wght@0,400;0,800;1,400;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Balsamiq+Sans:ital,wght@0,400;0,800;1,400;1,800&family=Poetsen+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Balsamiq+Sans:ital,wght@0,400;0,800;1,400;1,800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poetsen+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Balsamiq+Sans:ital,wght@0,400;0,800;1,400;1,800&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poetsen+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,800;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,800;1,800;1,900&display=swap');
/* Fonts */
body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  color: #222;
}

/* Global background for all sections */
.hero-section,
.growth-partner,
.amazon-services,
.case-study-highlight,
.partner-section,
.insights-section,
.faq-section,
.cta-footer-wrapper {
  background-color: #F5F3F0 !important;
;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  font-family: 'Balsamiq Sans', cursive;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.logo {
  font-size: 22px;
  font-weight: 700;
}
.logo-orange {
  color: #ff6600;
}
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
}
.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.cta-btnn {
  background: #ff6600;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
}
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Section Layout */
.hero-section {
  background-color: #fdfbf9;
  padding: 80px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* Left Content */
.hero-content {
    flex: 1 1 60%;
    min-width: 565px;
}

/* Orange badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #ff4b00;
  font-size: 18px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.hero-dot {
  width: 8px;
  height: 8px;
  background: #ff4b00;
  border-radius: 50%;
  margin-right: 8px;
}

/* Heading */
.hero-content h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 59px;
    line-height: 1.3;
    color: #000;
    margin-bottom: 20px;
    margin-top: 0;
    letter-spacing: -1%;
    line-height: 75px !important;
}

.hero-content .highlight {
  color: #ff4b00;
  font-style: italic;
  font-weight: 700;
}

/* Paragraph */
.hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: #000;
    line-height: 35px;
    margin-bottom: 35px;
    max-width: 667px;
    /* letter-spacing: -1.3px; */
}

/* Buttons */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-outline {
  /* border: 2px solid #ff4b00; */
  /* color: #ff4b00; */
  /* background: #fff; */
  /* padding: 11px 30px; */
  /* border-radius: 8px; */
  /* text-decoration: none; */
  /* font-family: 'Inter', sans-serif; */
  /* font-weight: 600; */
  /* transition: all 0.3s ease; */
  width: 22%;
  display: inline-block;
  background: #fff;
  color: #ff6600;
  font-family: 'DM Sans', sans-serif;
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 20px;
  text-decoration: none;
  margin-bottom: 18px;
  transition: background 0.3s 
ease;
  text-align: center;
}

.btn-outline:hover {
  background: #ff4b00;
  color: #fff;
}

.btn-orange {
  background: #ff4b00;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background: #e34300;
}

/* Right Image */
.hero-image {
    flex: 2 1 30%;
    text-align: right;
}
.hero-image img {
    width: 100%;
    max-width: 407px;
    border-radius: 15px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-image {
    order: 1;
    text-align: center;
  }

  .hero-image img {
    max-width: 350px;
    margin-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
}
/* Section Wrapper */
.growth-partner {
    background-color: #F5F3F0;
    text-align: center;
    padding: 73px 20px;
}

.growth-container {
    max-width: 1200px;
    margin: 0 auto;
}
/* Heading */
.growth-partner h2 {
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: #000;
  margin-bottom: 16px;
  /* background: #F5F3F0 ! IMPORTANT; */
  margin-top: 17px;
  /* line-height: 75px; */
}

.growth-partner .highlight {
  color: #F45600;
  font-style: italic;
}

/* Description */
.growth-description {
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-size: 25px;
    line-height: 37px;
    /* max-width: 720px; */
    margin: 0 auto 60px;
    letter-spacing: 0.5px;
}

/* Grid */
.growth-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Box */
.growth-box {
    background: #FFFFFFE5;
    border-radius: 12px;
    padding: 24px 30px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    /* display: flex
; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
    height: 220px;
    transition: all 0.3s 
ease;
}

.growth-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Box Heading */
.growth-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeInUp 1.3s 
ease forwards;
    /* text-align: justify; */
    margin-top: 0;
    /* margin-left: -89px; */
}

/* Box Paragraph */
.growth-box p {
    font-family: 'Poppins', sans-serif;
    font-size: 21px;
    width: 500px;
    font-weight: 300;
    line-height: 1.6;
    color: #000;
    /* max-width: 320px; */
    opacity: 0;
    animation: fadeInUp 1.3s 
ease forwards;
    animation-delay: 0.3s;
    /* width: 800px; */
    text-align: left;
}
/* Sequential Animation */
.growth-box:nth-child(1) h3,
.growth-box:nth-child(1) p { animation-delay: 0.2s; }
.growth-box:nth-child(2) h3,
.growth-box:nth-child(2) p { animation-delay: 0.4s; }
.growth-box:nth-child(3) h3,
.growth-box:nth-child(3) p { animation-delay: 0.6s; }
.growth-box:nth-child(4) h3,
.growth-box:nth-child(4) p { animation-delay: 0.8s; }

/* Animation */
@keyframes fadeInUp {
  from { transform: translateY(15px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .growth-grid {
    grid-template-columns: 1fr;
  }
  .growth-box {
    height: auto;
    padding: 40px 25px;
  }
}
/* Base Section */
.amazon-services {
  background-color: #fff;
  padding: 50px 20px 60px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.services-container {
    max-width: 1200px !important;
    margin: 0 auto;
}

/* Headings */
.amazon-services h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    line-height: 75px;
    margin-bottom: 0px;
}

.highlight-italic {
  color: #ff4b00;
  font-style: italic;
}

.services-subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    color: #333333;
    line-height: 38px;
    /* max-width: 750px; */
    /* margin: 10px auto 60px; */
}

/* Service Rows */
.service-item {
    display: grid;
    grid-template-columns: 418px 1fr;
    align-items: start;
    border-top: 1px solid #eaeaea;
    padding: 25px 0;
    gap: 30px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center !important;
}

.service-title h3 {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #000;
    margin-top: 5px;
}

.service-description p {
    font-family: 'Poppins', sans-serif;
    font-size: 21px;
    color: #333333;
    line-height: 35px;
    margin-bottom: 20px;
}

.service-description a {
  font-family: 'Inter';
  color: #000;
  font-weight: 400;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  line-height: 25px;
  /* padding-top: 30px !important; */
}

.service-description a:hover {
  text-decoration: underline;
  margin-left: 3px;
}

/* CTA Banner */
.cta-banner {
    background:  linear-gradient(90deg, #F45600 0%, rgba(244, 86, 0, 0.8) 50%, #F45600 100%);
    color: #fff;
    border-radius: 8px;
    margin: 80px auto 40px;
    padding: 71px 30px;
    max-width: 1148px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.cta-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    text-align: left;
}

.testimonial-cta .cta-btn {
  background: #ff4b00;
  color: #fff;
  padding: 20px 54px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #ffece2;
}

/* Closing Paragraph */
.closing-text {
    font-family: 'Poppins', sans-serif;
    color: #333;
    font-size: 25px;
    line-height: 37px;
    max-width: 1200px;
    margin: 20px auto 0;
    text-align: center;
    letter-spacing: 0.5px;
}
/* Trusted by Growing Pet Brands */
.trusted-section {
  background-color: #f7f5f1;
  padding: 60px 20px 0;
  font-family: 'Inter', sans-serif;
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
}

.trusted-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  text-align: center;
  margin: 0 0 10px;
}

.trusted-subtext {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: #333;
  text-align: center;
  line-height: 1.7;
  margin: 0 auto 28px;
}

.trusted-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 26px;
  display: flex
;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.trusted-copy { flex: 1; }

.trusted-quote {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin: 0 0 14px;
}

.trusted-link {
  font-family: 'Inter', sans-serif;
  color: #ff4b00;
  font-weight: 600;
  text-decoration: none;
}

.trusted-link:hover { text-decoration: underline; }

.trusted-stats {
  display: flex
;
  gap: 26px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.stat { min-width: 120px; }

.stat .num {
  font-size: 28px;
  font-weight: 800;
  color: #ff4b00;
  line-height: 1.2;
}

.stat .num.neg { color: #ff4b00; }

.stat .label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #666;
}

.trusted-media { flex: 0 0 auto; }

.img-frame {
  position: relative;
  isolation: isolate;
  border-radius: 12px;
  overflow: hidden;
  display: inline-block;
}

.img-frame img {
  display: block;
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
}

.img-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ff6a00;
  border-radius: 12px;
  transform: translate(14px, 14px);
  z-index: -1;
}
/* Responsive */
@media (max-width: 768px) {
  .service-item {
    grid-template-columns: 1fr;
  }
  .service-title h3 {
    margin-bottom: 10px;
  }
  .cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .cta-btn {
    margin-top: 10px;
  }
}
/* Trusted responsive */
@media (max-width: 992px) {
  .trusted-card { flex-direction: column; align-items: flex-start; }
  .trusted-media { width: 100%; }
  .img-frame img { max-width: 100%; }
}

@media (max-width: 768px) {
  .trusted-section { padding: 40px 16px 0; }
  .trusted-section h2 { font-size: 28px; }
  .trusted-subtext { font-size: 16px; }
  .trusted-quote { font-size: 15px; }
  .stat .num { font-size: 24px; }
}
/* Section Base */
.partner-section {
  background-color: #F5F3F0 !important;
  padding: 41px 20px;
  font-family: 'Inter', sans-serif;
}

/* Wrapper */
.partner-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Centered Header */
.partner-header {
  text-align: center;
  margin-bottom: 60px;
}

.partner-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    line-height: 75px;
}

.highlight-orange {
  color: #ff4b00;
  font-style: italic;
}

.partner-subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    color: #000;
    line-height: 36px;
    /* max-width: 750px; */
    margin: 0 auto;
    letter-spacing: -0.5px;
}

/* Two-Column Layout */
.partner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* Left Column (Text Points) */
.partner-content {
  flex: 1;
  min-width: 320px;
}

.partner-content p {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    font-size: 23px;
    line-height: 36px;
    margin-bottom: 47px;
    margin-top: 0;
}

.partner-content strong {
  font-weight: 600;
  color: #111;
  font-size: 24px;
}

/* Right Column (Image) */
.partner-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.partner-image img {
  width: 100%;
  max-width: 589px;
  border-radius: 12px;
  object-fit: cover;
  height: 527px;
  margin-top: -45px;
}

/* Responsive Design */
@media (max-width: 900px) {
  .partner-container {
    flex-direction: column;
    text-align: left;
  }

  .partner-image {
    order: -1;
    margin-bottom: 30px;
  }

  .partner-header h2 {
    font-size: 26px;
  }

  .partner-subtext {
    font-size: 15px;
  }
}
/* Base Section */
.insights-section {
  background-color: #fbf9f6;
  padding: 19px 20px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.insights-container {
    max-width: 1200px;
    margin: 0 auto;
}
/* Heading */
.insights-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    line-height: 60px;
}

.highlight-orange-italic {
  color: #ff4b00;
  font-style: italic;
}

.insights-subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: #000;
    /* max-width: 750px; */
    margin: 0 auto 60px;
    line-height: 36px;
    letter-spacing: 0.9px;
}
/* Cards Grid */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
}

/* Card */
.insight-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* Card Top */
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.yellow { background-color: #f8b400; }
.blue { background-color: #1ca8ff; }
.green { background-color: #00c271; }

.read-time {
  font-size: 14px;
  color: #777;
  font-family: 'Poppins', sans-serif;
}

/* Card Text */
.insight-card h3 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #111;
    font-family: 'Poppins', sans-serif;
    line-height: 44px;
}

.insight-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  line-height: 160%;
  color: #878C91;
  margin-bottom: 40px;
}

/* Buttons */
.arrow-btn-outline,
.arrow-btn-filled {
  /* position: absolute; */
  /* bottom: 25px; */
  /* right: 25px; */
  /* width: 68px; */
  /* height: 48px; */
  /* border-radius: 50%; */
  /* font-size: 20px; */
  /* cursor: pointer; */
  /* transition: all 0.3s ease; */
  /* top: 241px; */
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow-btn-outline {
  background: transparent;
  border: 1.8px solid #111;
  color: #111;
}

.arrow-btn-outline:hover {
  background: #111;
  color: #fff;
}

.arrow-btn-filled {
  background: #ff4b00;
  border: none;
  color: #fff;
}

.arrow-btn-filled:hover {
  background: #e64300;
}

/* Responsive */
@media (max-width: 768px) {
  .insights-section h2 {
    font-size: 26px;
  }
  .insights-subtext {
    font-size: 15px;
  }
}
/* FAQ Section */
.faq-section {
    background-color: #F5F3F0 !IMPORTANT;
    padding: 64px 20px 251px 12px;
    font-family: 'Inter', sans-serif;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex
;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}


/* Left Column */
.faq-left {
  flex: 1;
  min-width: 300px;
}

.faq-left h2 {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #111;
    margin-bottom: 20px;
    line-height: 60px;
}

.highlight-orange-italic {
  color: #ff4b00;
  font-style: italic;
}

.faq-left p {
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 30px;
    letter-spacing: -0.1px;
}
.btn-orange {
  background-color: #ff4b00;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-orange:hover {
  background-color: #e34300;
}

/* Right Column (Accordion) */
.faq-right {
  flex: 1;
  min-width: 380px;
}

.accordion {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.accordion-item {
  border-bottom: 1px solid #eee;
}

.accordion-header {
    width: 100%;
    background: #fff;
    border: none;
    outline: none;
    text-align: left;
    padding: 18px 20px;
    font-size: 23px;
    font-weight: 500;
    color: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s 
ease;
    font-family: 'Inter' !IMPORTANT;
    line-height: 37px;
    font-weight: 500;
}

.accordion-header:hover {
  background: #f9f9f9;
}

.icon {
  font-size: 20px;
  color: #111;
  transition: transform 0.3s ease;
}

.accordion-body {
    display: none;
    padding: 0 20px 20px;
    font-size: 16px;
    color: #555;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    letter-spacing: 0;
}

.accordion-item.active .accordion-body {
  display: block;
}

.accordion-item.active .icon {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 900px) {
  .faq-container {
    flex-direction: column;
  }

  .faq-left {
    text-align: center;
  }

  .faq-left h2 {
    font-size: 26px;
  }

  .faq-right {
    width: 100%;
  }
}
/* CTA Footer Wrapper */
.cta-footer-wrapper {
  position: relative;
  font-family: 'Inter', sans-serif;
  background-color: #f9f8f6;
  margin-top: 150px;
}

/* CTA Bar */
.cta-bar {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  max-width: 1100px;
  background: linear-gradient(90deg, #ff6a00, #ff4b00);
  color: #fff;
  text-align: center;
  border-radius: 16px;
  padding: 80px 20px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.cta-bar h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 0;
}

.cta-bar p {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #fff;
}

.cta-bar {
    position: absolute;
    top: -292px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 1200px;
    background:  linear-gradient(90deg, #F45600 0%, rgba(244, 86, 0, 0.8) 50%, #F45600 100%);
    color: #fff;
    text-align: center;
    border-radius: 16px;
    padding: 37px 20px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.cta-btn:hover {
  background: #f2f2f2;
}

/* Footer */
.ntb-footer {
    padding: 71px 20px 4px;
    background-color: #fff;
    border-top: 1px solid #eee;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid
;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* Footer Columns */
.footer-col h3,
.footer-col h4 {
  color: #111;
  font-weight: 700;
  margin-bottom: 15px;
}

.logo-orange {
  color: #ff4b00;
}

.brand-info p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Contact Info */
.footer-contact li {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #333;
  margin-bottom: 12px;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact img {
  width: 16px;
  height: 16px;
  margin-top: 3px;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.footer-col ul li {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    color: #333;
    margin-bottom: 8px;
    cursor: pointer;
    transition: color 0.3s 
ease;
    margin-bottom: 20px;
}

.footer-col ul li:hover {
  color: #ff4b00;
}

/* Let's Talk */
.lets-talk-btn {
  background-color: #ff4b00;
  color: #fff;
  border: none;
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.lets-talk-btn:hover {
  background-color: #e64300;
}

/* Newsletter */
.subscribe {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

.subscribe input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
}

.subscribe-btn {
  background-color: #ff4b00;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  background-color: #e64300;
}

/* Social */
.social-icons img {
  width: 20px;
  margin-right: 10px;
  cursor: pointer;
  transition: transform 0.2s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #eee;
  padding-top: 20px;
  font-size: 13px;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-bar {
    width: 90%;
    padding: 60px 20px;
  }
  .cta-bar h2 {
    font-size: 26px;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
}
/* -------------------- Global Reveal Styles -------------------- */


/* Static chair image */
.partner-image img {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
/* Base Header */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
}

/* Desktop Nav */
.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  color: #222;
  font-family: Inter, sans-serif;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #ff4b00;
}

/* CTA Button */
.cta-btnn {
  background: #ff4b00;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btnn:hover {
  background: #e84200;
  transform: scale(1.05);
}

/* Menu Toggle Button */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

/* Mobile Styles */
@media (max-width: 991px) {
  .main-nav {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    display: none;
    padding: 25px 0;
    border-top: 1px solid #eee;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }

  .main-nav.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

  .menu-toggle {
    display: block;
  }

  .cta-btnn {
    display: none;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
/* Base hidden state */
.hero-content,
.hero-image,
.growth-box,
.service-item,
.partner-content,
.insight-card,
.faq-left,
.faq-right,
.footer-col {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reveal when in view */
.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Typing animation style */
.animated-text {
  display: inline-block;
  border-right: 2px solid #ff4b00;
  white-space: nowrap;
  overflow: hidden;
}

/* Hover lift effects */
.growth-box:hover,
.service-item:hover,
.insight-card:hover {
  transform: translateY(-8px);
  transition: all 0.6s ease;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

/* Hero fade-in */
.hero-image img {
  animation: fadeInScale 1.5s ease forwards;
}

@keyframes fadeInScale {
  0% { opacity: 0; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

/* Hero heading + paragraph fade-up on load */
.hero-content h1,
.hero-content p,
.hero-buttons {
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

.hero-content h1 { animation-delay: 0.3s; }
.hero-content p { animation-delay: 0.6s; }
.hero-buttons { animation-delay: 0.9s; }

@keyframes fadeUp {
  from { transform: translateY(25px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Hover animation for CTA buttons */
.cta-btn,
.btn-orange {
  transition: all 0.4s ease;
}

.cta-btn:hover,
.btn-orange:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 25px rgba(255, 107, 0, 0.45);
}

/* Delay staggering for boxes */
.growth-box:nth-child(1) { transition-delay: 0.15s; }
.growth-box:nth-child(2) { transition-delay: 0.3s; }
.growth-box:nth-child(3) { transition-delay: 0.45s; }
.growth-box:nth-child(4) { transition-delay: 0.6s; }

.service-item:nth-child(2) { transition-delay: 0.2s; }
.service-item:nth-child(3) { transition-delay: 0.35s; }
.service-item:nth-child(4) { transition-delay: 0.5s; }

.footer-col:nth-child(1) { transition-delay: 0.15s; }
.footer-col:nth-child(2) { transition-delay: 0.3s; }
.footer-col:nth-child(3) { transition-delay: 0.45s; }
.footer-col:nth-child(4) { transition-delay: 0.6s; }

/* ========================= Responsive Enhancements ========================= */
@media (max-width: 1200px) {
  .hero-section { padding: 60px 20px; }
}

@media (max-width: 992px) {
  /* Hero: allow shrinking and scale typography */
  .hero-content { min-width: auto; flex: 1 1 100%; }
  .hero-content h1 { font-size: 42px; }
  .hero-content p { font-size: 18px; }
  .hero-buttons a { width: 88%; text-align: center; }
  .growth-box.visible {
    margin: 11px;
}
.site-header {
  position: sticky;
  top: 0;
  width: 88%;
  background: #fff;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}
.btn-orange {
  width: 78% !important;
  text-align: center;
}
.main-nav ul {
  display: block;
  gap: 30px;
  list-style: none;
}
.container.header-content li {
  margin-bottom: 20px;
  padding: 10px;
}
.main-nav a {
  text-decoration: none;
  color: #222;
  font-family: Inter, sans-serif;
  font-weight: 500;
  transition: color 0.3s 
ease;
  font-size: 21px;
  /* margin-bottom: 20px ! IMPORTANT; */
}
.main-nav.active {
  display: block  !important;
  animation: slideDown 0.3s 
ease forwards;
}
.partner-content {
  flex: 1;
  min-width: 291px;
}
.cta-btn {
  width: 76% !important;
}
  .hero-image img { max-width: 320px; }

  /* Services: stack earlier on tablets */
  .service-item { grid-template-columns: 1fr; }

  /* Growth boxes: avoid height/width jumps on smaller screens */
  .growth-box { height: auto; }
  .growth-box h3.animated-text { white-space: normal; overflow: visible; border-right: 0; }
  .growth-box:hover { transform: none; box-shadow: none; }

  /* FAQ: prevent overflow from fixed min-widths */
  .faq-right { min-width: 0; }
  .accordion-header { font-size: 20px; line-height: 32px; }

  /* CTA footer bar: remove absolute layout on small screens */
  .cta-footer-wrapper { margin-top: 40px; }
  .cta-bar { position: static; transform: none; width: 82%; max-width: none; padding: 28px 16px; margin: 0 auto 24px; }
  .cta-bar h2 { font-size: 28px; }
  .cta-bar p { font-size: 18px; }
}

@media (max-width: 768px) {
  /* General scale-down */
  .hero-section { padding: 48px 16px; }
  .hero-content h1 { font-size: 34px; }
  .hero-content p { font-size: 16px; }

  /* Growth section */
  .growth-partner h2 { font-size: 28px; }
  .growth-description { font-size: 16px; }
  .growth-box h3 { font-size: 22px; }
  .growth-box p { font-size: 16px; }
  .growth-box h3.animated-text { white-space: normal; overflow: visible; border-right: 0; }
  .growth-box:hover { transform: none; box-shadow: none; }

  /* Services */
  .amazon-services h2 { font-size: 28px; }
  .services-subtext { font-size: 16px; }
  .service-title h3 { font-size: 24px; }
  .service-description p { font-size: 16px; }

  /* Partner section */
  .partner-header h2 { font-size: 28px; }
  .partner-subtext { font-size: 16px; }

  /* Insights */
  .insights-section { padding: 60px 16px; }
  .insights-section h2 { font-size: 28px; }
  .insights-subtext { font-size: 16px; }

  /* FAQ */
  .faq-section { padding: 40px 16px; }
  .faq-left h2 { font-size: 28px; }
  .faq-left p { font-size: 16px; }
  .accordion-header { font-size: 18px; line-height: 28px; }
  .accordion-body { font-size: 15px; }

  /* CTA banner within services section */
  .cta-text h3 { font-size: 28px; text-align: center; }
  .cta-btn { width: 100%; }

  /* Closing paragraph */
  .closing-text { font-size: 16px; padding: 0 10px; }
}

@media (max-width: 576px) {
  .hero-image img { max-width: 260px; }
  .header-content { padding: 12px 16px; }
  .main-nav { top: 60px; }
}
.case-study-highlight {
  background: #F5F3F0;
  padding: 70px 20px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
}

.section-title {
  font-family: 'Poetsen One', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #666;
  margin-bottom: 40px;
}

.case-card {
  background: #fff;
  border-radius: 18px;
  padding: 45px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.07);
  text-align: left;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #ff6600;
  background: #fff4eb;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.badge .dot {
  width: 8px;
  height: 8px;
  background: #ff6600;
  border-radius: 50%;
}

/* Left Content */
.case-left h3 {
  font-family: 'Balsamiq Sans', cursive;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}
.case-left p {
  font-size: 22px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Stats */
.stats {
  display: flex;
  justify-content: space-between;
  margin: 25px 0;
  text-align: center;
}
.stats div {
  flex: 1;
}
.stats .value {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #F45600;
  margin-bottom: 4px;
  text-align: left;
}
.stats .label {
  font-size: 24px;
  color: #000;
  margin-left: -95px;
  letter-spacing: -1px;
}

/* Button */
.btn-orange {
  display: inline-block;
  background: #F45600;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 17px;
  text-decoration: none;
  margin-bottom: 18px;
  transition: background 0.3s ease;
}
.btn-orange:hover {
  background: #e45500;
}

/* Note */
.note {
  font-size: 13px;
  color: #444;
  line-height: 1.6;
  margin-top: 10px;
}

/* Right Image with Accent */
.image-wrap {
  position: relative;
  display: inline-block;
}
.image-wrap img {
  border-radius: 14px;
  position: relative;
  z-index: 2;
  width: 65%;
  margin-left: 104px;
}
.image-wrap::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 39px;
  width: 65%;
  height: 95%;
  border-radius: 14px;
  background: #ff6600;
  z-index: 1;
}

/* Decorative icon */
.decor-icon {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 40px;
  height: auto;
  z-index: 3;
}

/* Responsive */
@media (max-width: 900px) {
  .case-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px;
  }
  .case-left {
    text-align: center;
  }
  .stats {
    flex-direction: column;
    gap: 15px;
  }
  .stats div {
    margin-bottom: 10px;
  }
  .decor-icon {
    top: -10px;
    right: 10px;
  }
}
 /* Additional responsive refinements for case study section */
 @media (max-width: 1200px) {
   .case-study-highlight { padding: 60px 20px; }
   .case-card { padding: 36px; gap: 32px; }
   .stats .value { font-size: 32px; }
 }

 @media (max-width: 992px) {
   .case-card { grid-template-columns: 1fr; align-items: flex-start; }
   .case-left { text-align: left; }
   .image-wrap img { max-width: 100%; height: auto; }
   .image-wrap::after { bottom: -8px; right: -8px; }
   .btn-orange { width: 100%; text-align: center; }
   .stats { flex-wrap: wrap; justify-content: center; }
   .stats div { flex: 0 0 45%; margin-bottom: 12px; }
 }

 @media (max-width: 768px) {
   .case-study-highlight { padding: 40px 16px; }
   .case-card { padding: 24px; gap: 20px; }
   .case-left p { font-size: 16px; }
   .stats .value { font-size: 28px; }
   .stats .label { font-size: 14px; }
   .image-wrap::after { bottom: -6px; right: -6px; }
 }

 @media (max-width: 576px) {
   .stats div { flex: 0 0 100%; }
   .image-wrap::after { display: none; }
 }
 @media screen and (max-width:500px){
     .container.header-content {
    width: 100% ! IMPORTANT;
    background: #fff;
}
 }
/* ============================
   ABOUT SECTION
============================ */
.about-section {
  padding: 80px 8%;
  background-color: #F5F3F0;
  font-family: "Inter", sans-serif;
  color: #111;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* LEFT COLUMN */
.about-left {
  flex: 1 1 45%;
  min-width: 300px;
}

.about-heading {
  font-size: 62px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  margin-top: 14px;
}

.about-border {
  display: inline-block;
  /* border: 2px solid #004aad; */
  /* padding: 6px 12px; */
}

.about-highlight {
  color: #ff6b00;
  font-style: italic;
}

.about-text {
  font-size: 24px;
  line-height: 35px;
  color: #000;
  margin-bottom: 25px;
  letter-spacing: 0px;
  font-family: 'Poppins',sans-serif;
}

.about-btn {
  background-color: #ff6b00;
  color: #fff;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.about-btn:hover {
  background-color: #e45e00;
  transform: scale(1.05);
}

/* RIGHT COLUMN */
.about-right {
  flex: 1 1 50%;
  min-width: 320px;
}

.about-subheading {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 23px;
}

.about-right p {
  font-size: 23px;
  color: #000;
  line-height: 35px;
  margin-bottom: 18px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: 'Poppins',sans-serif;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  .about-heading {
    font-size: 2rem;
  }

  .about-subheading {
    font-size: 1.4rem;
  }
}
section.case-study-highlight h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    line-height: 75px;
    margin-bottom: 0px;
}
/* ============================
   WHY PARTNER SECTION
============================ */
.why-partner-section {
  background-color: #F5F3F0;
  padding: 80px 8%;
  font-family: "Inter", sans-serif;
  color: #111;
  text-align: center;
}

.why-partner-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading + Subtext */
.why-partner-heading {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 75px;
}

.why-partner-heading .highlight {
  color: #ff6b00;
  font-style: italic;
}

.why-partner-subtext {
  /* font-size: 1.05rem; */
  /* color: #333; */
  /* line-height: 1.7; */
  /* max-width: 850px; */
  /* margin: 0 auto 60px auto; */
  font-size: 24px;
  color: #000;
  line-height: 35px;
  margin-bottom: 42px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

/* Cards Layout */
.why-partner-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden; /* ensures cards look merged */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.partner-card {
  flex: 1;
  padding: 40px 30px;
  text-align: left;
  transition: all 0.3s ease;
}

.partner-card h3 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: 0;
  line-height: 35px;
  letter-spacing: -1px;
  font-family: 'Inter';
}

.partner-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #675050;
  letter-spacing: -1px;
}

/* Color Variants */
.light-card {
  background-color: #fff;
}

.orange-card {
  background: linear-gradient(360deg, #F45600 0%, rgba(245, 107, 18, 0.85) 50%, #F45600 100%);
  color: #fff;
}

.orange-card p {
  color: #fff;
}

/* Hover Effects */
.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Rounded Corners for First/Last */
.partner-card:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.partner-card:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* Responsive */
@media (max-width: 992px) {
  .why-partner-cards {
    flex-direction: column;
    border-radius: 12px;
  }

  .partner-card {
    border-radius: 0;
    text-align: center;
  }

  .partner-card:first-child {
    border-radius: 12px 12px 0 0;
  }

  .partner-card:last-child {
    border-radius: 0 0 12px 12px;
  }
}
/* ============================
   WHAT WE DO SECTION
============================ */
.what-we-do-section {
  background-color: #F5F3F0;
  padding: 35px 8%;
  font-family: "Inter", sans-serif;
  color: #111;
  text-align: center;
}

.what-we-do-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading & Intro Text */
.what-we-do-heading {
  /* font-size: 2.2rem; */
  /* font-weight: 800; */
  /* margin-bottom: 20px; */
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 75px;
}

.what-we-do-heading .highlight {
  color: #ff6b00;
  font-style: italic;
}

.what-we-do-subtext {
  /* font-size: 1.05rem; */
  /* color: #333; */
  /* line-height: 1.7; */
  /* max-width: 850px; */
  /* margin: 0 auto 60px auto; */
  font-size: 24px;
  color: #000;
  line-height: 35px;
  margin-bottom: 42px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

/* Cards Layout */
.what-we-do-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.what-card {
  flex: 1;
  padding: 40px 30px;
  text-align: left;
  border-right: 1px solid #e8e8e8;
}

.what-card:last-child {
  border-right: none;
}

.what-card h3 {
  /* font-size: 1.4rem; */
  /* font-weight: 700; */
  /* margin-bottom: 15px; */
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: 0;
  line-height: 35px;
  letter-spacing: -1px;
  font-family: 'Inter';
}

.what-card p {
  /* font-size: 1.05rem; */
  /* line-height: 1.7; */
  /* color: #333; */
  font-size: 18px;
  line-height: 1.7;
  color: #675050;
  letter-spacing: -1px;
}

/* Middle Card Divider Subtle Variation */
.middle-card {
  background-color: #fff;
}

/* Bottom Text */
.what-we-do-bottom {
  /* font-size: 1.05rem; */
  /* color: #333; */
  /* margin-top: 50px; */
  /* max-width: 900px; */
  /* margin-left: auto; */
  /* margin-right: auto; */
  /* line-height: 1.7; */
  font-size: 24px;
  color: #000;
  line-height: 35px;
  margin-bottom: 42px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  margin-top: 43px;
}

/* Responsive */
@media (max-width: 992px) {
  .what-we-do-cards {
    flex-direction: column;
    text-align: center;
  }

  .what-card {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 30px 25px;
  }

  .what-card:last-child {
    border-bottom: none;
  }
}
/* ============================
   PET GROWTH SECTION
============================ */
.pet-growth-section {
  background-color: #F5F3F0;
  padding: 80px 8%;
  font-family: "Inter", sans-serif;
  color: #111;
  text-align: center;
}

.pet-growth-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Headings */
.pet-growth-heading {
  /* font-size: 2.2rem; */
  /* font-weight: 800; */
  /* margin-bottom: 20px; */
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 75px;
  font-family: 'Inter' !important;
}

.pet-growth-heading .highlight {
  color: #ff6b00;
  font-style: italic;
}

.pet-growth-subtext {
  /* font-size: 1.05rem; */
  /* color: #333; */
  /* line-height: 1.7; */
  /* max-width: 850px; */
  /* margin: 0 auto 60px auto; */
  font-size: 24px;
  color: #000;
  line-height: 40px;
  margin-bottom: 42px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif !important;
}

/* Plan Cards */
.pet-growth-plans {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 7px;
}

.plan-card {
  flex: 1;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 35px 30px;
  text-align: left;
  transition: all 0.3s ease;
  min-width: 300px;
}

.orange-card {
  background:  linear-gradient(0deg, #F45600, #F45600);
  color: #fff;
}

.orange-card h4,
.orange-card p,
.orange-card li {
  color: #fff;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.plan-card h3 {
  /* font-size: 1.5rem; */
  /* font-weight: 700; */
  /* margin-bottom: 10px; */
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: 0;
  line-height: 35px;
  letter-spacing: -1px;
  font-family: 'Inter';
}

.plan-desc {
  /* font-size: 1rem; */
  /* color: #333; */
  /* line-height: 1.6; */
  /* margin-bottom: 15px; */
  font-size: 15px;
  line-height: 1.7;
  color: #675050;
  letter-spacing: 0px;
}

.orange-card .plan-desc {
  color: #fff;
}

.plan-price {
  /* font-size: 1.1rem; */
  /* font-weight: 600; */
  /* margin-bottom: 15px; */
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: 0;
  line-height: 35px;
  letter-spacing: -1px;
  font-family: 'Inter';
}

.plan-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 36px;
}

.plan-card ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 25px;
}

.plan-card ul li {
  /* font-size: 0.95rem; */
  /* line-height: 1.6; */
  margin-bottom: 9px;
  /* color: #333; */
  font-size: 15px;
  line-height: 1.7;
  color: #675050;
  letter-spacing: 0px;
}

.orange-card ul li {
  color: #fff;
}

/* Buttons */
.plan-btn {
  background-color: #f45600;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease;
  width: 59%;
  text-align: center;
  /* margin: 0 auto !important; */
  margin-left: 40px;
  margin-top: 15px;
}

.plan-btn:hover {
  background-color: #e45e00;
}

.white-btn {
  background-color: #fff;
  color: #ff6b00;
}

.white-btn:hover {
  background-color: #f4f4f4;
}

/* Add-ons */
.pet-addons {
  background: linear-gradient(0deg, #FFFFFF, #FFFFFF);
  border-radius: 10px;
  margin-top: 21px;
  padding: 50px 40px;
}

.addons-heading {
  /* font-size: 1.6rem; */
  /* font-weight: 700; */
  /* margin-bottom: 15px; */
  text-align: left;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 27px;
  margin-top: 0;
  line-height: 35px;
  letter-spacing: -1px;
  font-family: 'Inter';
}

.addons-subtext {
  /* font-size: 1rem; */
  /* color: #333; */
  line-height: 1.7;
  max-width: 977px;
  /* margin: 0 auto 25px auto; */
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 30px;
  margin-top: 0;
  text-align: left;
}

.addon-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 15px;
}

.addon-btn {
  background-color: #f45600;
  color: #fff;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1.7;
  max-width: 977px;
  gin: 0 auto 25px auto;
  /* font-size: 16px; */
  font-weight: 400;
  /* margin-bottom: 30px; */
  /* margin-top: 0; */
  /* text-align: left; */
}

.addon-btn:hover {
  background-color: #e45e00;
}

/* Responsive */
@media (max-width: 992px) {
  .pet-growth-plans {
    flex-direction: column;
  }

  .plan-card {
    text-align: center;
  }

  .plan-card ul {
    list-style-position: inside;
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .pet-growth-heading {
    font-size: 1.8rem;
  }

  .plan-card {
    padding: 25px 20px;
  }

  .addon-btn {
    width: 100%;
    text-align: center;
  }
}
/* ============================
   TESTIMONIALS SECTION
============================ */
.testimonials-section {
  background-color: #F5F3F0;
  padding: 80px 8%;
  font-family: "Inter", sans-serif;
  text-align: center;
  color: #111;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Top Section */
.section-tag {
  display: inline-block;
  background-color: #fff2e6;
  color: #ff6b00;
  font-size: 0.9rem;
  padding: 5px 12px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 15px;
}

.testimonials-heading {
  /* font-size: 2.2rem; */
  /* font-weight: 800; */
  /* margin-bottom: 20px; */
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 75px;
  font-family: 'Inter' !important;
  margin-top: 0;
}

.testimonials-heading .highlight {
  color: #ff6b00;
  font-style: italic;
}

.testimonials-subtext {
  /* font-size: 1.05rem; */
  /* color: #333; */
  /* line-height: 1.7; */
  /* max-width: 850px; */
  /* margin: 0 auto 60px auto; */
  font-size: 24px;
  color: #000;
  line-height: 40px;
  margin-bottom: 42px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif !important;
  margin-top: 0;
}

/* Cards */
.testimonial-cards {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 30px 25px;
  text-align: left;
  flex: 1;
  min-width: 300px;
  max-width: 360px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stars {
  color: #ffb400;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-family: 'Poppins',sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 35px;
  letter-spacing: 0px;
  color: #000;
}

.testimonial-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 25px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-initial {
  background-color: #FFF8F3;
  color: #F45600;
  font-weight: 700;
  width: 50px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.author-initial.orange {
  /* background-color: #ff6b00; */
  /* color: #fff; */
}

.testimonial-author span {
  font-size: 12px;
  color: #666;
}

/* Stats Row */
.testimonial-stats {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 43px 17px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial-stats .stat h3 {
  font-size: 45px;
  color: #F45600;
  font-weight: 700;
  margin-bottom: 5px;
}

.testimonial-stats .stat p {
  font-size: 18px;
  color: #000;
  margin: 0 auto;
  margin-top: 20px;
  width: 63%;
}

/* CTA Section */
.testimonial-cta {
  background-color: #fff;
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
}

.testimonial-cta h3 {
  /* color: #ff6b00; */
  /* font-size: 1.8rem; */
  /* font-weight: 800; */
  /* margin-bottom: 15px; */
  font-size: 42px;
  color: #F45600;
  font-weight: 700;
  margin-bottom: 5px;
  margin-top: 0;
}

.testimonial-cta p {
  /* font-size: 1.05rem; */
  /* color: #333; */
  /* margin-bottom: 25px; */
  max-width: 832px;
  /* margin-left: auto; */
  /* margin-right: auto; */
  font-size: 24px;
  color: #000;
  line-height: 32px;
  margin-bottom: 42px !important;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif !important;
  margin-top: 0;
  margin: 0 auto;
  margin-top: 20px;
}

.cta-banner .cta-btn {
  background-color: #fff;
  color: #000;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background-color: #e45e00;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    max-width: 500px;
  }

  .testimonial-stats {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .testimonials-heading {
    font-size: 1.8rem;
  }

  .testimonial-cta h3 {
    font-size: 1.5rem;
  }

  .cta-btn {
    width: 100%;
  }
}
/* ============================
   SCALING SMART SECTION
============================ */
.scaling-smart-section {
  background-color: #F5F3F0;
  padding: 80px 8%;
  font-family: "Inter", sans-serif;
  color: #111;
}

.scaling-smart-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Column */
.scaling-smart-left {
  flex: 1;
  min-width: 300px;
}

.scaling-smart-left h2 {
  /* font-size: 2.2rem; */
  /* font-weight: 800; */
  /* margin-bottom: 20px; */
  /* line-height: 1.3; */
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  margin-top: 14px;
}

.scaling-smart-left .highlight {
  color: #ff6b00;
  font-style: italic;
}

.scaling-smart-left p {
  /* font-size: 1.05rem; */
  /* color: #333; */
  /* line-height: 1.7; */
  /* margin-bottom: 15px; */
  font-size: 23px;
  color: #000;
  line-height: 35px;
  margin-bottom: 18px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

/* Right Column (Form) */
.scaling-smart-form {
  flex: 1;
  min-width: 340px;
  background-color: #fff;
  border-radius: 10px;
  padding: 35px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 0.95rem;
  outline: none;
  transition: 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff6b00;
}

textarea {
  min-height: 90px;
  resize: none;
}

.full {
  width: 100%;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  background-color: #F45600;
  color: #fff;
  font-weight: 600;
  padding: 14px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 19px;
  transition: background-color 0.3s ease;
  margin-top: 24px;
}

.submit-btn:hover {
  background-color: #e45e00;
}

/* Responsive */
@media (max-width: 992px) {
  .scaling-smart-container {
    flex-direction: column;
    align-items: center;
  }

  .scaling-smart-form {
    width: 100%;
    max-width: 500px;
  }

  .scaling-smart-left {
    text-align: center;
  }

  .scaling-smart-left h2 {
    font-size: 1.9rem;
  }
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }

  .scaling-smart-left p {
    font-size: 1rem;
  }
}
.cta-footer-wrapper .cta-btn {
    background-color: #ffffff;
    color: #000;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s 
ease;
    font-size: 18px;
    border: 0px solid !important;
}
/* ============================
   LAUNCH PACKAGE SECTION
============================ */
.launch-package-section {
  background-color: #F5F3F0;
  padding: 80px 8%;
  font-family: "Inter", sans-serif;
}

.launch-package-container {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left Column */
.launch-text {
  flex: 1;
  min-width: 320px;
}

.launch-text .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fff2e6;
  color: #ff6b00;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.launch-text .dot {
  width: 10px;
  height: 10px;
  background-color: #ff6b00;
  border-radius: 50%;
}

.launch-text h2 {
  /* font-size: 2.4rem; */
  /* font-weight: 800; */
  /* color: #111; */
  /* line-height: 1.3; */
  /* margin-bottom: 15px; */
  font-size: 51px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  margin-top: 0;
}

.launch-text .highlight {
  color: #F45600;
  font-style: italic;
}

.launch-text .subtext {
  /* font-size: 1.05rem; */
  /* color: #333; */
  /* line-height: 1.7; */
  /* margin-bottom: 30px; */
  font-size: 23px;
  color: #000;
  line-height: 35px;
  margin-bottom: 18px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

.launch-btn {
  display: inline-block;
  background-color: #ff6b00;
  color: #fff;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.launch-btn:hover {
  background-color: #e45e00;
}

/* Right Column */
.launch-image {
  flex: 1;
  min-width: 340px;
  text-align: right;
}

.launch-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 992px) {
  .launch-package-container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  .launch-text {
    max-width: 600px;
  }

  .launch-text h2 {
    font-size: 2rem;
  }

  .launch-image img {
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  .launch-text h2 {
    font-size: 1.8rem;
  }

  .launch-btn {
    width: 100%;
    text-align: center;
  }
}
/* Base */
.launch-fit-section{
  padding:80px 8%;
  background: #F5F3F0;
  font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:#111;
}

/* TOP: Full-width heading + intro */
.launch-fit-top{
  /* max-width:980px; */
  margin:0 auto 48px auto;
  text-align:center;
}
.launch-fit-top h2{
  /* font-size:2.15rem; */
  /* font-weight:800; */
  /* line-height:1.3; */
  /* margin:0 0 16px 0; */
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 75px;
  font-family: 'Inter' !important;
}
.launch-fit-accent{
  color:#ff6b00;
  font-style:italic;
}
.launch-fit-intro{
  /* font-size:1.05rem; */
  /* line-height:1.7; */
  /* color:#333; */
  /* margin:0; */
  font-size: 24px;
  color: #000;
  line-height: 40px;
  margin-bottom: 42px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif !important;
}

/* GRID: content below heading */
.launch-fit-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:48px;
  align-items:start;
}

/* Left column */
.launch-fit-left h3{
  /* font-size:1.1rem; */
  /* font-weight:700; */
  /* margin:0 0 18px 0; */
  font-size: 22px;
  color: #000;
  line-height: 40px;
  /* margin-bottom: 42px; */
  letter-spacing: 0px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif !important;
  margin-top: 0;
}
.launch-fit-list{
  list-style:none;
  padding:0;
  margin:0;
}
.launch-fit-list li{
  /* font-size:1rem; */
  /* line-height:1.75; */
  /* color:#333; */
  /* margin:0 0 18px 0; */
  font-size: 19px;
  color: #000;
  line-height: 32px;
  margin-bottom: 42px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif !important;
}
.launch-fit-list li strong{
  color:#111;
  font-weight:700;
}

/* Right column (image) */
.launch-fit-right img{
  width:100%;
  display:block;
  border-radius:12px;
  object-fit:cover;
  box-shadow:0 8px 26px rgba(0,0,0,.08);
}

/* Responsive */
@media (max-width:1024px){
  .launch-fit-top h2{font-size:1.95rem;}
  .launch-fit-grid{grid-template-columns:1fr; gap:32px;}
  .launch-fit-top{text-align:left; margin-bottom:36px;}
  .launch-fit-intro{font-size:1rem;}
}
@media (max-width:640px){
  .launch-fit-section{padding:56px 6%;}
  .launch-fit-top h2{font-size:1.75rem;}
  .launch-fit-intro{font-size:.98rem;}
  .launch-fit-list li{font-size:.96rem;}
}
/* =============================
   GROWTH BLUEPRINT SECTION
============================= */
.growth-blueprint-section {
  background-color: #F5F3F0;
  padding: -1px 8%;
  font-family: "Inter", sans-serif;
  color: #111;
}

.growth-blueprint-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.blueprint-top {
  text-align: center;
  margin-bottom: 50px;
}

.blueprint-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fff2e6;
  color: #ff6b00;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.blueprint-tag .dot {
  width: 10px;
  height: 10px;
  background-color: #ff6b00;
  border-radius: 50%;
}

.blueprint-top h2 {
  /* font-size: 2rem; */
  /* font-weight: 800; */
  /* margin-bottom: 14px; */
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 75px;
  font-family: 'Inter' !important;
  margin-top: 0;
}

.blueprint-top .highlight {
  color: #ff6b00;
  font-style: italic;
}

.blueprint-top p {
  /* font-size: 1.05rem; */
  /* color: #333; */
  /* line-height: 1.7; */
  /* max-width: 800px; */
  /* margin: 0 auto; */
  font-size: 24px;
  color: #000;
  line-height: 40px;
  margin-bottom: 42px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif !important;
}

/* Table Layout */
.blueprint-table {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.blueprint-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-top: 1px solid #ddd;
  padding-top: 30px;
  gap: 126px;
  ALIGN-ITEMS: center;
}

.blueprint-left {
  /* font-weight: 700; */
  /* color: #111; */
  /* font-size: 1.05rem; */
  /* line-height: 1.5; */
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: 0;
  line-height: 35px;
  letter-spacing: -1px;
  font-family: 'Inter';
}

.blueprint-right p {
  /* font-size: 1rem; */
  /* line-height: 1.75; */
  /* color: #333; */
  /* margin-bottom: 12px; */
  font-size: 20px;
  line-height: 32px;
  color: #675050;
  letter-spacing: 0px;
  font-family: 'Poppins',sans-serif;
}

.blueprint-right strong {
  color: #111;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .blueprint-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 20px;
  }

  .blueprint-left {
    font-size: 1rem;
  }

  .blueprint-right p {
    font-size: 0.98rem;
  }

  .blueprint-top h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .growth-blueprint-section {
    padding: 60px 6%;
  }

  .blueprint-left {
    text-align: left;
  }

  .blueprint-top h2 {
    font-size: 1.6rem;
  }

  .blueprint-right p {
    font-size: 0.95rem;
  }
}
/* ---------- Section Base ---------- */
.ntb-metrics-section {
  padding: 64px 6%;
  background: #F5F3F0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #111;
}

.ntb-metrics-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Heading ---------- */
.ntb-metrics-title {
  text-align: center;
  /* font-size: clamp(1.6rem, 2.2vw + 1rem, 2.1rem); */
  /* font-weight: 800; */
  /* margin: 0 0 10px; */
  /* line-height: 1.25; */
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 75px;
  font-family: 'Inter' !important;
  margin-top: 0;
}

.ntb-accent {
  color: #ff6b00;
  font-style: italic;
}

.ntb-metrics-sub {
  text-align: center;
  /* color: #555; */
  /* max-width: 840px; */
  /* margin: 0 auto 26px; */
  /* line-height: 1.7; */
  /* font-size: 1.02rem; */
  font-size: 24px;
  color: #000;
  line-height: 40px;
  margin-bottom: 42px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif !important;
}

/* ---------- Grid ---------- */
.ntb-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop: 3 columns */
  gap: 0px;
}

/* ---------- Standard Cards ---------- */
.ntb-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  /* border-radius: 12px; */
  padding: 20px 20px 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px;           /* keeps heights tidy without forcing equal */
  margin-top: -7px;
}

.ntb-card h3 {
  font-size: 24px;
  line-height: 1.35;
  margin: 0;
  font-weight: 500;
  font-family: 'Inter' !important;
  width: 80%;
  margin-bottom: 20px;
}

.ntb-card p {
  margin: 0;
  color: #444;
  font-size: 18px;
  font-family: 'Poppins',sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
}

/* ---------- CTA Card ---------- */
.ntb-card-cta {
  background:  linear-gradient(360deg, #F45600 0%, #F45600 100%);
  color: #fff;
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 6px 16px rgba(255, 107, 0, 0.25);
}

.ntb-card-cta h3 {
  /* margin: 0; */
  /* font-size: 1.15rem; */
  /* font-weight: 800; */
  font-size: 24px;
  line-height: 1.35;
  margin: 0;
  font-weight: 500;
  font-family: 'Inter' !important;
  width: 80%;
  margin-bottom: 20px;
}

.ntb-card-cta p {
  /* margin: 0; */
  /* line-height: 1.65; */
  color: rgba(255,255,255,0.95);
  margin: 0;
  /* color: #444; */
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
}

.ntb-cta-btn {
  align-self: start;
  margin-top: 6px;
  background: #fff;
  color: #ff6b00;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  padding: 10px 14px;
  transition: transform .15s ease, box-shadow .15s ease;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(255,255,255,0.2);
}
.ntb-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 16px rgba(255,255,255,0.25);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .ntb-metrics-grid {
    grid-template-columns: repeat(2, 1fr); /* Tablet: 2 columns */
  }
}

@media (max-width: 620px) {
  .ntb-metrics-section {
    padding: 48px 5%;
  }
  .ntb-metrics-grid {
    grid-template-columns: 1fr;           /* Mobile: 1 column */
  }
}
/* ----------------------------
   LAUNCH → LONG-TERM GROWTH
----------------------------- */
.launch-growth-section {
  background-color: #F5F3F0;
  padding: 80px 8%;
  font-family: "Inter", sans-serif;
  color: #111;
}

.launch-growth-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Tag */
.growth-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fff2e6;
  color: #ff6b00;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.growth-tag .dot {
  width: 10px;
  height: 10px;
  background-color: #ff6b00;
  border-radius: 50%;
}

/* Heading */
.launch-growth-section h2 {
  /* font-size: 2rem; */
  /* font-weight: 800; */
  /* line-height: 1.3; */
  /* margin-bottom: 16px; */
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 75px;
  font-family: 'Inter' !important;
  margin-top: 0;
}

.launch-growth-section .highlight {
  color: #ff6b00;
  font-style: italic;
}

/* Description */
.growth-desc {
  /* font-size: 1.05rem; */
  /* color: #333; */
  /* line-height: 1.7; */
  /* max-width: 850px; */
  /* margin: 0 auto 50px; */
  font-size: 24px;
  color: #000;
  line-height: 40px;
  margin-bottom: 42px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif !important;
}

/* Packages Row */
.growth-packages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  margin-bottom: 40px;
}

.growth-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  padding: 30px 28px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.growth-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.growth-card h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 6px;
  margin-top: 0;
  font-family: 'Inter';
  line-height: 37px;
}

.growth-card .growth-sub {
  color: #F45600;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 12px;
  font-size: 22px;
  font-family: 'Inter';
}

.growth-card p {
  color: #333;
  font-size: 20px;
  line-height: 1.7;
  margin: 0;
  font-family: 'Open sans',sans-serif;
  font-weight: 400;
  letter-spacing: -0.5px;
}

/* Add-ons */
.growth-addons {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  padding: 36px 30px;
  text-align: center;
}

.growth-addons h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.growth-addons p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 22px;
  line-height: 1.6;
}

/* Buttons */
.growth-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.addon-btn {
  background-color: #F45600 !important;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.addon-btn:hover {
  background-color: #e55e00;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .launch-growth-section {
    padding: 70px 6%;
  }

  .growth-packages {
    grid-template-columns: 1fr;
  }

  .launch-growth-section h2 {
    font-size: 1.8rem;
  }

  .growth-desc {
    font-size: 1rem;
    margin-bottom: 36px;
  }

  .growth-card {
    padding: 26px 24px;
  }
}

@media (max-width: 600px) {
  .growth-tag {
    font-size: 0.85rem;
    padding: 5px 12px;
  }

  .launch-growth-section h2 {
    font-size: 1.6rem;
  }

  .growth-addons {
    padding: 28px 22px;
  }

  .growth-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .addon-btn {
    text-align: center;
  }
}
/* ============================
   GROWTH PARTNER SECTION
============================ */
.growth-partner-section {
  background-color: #f8f7f5;
  padding: 80px 8%;
  font-family: "Inter", sans-serif;
  color: #111;
}

.growth-partner-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Heading */
.growth-title {
  /* font-size: 2rem; */
  /* font-weight: 800; */
  /* line-height: 1.3; */
  /* margin-bottom: 14px; */
  font-size: 42px;
  font-weight: 700;
  color: #000;
  line-height: 75px;
  margin-bottom: 0px;
}

.highlight {
  color: #ff6b00;
  font-style: italic;
}

/* Subtitle */
.growth-sub {
  /* font-size: 1.05rem; */
  /* color: #333; */
  /* line-height: 1.7; */
  /* max-width: 850px; */
  /* margin: 0 auto 48px; */
  font-size: 24px;
  color: #000;
  line-height: 40px;
  margin-bottom: 42px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif !important;
  margin-top: 0;
}

/* Features Grid */
.growth-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.growth-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 26px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.growth-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.growth-card h3 {
  /* font-size: 1.15rem; */
  /* font-weight: 800; */
  /* line-height: 1.4; */
  /* margin-bottom: 10px; */
  font-size: 32px;
  font-weight: 700;
  color: #000;
  line-height: 75px;
  margin-bottom: 0px;
}

.growth-card p {
  /* font-size: 0.98rem; */
  /* color: #333; */
  /* line-height: 1.65; */
  /* margin: 0; */
  font-size: 20px;
  color: #000;
  line-height: 32px;
  margin-bottom: 42px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif !important;
  margin-top: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .growth-features {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .growth-title {
    font-size: 1.8rem;
  }

  .growth-sub {
    font-size: 1rem;
    margin-bottom: 36px;
  }

  .growth-card {
    padding: 24px 22px;
  }
}

@media (max-width: 600px) {
  .growth-partner-section {
    padding: 60px 6%;
  }

  .growth-title {
    font-size: 1.6rem;
  }

  .growth-sub {
    font-size: 0.98rem;
  }

  .growth-card h3 {
    font-size: 1.05rem;
  }

  .growth-card p {
    font-size: 0.95rem;
  }
}
/* ============================
   DATA LOYALTY SECTION
============================ */
.data-loyalty-section {
  background-color: #f8f7f5;
  padding: 80px 8%;
  font-family: "Inter", sans-serif;
  color: #111;
}

.data-loyalty-container {
  max-width: 1200PX;
  margin: 0 auto;
  text-align: center;
}

/* Heading */
.data-title {
  /* font-size: 2rem; */
  /* font-weight: 800; */
  /* line-height: 1.3; */
  /* margin-bottom: 16px; */
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  line-height: 75px;
}

.highlight {
  color: #ff6b00;
  font-style: italic;
}

/* Description */
.data-sub {
  /* font-size: 1.05rem; */
  /* color: #333; */
  /* line-height: 1.7; */
  /* max-width: 850px; */
  /* margin: 0 auto 48px; */
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  color: #000;
  line-height: 36px;
  /* max-width: 750px; */
  margin: 0 auto;
  letter-spacing: 0PX;
  MARGIN-BOTTOM: 32PX;
}

/* Grid */
.data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.data-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 26px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.data-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.data-card h3 {
  /* font-size: 1.1rem; */
  /* font-weight: 800; */
  /* line-height: 1.4; */
  /* margin-bottom: 10px; */
  font-size: 28px;
  font-weight: 500;
  color: #000;
  line-height: 75px;
  margin-bottom: 0px;
  MARGIN-TOP: 0;
}

.data-card p {
  /* font-size: 0.98rem; */
  /* color: #333; */
  /* line-height: 1.65; */
  /* margin: 0; */
  font-size: 20px;
  color: #000;
  line-height: 32px;
  margin-bottom: 42px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif !important;
  margin-top: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .data-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .data-title {
    font-size: 1.8rem;
  }

  .data-sub {
    font-size: 1rem;
    margin-bottom: 36px;
  }

  .data-card {
    padding: 24px 22px;
  }
}

@media (max-width: 600px) {
  .data-loyalty-section {
    padding: 60px 6%;
  }

  .data-title {
    font-size: 1.6rem;
  }

  .data-sub {
    font-size: 0.98rem;
  }

  .data-card h3 {
    font-size: 1.05rem;
  }

  .data-card p {
    font-size: 0.95rem;
  }
}
@media screen and (max-width:500px){
      .hero-content h1 {
        font-size: 18px;
        line-height: 36px ! IMPORTANT;
    }
    h2.growth-title {
    font-size: 18px;
    line-height: 36px ! IMPORTANT;
}
.growth-card h3 {
        font-size: 20px;
        line-height: 28px;
    }
        .amazon-services h2 {
        /* font-size: 28px; */
        font-size: 18px;
        line-height: 36px ! IMPORTANT;
    }
    section.case-study-highlight h2 {
    font-size: 25px;
    line-height: 28px ! IMPORTANT;
}
.btn-orange {


    font-size: 14px;
    
}
.stats .value {
  
    text-align: center;
}
.stats .label {
    
    margin-left: 0px;

    
}
.image-wrap img {
    
    margin-left: 0;
}
    .cta-text h3 {
        font-size: 22px;
        text-align: center;
    }
        .partner-header h2 {
        /* font-size: 28px; */
        font-size: 21px;
        line-height: 36px ! IMPORTANT;
    } 
    .partner-content p {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 47px;
    margin-top: 0;
}
.partner-content strong {
    font-weight: 600;
    color: #111;
    font-size: 17px;
}
    .data-title {
        font-size: 23px;
        line-height: 32px;
    }
        .insights-section h2 {
        /* font-size: 28px; */
        font-size: 23px;
        line-height: 32px;
    }
        .faq-left h2 {
        font-size: 20px;
        line-height: 33px !important;
    }
    .launch-text h2 {
        font-size: 20px;
    }
        .launch-image img {
        max-width: 100%;
    }
    .launch-image {
    flex: 1;
    /* min-width: 340px; */
    text-align: left;
    margin: 0 auto !important;
}
.launch-text .subtext {
    /* font-size: 1.05rem; */
    /* color: #333; */
    /* line-height: 1.7; */
    /* margin-bottom: 30px; */
    font-size: 17px;
    color: #000;
    line-height: 35px;
    margin-bottom: 18px;
    letter-spacing: 0px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}
    .launch-btn {
        width: 66%;
        text-align: center;
    }
        .launch-fit-top h2 {
        font-size: 20px;
        line-height: 34px;
        /* text-align: center; */
    }
        .blueprint-top h2 {
        font-size: 20px;
        line-height: 30px;
    }
.launch-text {
    flex: 1;
    min-width: 268px;
}
.blueprint-top p {
    /* font-size: 1.05rem; */
    /* color: #333; */
    /* line-height: 1.7; */
    /* max-width: 800px; */
    /* margin: 0 auto; */
    font-size: 19px;
    color: #000;
    line-height: 25px;
    margin-bottom: 42px;
    letter-spacing: 0px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif !important;
}

.ntb-metrics-title {
    text-align: center;
    /* font-size: clamp(1.6rem, 2.2vw + 1rem, 2.1rem); */
    /* font-weight: 800; */
    /* margin: 0 0 10px; */
    /* line-height: 1.25; */
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 31px;
    font-family: 'Inter' !important;
    margin-top: 0;
}
.ntb-metrics-sub {
    text-align: center;
    /* color: #555; */
    /* max-width: 840px; */
    /* margin: 0 auto 26px; */
    /* line-height: 1.7; */
    /* font-size: 1.02rem; */
    font-size: 19px;
    color: #000;
    line-height: 26px;
    margin-bottom: 42px;
    letter-spacing: 0px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif !important;
}
.ntb-card h3 {
    font-size: 19px;
    line-height: 28px;
    margin: 0;
    font-weight: 500;
    font-family: 'Inter' !important;
    width: 80%;
    margin-bottom: 20px;
}
    .launch-growth-section h2 {
        font-size: 20px;
        line-height: 28px;
    }
        .growth-desc {
        font-size: 19px;
        margin-bottom: 20px;
        line-height: 28px;
    }
    .growth-card .growth-sub {
    color: #F45600;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 12px;
    font-size: 16px;
    font-family: 'Inter';
    line-height: 20px;
}
.pet-addons {
    background: linear-gradient(0deg, #FFFFFF, #FFFFFF);
    border-radius: 10px;
    margin-top: 21px;
    padding: 41px 18px;
}
.addons-subtext {
    /* font-size: 1rem; */
    /* color: #333; */
    line-height: 26px;
    max-width: 977px;
    /* margin: 0 auto 25px auto; */
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 30px;
    margin-top: 0;
    text-align: left;
}
    .testimonials-heading {
        font-size: 20px;
        line-height: 28px;
    }
    .testimonials-subtext {
    /* font-size: 1.05rem; */
    /* color: #333; */
    /* line-height: 1.7; */
    /* max-width: 850px; */
    /* margin: 0 auto 60px auto; */
    font-size: 18px;
    color: #000;
    line-height: 27px;
    margin-bottom: 42px;
    letter-spacing: 0px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif !important;
    margin-top: 0;
}
.testimonial-stats .stat p {
    font-size: 18px;
    color: #000;
    margin: 0 auto;
    margin-top: 20px;
    width: 100%;
}
.testimonial-stats .stat h3 {
    font-size: 32px;
    color: #F45600;
    font-weight: 700;
    margin-bottom: 5px;
}
.testimonial-cta {
    background-color: #fff;
    padding: 33px 17px;
    border-radius: 12px;
    text-align: center;
}
.testimonial-cta p {
    /* font-size: 1.05rem; */
    /* color: #333; */
    /* margin-bottom: 25px; */
    max-width: 832px;
    /* margin-left: auto; */
    /* margin-right: auto; */
    font-size: 17px;
    color: #000;
    line-height: 24px;
    margin-bottom: 42px !important;
    letter-spacing: 0px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif !important;
    margin-top: 0;
    margin: 0 auto;
    margin-top: 20px;
}
.launch-image {
    flex: 1;
    min-width: 290px;
    text-align: left;
}
    .launch-image img {
        max-width: 93% !important;
    }
  .testimonial-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 30px 11px;
    text-align: left;
    flex: 1;
    min-width: 218px;
    max-width: 360px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s 
ease;
}
.plan-btn {
    background-color: #f45600;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s 
ease;
    width: 74%;
    text-align: center;
    /* margin: 0 auto !important; */
    margin-left: 0px;
    margin-top: 15px;
}
.plan-card {
    flex: 1;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 35px 30px;
    text-align: left;
    transition: all 0.3s 
ease;
    min-width: 228px;
}
.plan-card.orange-card a {
    background: #fff ! IMPORTANT;
    color: #000;
}

.plan-card.orange-card ul li {
    color: #fff;
}
.pet-growth-heading {
    /* font-size: 2.2rem; */
    /* font-weight: 800; */
    /* margin-bottom: 20px; */
    font-size: 23px ! IMPORTANT;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 35px;
    font-family: 'Inter' !important;
}
.pet-growth-subtext {
    /* font-size: 1.05rem; */
    /* color: #333; */
    /* line-height: 1.7; */
    /* max-width: 850px; */
    /* margin: 0 auto 60px auto; */
    font-size: 20px;
    color: #000;
    line-height: 25px;
    margin-bottom: 42px;
    letter-spacing: 0px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif !important;
}
.plan-card ul li {
    /* font-size: 0.95rem; */
    /* line-height: 1.6; */
    margin-bottom: 9px;
    /* color: #333; */
    font-size: 15px;
    line-height: 1.7;
    color: #675050;
    letter-spacing: 0px;
    TEXT-ALIGN: left;
}
.about-right {
    flex: 1 1 50%;
    min-width: 288px;
}
.about-left {
    flex: 1 1 45%;
    min-width: 290px;
}
.partner-card {
    flex: 1;
    padding: 40px 14px;
    text-align: left;
    transition: all 0.3s 
ease;
}
.about-right p {
    font-size: 18px;
    color: #000;
    line-height: 26px;
    margin-bottom: 18px;
    letter-spacing: 0px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    WIDTH: 92%;
}
.about-text {
    font-size: 20px;
    line-height: 30px;
    color: #000;
    margin-bottom: 25px;
    letter-spacing: 0px;
    font-family: 'Poppins', sans-serif;
}
.why-partner-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 32px;
}
.what-we-do-heading {
    /* font-size: 2.2rem; */
    /* font-weight: 800; */
    /* margin-bottom: 20px; */
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 40px;
}
.what-we-do-subtext {
    /* font-size: 1.05rem; */
    /* color: #333; */
    /* line-height: 1.7; */
    /* max-width: 850px; */
    /* margin: 0 auto 60px auto; */
    font-size: 19px;
    color: #000;
    line-height: 26px;
    margin-bottom: 42px;
    letter-spacing: 0px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}
    .services-subtext {
        font-size: 16px;
        line-height: 23px;
    }
        .scaling-smart-left p {
        font-size: 20px;
        line-height: 27px;
    }
        .scaling-smart-left p {
        font-size: 20px;
        line-height: 27px;
    }
.why-partner-subtext {
    /* font-size: 1.05rem; */
    /* color: #333; */
    /* line-height: 1.7; */
    /* max-width: 850px; */
    /* margin: 0 auto 60px auto; */
    font-size: 20px;
    color: #000;
    line-height: 25px;
    margin-bottom: 42px;
    letter-spacing: 0px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}
    .scaling-smart-form {
        width: 79%;
        max-width: 483px;
        /* margin-left: -19px; */
    }
        .main-nav a {
        text-decoration: none;
        color: #222;
        font-family: Inter, sans-serif;
        font-weight: 500;
        transition: color 0.3s 
ease;
        font-size: 19px;
        /* margin-bottom: 20px ! IMPORTANT; */
    }
        .container.header-content li {
        margin-bottom: -1px;
        padding: 10px;
    }
    .scaling-smart-left {
    flex: 1;
    min-width: 271px;
}
    .scaling-smart-form {
    flex: 1;
    min-width: 204px;
    background-color: #fff;
    border-radius: 10px;
    padding: 35px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
}

