/* --------------------------------------------- */
/* RESET + BASE TYPOGRAPHY */
/* --------------------------------------------- */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #111111;
  color: #ffffff;
  font-size: 1.125rem; /* 18px */
  line-height: 1.6;
  overflow-x: hidden;
}

/* --------------------------------------------- */
/* TYPOGRAPHY SYSTEM */
/* --------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 4rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1rem; font-weight: normal}
h6 { font-size: 1rem; }
p { margin-bottom: 1.5rem;}

em {
  font-style: italic;
  color: #aad3ff;
}

strong {  
	color: #ffffff;
  text-decoration: none;
font-weight: 500;   
}

.subtitle {
  font-size: 2rem;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  font-weight: 500;   
}

small {
  font-size: 0.875rem;
  color: #999999;
  letter-spacing: 0.05em;
}

ul {
  list-style-type: square;         /* Use square bullets globally */
  padding-left: 1.5rem;            /* Indent from left */
  margin-bottom: 1.5rem;           /* Optional spacing below list */
}

ul li {
  margin-bottom: 0.5rem;           /* Space between list items */
  line-height: 1.6;                /* Match global paragraph line height */
}

/* --------------------------------------------- */
/* HYPERLINKS */
/* --------------------------------------------- */
a, strong, em {
  color: #ffffff;
  text-decoration: none;
}


a {
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

a:hover {
  color: #aad3ff;
}


/* --------------------------------------------- */
/* SPACING SYSTEM */
/* --------------------------------------------- */
.section {
  padding: 120px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --------------------------------------------- */
/* BUTTONS */
/* --------------------------------------------- */
.button-primary {
  background-color: #0057ff;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.button-primary:hover {
  background-color: #00bfff;
}

/* --------------------------------------------- */
/* FADE IN ANIMATIONS (Scroll reveal) */
/* --------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------- */
/* MEDIA QUERIES */
/* --------------------------------------------- */
/* --------------------------------------------- */
/* RESPONSIVE TYPOGRAPHY SYSTEM */
/* --------------------------------------------- */

/* Default Desktop / Large Screens (≥ 1200px) */
h1 { font-size: 4rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Tablets and Small Laptops (≤ 1024px) */
@media (max-width: 1024px) {
  h1 { font-size: 3.25rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.75rem; }
}

/* Small Tablets and Large Phones (≤ 768px) */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.25rem; }
 .subtitle {font-size: 1.6rem;}
}

/* Phones and Small Devices (≤ 500px) */
@media (max-width: 500px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  h4 { font-size: 1.125rem; }
  h5 { font-size: 1rem; }
  p  { font-size: 1rem; }
 .subtitle {font-size: 1.3rem;}
}



/* --------------------------------------------- */
/* ROTATING BANNER */
/* --------------------------------------------- */
.rotating-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0077b6;
  height: 40px;
  padding: 0 24px;
  gap: 16px; /* NEW: Adds space between the logo, banner center, and menu */
}


/* 🔵 Logo Left */
.banner-logo {
  color: white;
  font-weight: 400;
  white-space: nowrap;
}

/* 🔲 Center - Rotating Text */
.banner-center {
  flex: 1;
  display: flex;
  justify-content: center;
  overflow: hidden;


}

.banner-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 25s linear infinite;
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 🔵 Menu Right */
.banner-right {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  background-color: #0077b6;
  padding: 0 12px;
  height: 100%;
}

.menu-button {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #0077b6; /* Correct blue */
  color: white;
  font-weight: normal;
  font-size: 0.875rem;
  border: none;
  height: 32px;
  padding: 0 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.menu-button:hover {
  background-color: #0096d6; /* Slight hover tint */
}

.hamburger {
  font-size: 1rem;
}


/* 🔻 Hide Rotating Text on Small Screens */
@media (max-width: 768px) {
  .banner-center {
    display: none;
  }

  .banner-logo {
    margin-right: auto;
  }

  .banner-right {
    margin-left: auto;
  }
}




/* ================================
   Sidebar Menu Styles
   ================================ */
/* ================================
   Sidebar Base Layout
   ================================ */

.side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background-color: #f7f1ed;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
  padding: 32px 24px;
  transition: right 0.3s ease-in-out;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden; /* no scroll */
}

.side-menu.open {
  right: 0;
}

/* ================================
   Inner Flex Container
   ================================ */

.menu-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 24px;
  min-height: 0;
  overflow: hidden;
}

/* ================================
   Close Button
   ================================ */

.close-button {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  color: #444;
  align-self: flex-end;
}

/* ================================
   Navigation Links
   ================================ */

.menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-shrink: 1;
  min-height: 0;
}

.menu-links li {
  margin: 28px 0;
}

.menu-links a {
  font-size: 26px;
  font-weight: bold;
  color: #111;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.menu-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #111;
  transition: width 0.3s ease;
}

.menu-links a:hover,
.menu-links a:focus {
  color: #000;
}

.menu-links a:hover::after,
.menu-links a:focus::after {
  width: 100%;
}

/* ================================
   Social Icons
   ================================ */

.social-icons {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.social-icons a {
  color: #222;
  transition: transform 0.2s ease, color 0.2s;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #0077b5;
}

/* ================================
   Footer Links
   ================================ */

.footer-links {
  font-size: 14px;
  color: #444;
  text-align: left;
  flex-shrink: 0;
}

.footer-links a {
  margin-right: 10px;
  color: #444;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: #111;
  border-bottom: 1px solid #111;
}

/* ================================
   CTA Box
   ================================ */

.menu-cta {
  background: #0077b6;
  color: white;
  padding: 32px 24px;
  border-radius: 12px;
  margin-top: 12px;
  flex-shrink: 1;
  min-height: 0;
  overflow: hidden; /* NEW */
}

.menu-cta .cta-headline {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.menu-cta .cta-sub {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.menu-cta .cta-button {
  display: inline-block;
  background: white;
  color: #0077b6;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease;
}

.menu-cta .cta-button:hover {
  background: #f0f0f0;
}

/* ================================
   Overlay Backdrop
   ================================ */

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ================================
   Responsive (Mobile + Short Height)
   ================================ */

@media (max-width: 480px), (max-height: 700px) {
  .side-menu {
    width: 100%;
    padding: 24px 16px;
  }

  .menu-links li {
    margin: 16px 0; /* reduced vertical spacing */
  }

  .menu-links a {
    font-size: 22px;
  }

  .menu-cta {
    padding: 20px 16px;
  }

  .menu-cta .cta-headline {
    font-size: 16px;
  }

  .menu-cta .cta-sub {
    font-size: 13px;
  }

  .menu-cta .cta-button {
    font-size: 13px;
    padding: 8px 16px;
  }
}




/* --------------------------------------------- */
/* HERO SECTION FINALIZED */
/* --------------------------------------------- */




/* Tighter spacing below the logo */
.section-hero .logo-wrap {
  margin-bottom: 0.25rem; /* Reduced space */
}

.homepage {
  height: 100vh;
}




.section-hero .hero-layout {
  max-width: 768px;
  margin-left: 0;
  margin-right: auto;
}


.section-hero h1 em {
  color: #aad3ff; /* Only this specific color override */
}


/* Maybe link hover color */
.section-hero .spaced-underline:hover {
  color: #aad3ff;
}

/* Responsive */
@media (max-width: 768px) {
  .section-hero .hero-layout {
    padding: 60px 20px;
  }
}

@media (max-width: 500px) {
  .section-hero .hero-layout {
    padding: 40px 16px;
  }
  .section-hero {
    padding: 0px;
  }

}


/* ----------------------- */
/* SECTION: CLAIMS       */
/* ----------------------- */
.section--tabs {
  background-color: #ffffff; /* medium grey */
  color: #000000;            /* default black text */
}

/* Override the subtitle and paragraph text to black */
.section--tabs h2,.section--tabs p,
.section--tabs .accordion-content {
  color: #000000;
}

.accordion-content {
  background-color: #e6e6e6; /* lighter grey */

}

.accordion-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #2f2f2f;
  padding-bottom: 20px;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
  background: none;
  border: none;
  width: 100%;
  padding: 0;
}

.accordion-header:hover .tab-title,
.accordion-header:hover .tab-number,
.accordion-header:hover .arrow {
  color: #000000;
  stroke: #000000; /* for SVG arrow */
}


.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.tab-title {
  word-break: break-word;
  white-space: normal;
  color: #00ccff;
  flex: 1;
}

.tab-number {
  font-family: monospace;
  font-size: 0.9rem;
  color: #00ccff;
  white-space: nowrap;
  flex-shrink: 0;
}

.arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  margin-left: auto;
}

.accordion-item.active .arrow {
  transform: rotate(90deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  margin-top: 10px;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #cccccc;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  opacity: 1;
}

@media (max-width: 500px) {
  .accordion-header {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
  }

  .header-left {
    flex-direction: row;
    align-items: flex-start;
    flex: 1;
    gap: 8px;
  }

  .tab-number {
    font-size: 0.8rem;
    padding-top: 2px;
    line-height: 1.2;
    flex-shrink: 0;
  }

  .tab-title {
    font-size: 1rem;
    line-height: 1.5;
    flex: 1;
    word-break: break-word;
  }

  .arrow {
    align-self: center;
    margin-left: auto;
    flex-shrink: 0;
  }
}





/* ----------------------- */
/* PAIN POINTS SECTION     */
/* ----------------------- */
.section-painpoints {
  background-color: #1c1c1c;
}



.section-painpoints .painpoint h4 {
  color: #00ccff;
}
.section-painpoints .painpoints-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop: 3 columns */
  gap: 40px;
  margin-top: 40px;
}

/* Tablets: 2 columns */
@media (max-width: 1024px) {
  .section-painpoints .painpoints-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 column */
@media (max-width: 600px) {
  .section-painpoints .painpoints-grid {
    grid-template-columns: 1fr;
  }
}


/* ----------------------------------------- */
/* FRAMEWORK SECTION                           */
/* ----------------------------------------- */


.section-framework .core-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.section-framework .core-grid-item h3 {
  color: #00ccff;
}

.framework-layout em {text-decoration-line: underline;}
.core-grid-item em {text-decoration-line: none;}

/* Responsive: Stack to 1 column */
@media (max-width: 768px) {
  .section-framework .core-grid {
    grid-template-columns: 1fr;
  }
}




/* ---------------------------------- */
/* BENEFITS SECTION                   */
/* ---------------------------------- */

.section-benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.section-benefits .benefit-item h4 {
  color: #00ccff;
}



.framework-layout em {text-decoration-line: underline;}
.core-grid-item em {text-decoration-line: none;}

/* Responsive: Stack to 1 column */
@media (max-width: 768px) {
  .section-benefits .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------- */
/* PROCESS SECTION                   */
/* ---------------------------------- */

/* SECTION BACKGROUND + GLOBAL TEXT COLORS FOR SECTION */
.section-process {
  background-color: #e6e6e6;
  color: #000000;
}

/* HEADER COLORS */
.section-process h2,
.section-process h5,
.section-process h3,
.section-process P {
  color: #000000;
}

.process-left a {color: #000000;}

/* Container for both columns */
.process-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

/* Sticky Left Side */
.process-left {
  position: sticky;
  top: 120px; /* Adjust as needed */
  align-self: start;
}

/* Right Side scrolls normally */
.process-right .step {
  margin-bottom: 60px;
}

/* Responsive Layout for Smaller Screens */
@media (max-width: 1024px) {
  .process-layout {
    grid-template-columns: 1fr;
  }

  .process-left {
    position: static;
    margin-bottom: 2rem;
  }
}



/* ---------------------------------- */
/* WHAT'S INCLUDED SECTION            */
/* ---------------------------------- */


/* Section Wrapper */
.section-whats-included {
  background-color: #1c1c1c; /* Grey background */
  padding: 100px 20px;
}

/* Layout Grid */
.whats-included-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* Left Column */
.whats-included-left {
  flex: 1 1 45%;
  min-width: 280px;
}

/* Right Column (Tab Panel) */
.whats-included-right {
  flex: 1 1 50%;
  min-width: 320px;
  background-color: #0077b6;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Tab Buttons */
.tab-buttons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.tab-button {
  flex: 1;
  background: none;
  border: none;
  padding-bottom: 12px;
  text-align: center;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s ease;
  color: #ffffff; /* Set text color to light grey */
}

.tab-button.active {
  border-bottom: 3px solid white;
}

/* Tab Content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content ul {
  margin: 20px 0;
  padding-left: 1.25rem;
  list-style: none;
}

.tab-content ul li::before {
  content: "✓";
  color: #00ff99;
  margin-right: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .whats-included-layout {
    flex-direction: column;
  }

  .whats-included-left,
  .whats-included-right {
    width: 100%;
  }
}







/* =========================== */
/* PERFORMANCE SECTION */
/* =========================== */

.section-performance {
  background-color: #000; /* Dark grey instead of black */
}

/* Grid for the graphics (charts) */
.performance-graphics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 80px;
}

/* Grid item for each graphic */
.performance-graphic {
  background-color: #111; /* Optional to make the SVGs stand out */
  padding: 30px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Grid for the split text results */
.performance-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

/* Responsive: Collapse to 1 column on smaller screens */
@media (max-width: 768px) {
  .performance-graphics-grid,
  .performance-results-grid {
    grid-template-columns: 1fr;
  }
}



.performance-table {
  margin-top: 40px;
  background-color: #111;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  max-width: 600px;
}

.performance-table h3 {
  margin-bottom: 16px;
  font-size: 18px;
  color: #00C8FF;
}

.performance-table table {
  width: 100%;
  border-collapse: collapse;
}

.performance-table th,
.performance-table td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #333;
}

.performance-table th {
  color: #ccc;
}

.performance-table tr:last-child td {
  border-bottom: none;
}


/* =========================== */
/* FAQ SECTION */
/* =========================== */



/* Push down main body content */
body {
  padding-top: 40px;
}

.section-faq .accordion-header:hover,
.section-faq .accordion-header:hover .tab-title,
.section-faq .accordion-header:hover .tab-number,
.section-faq .accordion-header:hover .arrow {
  color: #ffffff;
  stroke: #ffffff;
  fill: none;
}


.section-faq .accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  margin-top: 10px;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #ffffff;
background-color: #111111;
}


/* =========================== */
/* FOOTER SECTION */
/* =========================== */

.footer {
	background: #0077b6;
}

.footer-top {
  border-bottom: 1px solid #cccccc; /* light grey separator */
  padding-bottom: 2rem;             /* space before border */
  margin-bottom: 0.25rem;              /* space after border */
  color: #ffffff;
}

.footer-bottom {
  color: #ffffff;
}

