/* Base & Reset */
:root {
  --blue: #1e6cb6;
  --deep: #1F2E55;
  --orange: #ff6a00;
  --white: #ffffff;
  --bg-light: #f8fafc;
  --bg-dark: #0f172a;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--orange);
  color: var(--white);
  padding: 16px 32px;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
  background-color: #e65f00;
}

/* Webinar Top Strip */
.webinar-strip {
  background: var(--blue);
  background: linear-gradient(90deg, var(--navy), var(--blue));
  color: #fff;
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
}
.webinar-strip-content {
  display: inline-block;
}
.webinar-strip a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 700;
  margin-left: 6px;
}
.webinar-strip a:hover {
  text-decoration: underline;
}

/* Header */
.header {
  padding: 24px 0;
  position: absolute;
  top: 40px; /* Accounts for the top strip */
  left: 0;
  right: 0;
  z-index: 100;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo img {
  height: 55px; /* Increased from 40px */
}

/* Hero Section */
.hero {
  padding: 180px 0 80px;
  background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.95)), url('images/hero_bg_real.jpg') center/cover no-repeat;
  position: relative;
}
.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.hero .pill {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Credibility Pills */
.credibility-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.pill {
  background: rgba(30, 108, 182, 0.08);
  color: var(--blue);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(30, 108, 182, 0.15);
}

/* Logos Marquee */
.logos {
  padding: 50px 0;
  background-color: var(--bg-light);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
}
.logos p {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 30px;
  letter-spacing: 1px;
}
.marquee-container {
  display: flex;
  width: 200%;
  animation: marquee 20s linear infinite;
}
.marquee-content {
  display: flex;
  width: 50%;
  justify-content: space-around;
  align-items: center;
}
.marquee-content img {
  max-height: 45px;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s;
  object-fit: contain;
}
.marquee-content img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Specific Logo Sizing Fixes */
.marquee-content img[alt="Lansinoh"],
.marquee-content img[alt="Kaden Health"] {
  height: 110px;
  max-height: 110px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Challenge Section */
.challenge {
  padding: 120px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}
.challenge-content {
  max-width: 1000px;
  margin: 0 auto;
}
.section-title {
  font-size: 2.5rem;
  color: var(--deep);
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.challenge-intro {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 50px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.challenge-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.125rem;
  color: var(--text-dark);
  border-top: 4px solid var(--blue);
  transition: var(--transition);
}
.challenge-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.challenge-card i {
  color: var(--blue);
  font-size: 2rem;
}

/* Offering / Use Cases Section */
.offering {
  padding: 80px 0 100px;
  background-color: var(--white);
}
.offering-header {
  text-align: center;
  margin-bottom: 60px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border-top: 4px solid transparent;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--blue);
}
.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(30,108,182,0.1);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: var(--transition);
}
.card:hover .card-icon {
  background: var(--blue);
  color: var(--white);
}
.card h3 {
  font-size: 1.5rem;
  color: var(--deep);
  margin-bottom: 16px;
}
.card ul {
  list-style: none;
  margin-top: 16px;
  color: var(--text-light);
}
.card ul li {
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.card ul li i {
  color: var(--blue);
  margin-top: 5px;
  font-size: 0.875rem;
}

/* Testimonials */
.testimonial-section {
  background: var(--bg-dark);
  padding: 100px 0;
  color: var(--white);
  overflow: hidden;
}
.testimonial-section .section-title {
  color: var(--white);
  text-align: center;
}
.testimonial-slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 40px auto 0;
}
.testimonial-track-new {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.test-slide {
  flex: 0 0 600px;
  margin: 0 20px;
  opacity: 0.5;
  transform: scale(0.9);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.test-slide.active {
  opacity: 1;
  transform: scale(1);
}
.t-video {
  position: relative;
  width: 100%;
  height: 337px;
  background: #000;
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.vm-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
}
.vm-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

/* Calendly Close */
.calendly-section {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(to top, #ffffff 0%, #f8fafc 100%);
}
.calendly-section p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* FAQ / AEO */
.faq {
  padding: 80px 0 120px;
  background-color: var(--bg-light);
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 24px 0;
}
.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: var(--transition);
}
.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  color: var(--text-light);
}
.faq-item.active .faq-answer {
  max-height: 800px;
  margin-top: 16px;
  line-height: 1.8;
}

/* Footer */
.footer {
  background: #053b6d;
  color: #cbd5e1;
  padding: 80px 0 20px;
}
.footer-top {
  margin-bottom: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo img {
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.footer h3 {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}
.footer ul {
  list-style: none;
}
.footer ul li {
  margin-bottom: 12px;
}
.footer ul li a {
  color: #cbd5e1;
  transition: color 0.3s;
}
.footer ul li a:hover {
  color: var(--orange);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.875rem;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.social-links {
  display: flex;
  gap: 16px;
}
.social-links a {
  color: #cbd5e1;
  transition: color 0.3s;
}
.social-links a:hover {
  color: var(--orange);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .test-slide { flex: 0 0 90vw; margin: 0 5vw; }
  .t-video { height: 50vw; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 16px; text-align: center; }
}

 / *   H E R O   O P T I O N S   P R E V I E W   * / 
 . h e r o . o p t i o n - a   { 
         b a c k g r o u n d :   # 0 a 1 9 2 f ; 
 } 
 . h e r o . o p t i o n - a : : b e f o r e   { 
         b a c k g r o u n d - i m a g e :   u r l ( ' i m a g e s / i m a g e . w e b p ' ) ; 
         o p a c i t y :   0 . 2 5 ; 
         m i x - b l e n d - m o d e :   n o r m a l ; 
 } 
 
 . h e r o . o p t i o n - b   { 
         b a c k g r o u n d :   t r a n s p a r e n t ; 
         t e x t - a l i g n :   r i g h t ; 
 } 
 . h e r o . o p t i o n - b   . c o n t a i n e r   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   f l e x - e n d ; 
         t e x t - a l i g n :   r i g h t ; 
 } 
 . h e r o . o p t i o n - b   . h e r o - c o n t e n t   { 
         m a x - w i d t h :   6 5 0 p x ; 
         m a r g i n :   0 ; 
         p a d d i n g :   4 0 p x ; 
         b a c k g r o u n d :   r g b a ( 1 0 ,   2 5 ,   4 7 ,   0 . 8 5 ) ; 
         b a c k d r o p - f i l t e r :   b l u r ( 1 0 p x ) ; 
         b o r d e r - r a d i u s :   1 6 p x ; 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 ) ; 
 } 
 . h e r o . o p t i o n - b : : b e f o r e   { 
         b a c k g r o u n d - i m a g e :   u r l ( ' i m a g e s / 1 0 0 0 _ F _ 1 4 7 3 5 5 2 1 5 7 _ L D t H j o e H U C 7 1 7 3 X K r o G V a l r F L T y Q w i 6 o . j p g ' ) ; 
         o p a c i t y :   1 ; 
         m i x - b l e n d - m o d e :   n o r m a l ; 
         z - i n d e x :   - 2 ; 
 } 
 . h e r o . o p t i o n - b : : a f t e r   { 
         c o n t e n t :   ' ' ; 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ;   l e f t :   0 ;   r i g h t :   0 ;   b o t t o m :   0 ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( t o   r i g h t ,   r g b a ( 1 0 , 2 5 , 4 7 , 0 )   0 % ,   r g b a ( 1 0 , 2 5 , 4 7 , 0 . 8 )   5 0 % ,   r g b a ( 1 0 , 2 5 , 4 7 , 1 )   8 0 % ) ; 
         z - i n d e x :   - 1 ; 
 } 
 
 . h e r o . o p t i o n - c   { 
         b a c k g r o u n d :   t r a n s p a r e n t ; 
 } 
 . h e r o . o p t i o n - c : : b e f o r e   { 
         b a c k g r o u n d - i m a g e :   u r l ( ' i m a g e s / i m a g e . w e b p ' ) ; 
         o p a c i t y :   1 ; 
         m i x - b l e n d - m o d e :   n o r m a l ; 
 } 
 . h e r o . o p t i o n - c : : a f t e r   { 
         c o n t e n t :   ' ' ; 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ;   l e f t :   0 ;   r i g h t :   0 ;   b o t t o m :   0 ; 
         b a c k g r o u n d :   r g b a ( 2 4 8 ,   2 5 0 ,   2 5 2 ,   0 . 8 8 ) ; 
         z - i n d e x :   0 ; 
 } 
 . h e r o . o p t i o n - c   . c o n t a i n e r   { 
         p o s i t i o n :   r e l a t i v e ; 
         z - i n d e x :   1 ; 
 } 
 . h e r o . o p t i o n - c   h 1   { 
         c o l o r :   # 0 f 1 7 2 a ; 
 } 
 . h e r o . o p t i o n - c   p   { 
         c o l o r :   # 3 3 4 1 5 5 ; 
 } 
 . h e r o . o p t i o n - c   . p i l l   { 
         b a c k g r o u n d :   r g b a ( 0 ,   1 8 0 ,   2 1 6 ,   0 . 1 ) ; 
         c o l o r :   # 0 f 1 7 2 a ; 
         b o r d e r - c o l o r :   r g b a ( 0 ,   1 8 0 ,   2 1 6 ,   0 . 3 ) ; 
 } 
  
 