/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */

:root {
  --background: #ffffff;
  --foreground: #000000;
  --primary: #0f98ca;
  --tab-hover-bg: #66c0e1;
  --primary-foreground: #ffffff;
  --chart-2: #afe6f9;
  --sidebar: #38478d;
  --sidebar-foreground: #ffffff;
  --border: #000000;
  --radius: 8px;
  
  /* High contrast colors for better accessibility */
  --error: #dc2626;
  --error-bg: #fef2f2;
  --error-border: #fecaca;
  --success: #16a34a;
  --success-bg: #f0fdf4;
  --success-border: #bbf7d0;
  --warning: #d97706;
  --warning-bg: #fffbeb;
  --warning-border: #fed7aa;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

/* Skip link for keyboard navigation */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
  font-weight: 600;
}



.skip-link:focus {
  top: 6px;
}

/* Focus indicators */
*:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Remove outline for mouse users but keep for keyboard users */
*:focus:not(:focus-visible) {
  outline: none;
}

*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary: #0066cc;
    --foreground: #000000;
    --background: #ffffff;
    --border: #000000;
  }
  
  *:focus-visible {
    outline: 3px solid #000000;
    outline-offset: 2px;
  }
  
  .btn {
    border: 2px solid currentColor;
  }
  
  .form-input,
  .form-textarea {
    border: 2px solid #000000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

* { 
  box-sizing: border-box; 
}

html, body { 
  height: 100%; 
}

body { 
  margin: 0; 
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; 
  color: var(--foreground); 
  background: var(--background); 
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */

.page { 
  min-height: 100vh; 
  background: var(--background); 
}

.container { 
  max-width: 1300px; 
  margin: 0 auto; 
  padding: 20px; 
  overflow: visible !important;
}

.center { 
  text-align: center; 
}

.mb-16 { 
  margin-bottom: 4rem; 
}

.mb-8 { 
  margin-bottom: 2rem; 
}

.mt-05 {
  margin-top: 0.5rem!important; 
}

.fw-n {
  font-weight: normal!important; 
}

.mt-20 { 
  margin-top: 2rem; 
}

.space-16 > * + * { 
  margin-top: 4rem; 
}

.maxw-3xl { 
  max-width: 768px; 
  margin-left: auto; 
  margin-right: auto; 
}

.maxw-4xl { 
  max-width: 896px; 
  margin-left: auto; 
  margin-right: auto; 
}

.maxw-6xl { 
  max-width: 1152px; 
  margin-left: auto; 
  margin-right: auto; 
}

.gap-8 { 
  gap: 2rem; 
}

/* ==========================================================================
   GRID SYSTEMS
   ========================================================================== */

.grid-2 { 
  display: grid; 
  grid-template-columns: 1fr; 
  margin-top: 4rem;
  margin-bottom: 4rem;
}


/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

.heading { 
  font-family: "Instrument Sans", Inter, sans-serif; 
  line-height: 1; 
  margin: 0; 
}

.heading--hero { 
  font-size: 2.5rem; 
}

.heading--2 { 
  font-size: 1.875rem; 
}

.heading--3 { 
  font-size: 1.5rem; 
}

.lead { 
  font-size: 1.25rem; 
  line-height: 1.4; 
  /* text-align: left; */
  width: 100%;
  color: white;
}

/* ==========================================================================
   COLOR UTILITIES
   ========================================================================== */

.color-chart-2 { 
  color: var(--chart-2); 
}

.color-primary { 
  color: var(--primary); 
}

.color-primary-foreground { 
  color: var(--primary-foreground); 
}

.color-sidebar-foreground { 
  color: var(--sidebar-foreground); 
}

/* ==========================================================================
   IMAGE UTILITIES
   ========================================================================== */


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn { 
  padding: 12px 24px; 
  border-radius: var(--radius); 
  font-weight: 600; 
  border: none; 
  cursor: pointer; 
}

.btn--primary { 
  background: var(--primary); 
  color: var(--primary-foreground); 
}

.btn--primary:hover { 
  opacity: 0.9; 
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header { 
  position: sticky; 
  top: 0;
  width: 100%; 
  background: #fff; 
  z-index: 100; 
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-header__topband { 
  position: absolute; 
  width: 100%; 
  height: 43px; 
}

.site-header__gradient { 
  height: 20px; 
  background: linear-gradient(90deg, var(--primary), var(--chart-2)); 
}

.site-header__inner { 
  position: relative; 
  max-width: 1300px; 
  margin: 0 auto; 
  padding: 0.8rem 1.5rem 0.8rem; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
}

.site-header__logo { 
  height: auto; 
  width: 300px; 
  display: block; 
}

.site-header a {
  display: inline-block;
  text-decoration: none;
}

.site-header a:hover {
  text-decoration: none;
}

.site-nav { 
  display: none; 
  align-items: center; 
  gap: 2rem; 
}

.site-nav__link { 
  text-decoration: none; 
  color: var(--foreground); 
  font-family: "Instrument Sans", Inter, sans-serif; 
  font-size: 1rem; 
}

.site-nav__link:hover { 
  color: var(--primary); 
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger {
  width: 25px;
  height: 3px;
  background: var(--foreground);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: 1px;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
  transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
  transform: rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  flex-direction: column;
  padding: 1rem 0;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav__link {
  color: var(--foreground);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  text-align: left;
  border-bottom: 1px solid #f3f4f6;
}

.mobile-nav__link:last-child {
  border-bottom: none;
}

.mobile-nav__link:hover {
  background: #f8faff;
  color: var(--primary);
}

/* Mobile Navigation Responsive */
@media (max-width: 1023px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .site-nav {
    display: none;
  }
}

@media (min-width: 1024px) {
  .site-nav { 
    display: flex; 
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .mobile-nav {
    display: none !important;
  }
}

/* ==========================================================================
   CHALLENGE SECTION
   ========================================================================== */

.challenge { 
  position: relative; 
  background: var(--sidebar) url('./images/heroboxbackground.png') center/cover no-repeat; 
  overflow: visible; 
  padding: 20px; 
  border-bottom: 1px solid #0f98ca;
}

.challenge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--sidebar);
  opacity: 0.6;
  z-index: 0;
}


.challenge .container { 
  position: relative; 
  z-index: 1; 
  padding-top: 4rem; 
  /* padding-bottom: 4rem;  */
}

.card { 
  border-radius: 16px; 
  padding: 2rem; 
  box-shadow: 0 10px 9px rgba(0,0,0,0.3); 
}

.card--problem { 
  background: #097ca6; 
  color: #fff; 
}

.card--solution { 
  background: var(--primary); 
  color: var(--primary-foreground); 
}

/* ==========================================================================
   MISSION SECTION
   ========================================================================== */

.mission { 
  position: relative; 
  background: #0f5daf url('./images/Background Image.png') center/cover no-repeat;
  overflow: visible; 
  /* min-height: 100vh;  */
  padding: 20px; 
  border-bottom: 1px solid #0f98ca;
}


.diagram { 
  position: relative; 
  width: 100%; 
  max-width: 1300pxpx; 
  margin: 2rem auto; 
}

.diagram__icon { 
  width: 70%; 
  margin:auto;
  height: auto; 
  display: block; 
  /* filter: drop-shadow(0 5px 9px rgba(0,0,0,0.75));  */
  position: relative;
}

/* Responsive icon diagram */
.diagram__icon--desktop {
  display: block;
}

.diagram__icon--mobile {
  display: none;
}

@media (max-width: 480px) {
  .diagram__icon--desktop {
    display: none;
  }
  
  .diagram__icon--mobile {
    display: block;
  }
  
  /* Fix diagram positioning in mobile landscape */
  .diagram {
    /* margin-bottom: 3rem; */
    position: relative;
    z-index: 1;
    margin-bottom: -70px !important;
  }

  .get-started-workflow__cta {
    padding: 2rem 0rem 1rem 0!important;
}
}

.diagram__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
  background: white;
  padding: 2rem;
  border-radius: 16px;
    border: 2px solid var(--primary);
}

.diagram__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.diagram__firststep{
  width: 100%; 
  height: auto; 
  display: block; 
}

.diagram__success {
  background: #0f98ca0d;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  height: fit-content;
}

.diagram__success h3 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.diagram__success-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.diagram__success-list li {
  padding: 0.7rem 0;
  font-size: 1rem;
  color: var(--foreground);
  position: relative;
  padding-left: 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  line-height: 1.6;
}

.diagram__success-list li:last-child {
  border-bottom: none;
}

.diagram__success-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.2rem;
}

.zoom-out-shape { 
  width: 65%; 
  height: auto; 
  display: block; 
  margin: 2rem auto; 
  margin-top: -200px; 
  padding-bottom: 37px; 
}


/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */

.process { 
  position: relative; 
  max-width: 1300px; 
  margin: 0 auto; 
}

.process__arrow { 
  display: block; 
  width: 100%;
  max-width: 1202px;
  margin-top: -100px;
  margin-left: 42px;
  opacity: 0.25; 
}

.process__row { 
  display: grid; 
  grid-template-columns: repeat(3,1fr); 
  gap: 1rem; 
  align-items: center; 
  justify-items: center; 
  max-width: 1202px; 
  margin: -70px auto 0; 
}

.process__circle { 
  width: 175px; 
  height: 176px; 
}

.process__cards { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 2rem; 
  max-width: 1202px; 
  margin: -70px auto 0; 
  align-items: stretch; 
}

.pbox { 
  background: #a9e4ff; 
  border: 2px solid var(--primary); 
  border-radius: 16px; 
  overflow: hidden; 
  box-shadow: 0 10px 9px rgba(0,0,0,0.3); 
  display: flex; 
  flex-direction: column; 
  height: 100%; 
  max-height: 444px; 
}

.pbox__head { 
  height: 100px; 
  display: grid; 
  place-items: center; 
  background: var(--primary); 
  color: var(--primary-foreground); 
  text-align: center; 
}

.pbox__head h3 { 
  margin: 10px 0 4px; 
  font-size: 1.875rem; 
}

.pbox__head p { 
  margin: 0; 
  font-size: 1.25rem; 
}

.pbox__body { 
  padding: 1.5rem; 
  flex: 1; 
  overflow-y: auto; 
}

.pbox__body p { 
  margin-top: 0; 
  margin-bottom: 1rem; 
  line-height: 1.32; 
}

.pbox__body ul { 
  margin: 0; 
  padding: 0; 
  list-style: none; 
}

.pbox__body li { 
  display: grid; 
  grid-template-columns: 10px 1fr; 
  align-items: start; 
  gap: 1rem; 
  margin-bottom: 1rem; 
}

.pbox__body li::before { 
  content: ""; 
  width: 8px; 
  height: 8px; 
  border-radius: 999px; 
  background: var(--foreground); 
  margin-top: 6px; 
}

.pboxcontainer { 
  /* Container for process box elements */ 
  display: block;
}

.pboxcontainer img.process__circle {
    display: block;
    margin: auto;
}

.pboxcontainer img.process__connector {
  margin: -47px auto 0px;
  display: block;
}

/* ==========================================================================
   PROOFPOINTS SECTION
   ========================================================================== */

.proofpoints { 
  background: #e8e8e8; 
  padding: 2rem 0;
}

.proofpoints-container { 
  /* Container for both tab and accordion interfaces */ 
  display: block;
}

/* ==========================================================================
   ABOUT US PAGE STYLES
   ========================================================================== */

.about-us-story {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.about-us-story__content {
  max-width: none;
}

.about-us-story__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.about-us-stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  background: #0f98ca;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.about-us-stat h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}


.about-us-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.about-us-team-member {
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 2px solid var(--primary);
}

.about-us-team-member:hover {
  /* transform: translateY(-8px); */
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.about-us-team-member__photo {
  margin-bottom: 1.5rem;
}

.about-us-team-member__placeholder {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 24px rgba(15, 152, 202, 0.3);
}

.about-us-team-member__initials {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.about-us-team-member__info {
  flex: 1;
  width: 100%;
}

.about-us-team-member__info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary) !important;
}

.about-us-team-member__info h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--foreground) !important;
  opacity: 0.8;
}

.challenge .about-us-team-member__info p {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  color: var(--foreground) !important;
}


/* About Us Inline Stats */
.about-us-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.about-us-stat-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-us-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--chart-2);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-us-stat-label {
  font-size: 1rem;
  color: var(--sidebar-foreground);
  font-weight: 500;
  text-transform: lowercase;
}


/* About Us Page Paragraph Styling */
.about-us p {
  text-align: left;
  width: 100%;
  color: var(--sidebar-foreground) !important;
}

.about-us .lead {
  text-align: left;
  width: 100%;
  max-width: none;
  color: var(--sidebar-foreground) !important;
}

/* Challenge section paragraphs (hero section) */
.challenge p {
  color: var(--sidebar-foreground) !important;
}

.challenge .lead {
  color: var(--sidebar-foreground) !important;
}

/* ==========================================================================
   GET STARTED PAGE STYLES
   ========================================================================== */

.get-started-container {
  max-width: 1300px;
  margin: 3rem auto;
}

.get-started-tabs {
  display: none;
}

.get-started-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.get-started-button {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
}

.get-started-button::after {
  content: "→";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--primary);
  opacity: 0.6;
  transition: all 0.15s ease;
}

.get-started-button:hover {
  border-color: var(--primary);
  background: var(--tab-hover-bg);
  color: #fff;
  box-shadow: 0 4px 12px rgba(15, 152, 202, 0.2);
}

.get-started-button:hover::after {
  opacity: 1;
}

.get-started-button.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(15, 152, 202, 0.3);
}

.get-started-button.active::after {
  color: white;
  opacity: 1;
}

.get-started-button h3 { 
  margin: 0 0 0.25rem 0; 
  font-size: 1rem; 
  font-weight: 600; 
  line-height: 1.3; 
  pointer-events: none;
}

.get-started-button p { 
  margin: 0; 
  font-size: 0.875rem; 
  font-weight: 500; 
  opacity: 0.8; 
  line-height: 1.2; 
  pointer-events: none;
}

.get-started-content { 
  background: #fff !important; 
  border: 2px solid var(--primary); 
  border-radius: 16px; 
  padding: 0rem 2rem; 
  min-height: 530px; 
  box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
  position: relative;
  z-index: 10;
}

.get-started-panel { 
  display: none; 
  animation: fadeIn 0.3s ease-in-out; 
  padding: 2rem 0;
}

.get-started-panel.active { 
  display: block; 
}

.get-started-panel h4 {
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem 0;
}

.get-started-panel h4:first-child {
  margin-top: 0;
}

.get-started-panel p {
  color: var(--foreground) !important;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.get-started-accordions {
  display: block;
  max-height: none;
  overflow: visible;
}

.get-started-accordion {
  background: #fff;
  border: 2px solid #0f98ca;
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: visible;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.get-started-accordion:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.get-started-accordion--open {
  z-index: 10;
  box-shadow: 0 20px 30px rgba(0,0,0,0.25);
}

.get-started-accordion--open .get-started-accordion__head {
  /* background: rgba(15, 152, 202, 0.1) !important; */
  background: #afe6f9;
}

.get-started-accordion__head {
  background: #fff;
  border-radius: 16px;
  padding: 0.875rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.get-started-accordion__head:hover {
  /* background-color: rgba(15, 152, 202, 0.05); */
  background: #afe6f9;
}

.get-started-accordion__head h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--foreground);
  flex: 1;
  text-align: left;
  word-wrap: break-word;
  hyphens: auto;
  margin: 0;
}

.get-started-accordion__body {
  background: #fff;
  border-radius: 0 0 16px 16px;
  position: relative;
  z-index: 2;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.get-started-accordion--open .get-started-accordion__body {
  padding: 0.75rem 1rem;
  max-height: none !important;
  height: auto !important;
  opacity: 1;
/*   border: 2px solid var(--primary); */
  border-top: none;
  overflow: visible;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.get-started-accordion__body h4 {
  margin: 0.75rem 0 0.5rem;
  font-size: 1.125rem;
  color: var(--foreground);
}

.get-started-accordion__body p {
  margin: 0.5rem 0;
  color: var(--foreground) !important;
  line-height: 1.5;
}

.get-started-accordion__body ul {
  margin: 0.5rem 0 0.75rem 1.25rem;
}

.get-started-accordion__body li {
  margin: 0.25rem 0;
  color: var(--foreground);
}

.get-started-chev {
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.get-started-chev--right {
  transform: rotate(-45deg);
}

.get-started-accordion--open .get-started-chev {
  transform: rotate(45deg) !important;
}





/* Get Started Workflow Section */
.get-started-workflow {
  background: #ffffff;
  padding: 2rem 0;
}

.get-started-workflow__header {
  text-align: center;
  margin-bottom: 4rem;
}

.get-started-workflow__header .lead {
color:#fff
}

.get-started-workflow__content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.get-started-workflow__process {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.get-started-workflow-step {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.get-started-workflow-step__chevron {
  position: relative;
  padding: 1.5rem 2rem;
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0;
}

.get-started-workflow-step__chevron::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid currentColor;
}

.get-started-workflow-step__chevron--1 {
  background: #38478d;
}

.get-started-workflow-step__chevron--1::after {
  border-top-color: #38478d;
}

.get-started-workflow-step__chevron--2 {
  background: #4a5ba3;
}

.get-started-workflow-step__chevron--2::after {
  border-top-color: #4a5ba3;
}

.get-started-workflow-step__chevron--3 {
  background: #afe6f9;
  color: #000000;
}

.get-started-workflow-step__chevron--3::after {
  border-top-color: #afe6f9;
}

.get-started-workflow-step__number {
  font-size: 2rem;
  font-weight: 700;
  min-width: 40px;
}

.get-started-workflow-step__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.get-started-workflow-step__tasks {
  padding: 1.5rem 2rem;
  margin-top: 20px;
}

.get-started-workflow-step__tasks--1 {
  background: #e8d5f2;
}

.get-started-workflow-step__tasks--2 {
  background: #afe6f9;
}

.get-started-workflow-step__tasks--3 {
  background: #e8d5f2;
}

.get-started-workflow-task {
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #000000;
  font-weight: 500;
}

.get-started-workflow-step__duration {
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.get-started-workflow-step__duration--1 {
  background: #38478d;
  color: white;
}

.get-started-workflow-step__duration--2 {
  background: #38478d;
  color: white;
}

.get-started-workflow-step__duration--3 {
  background: #38478d;
  color: white;
}

.get-started-workflow__success {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  height: fit-content;
}

.get-started-workflow__success h3 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.get-started-workflow__success-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.get-started-workflow__success-list li {
  padding: 1rem 0;
  font-size: 1rem;
  color: var(--foreground);
  position: relative;
  padding-left: 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  line-height: 1.6;
}

.get-started-workflow__success-list li:last-child {
  border-bottom: none;
}

.get-started-workflow__success-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.2rem;
}

.get-started-workflow__cta {
  text-align: center;
  margin-bottom: 1rem;
  padding: 0rem 0rem 3rem 0;
}

.get-started-workflow__cta p {
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
  color:#fff
}

.get-started-workflow .diagram{
    max-width: unset;
    margin:unset;
} 

/* ==========================================================================
   TAB INTERFACE (Desktop)
   ========================================================================== */


.tabs-nav { 
  display: flex; 
  flex-direction: column; 
  gap: 0.5rem; 
  margin-bottom: 2rem; 
}

.tab-button { 
  background: #fff; 
  border: 2px solid var(--primary); 
  border-radius: 12px; 
  padding: 1rem 1.5rem; 
  cursor: pointer; 
  transition: all 0.15s ease; 
  text-align: left; 
  width: 100%; 
  height: 75px;
  display: block;
  position: relative;
}

.tab-button::after {
  content: "→";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--primary);
  opacity: 0.6;
  transition: all 0.15s ease;
}

.tab-button:hover { 
  background-color: var(--tab-hover-bg); 
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(15, 152, 202, 0.2);
}

.tab-button:hover::after {
  opacity: 1;
}

.tab-button.active { 
  background: var(--primary); 
  color: white;
  box-shadow: 0 4px 12px rgba(15, 152, 202, 0.3); 
}

.tab-button.active::after {
  color: white;
  opacity: 1;
}

.tab-button h3 { 
  margin: 0 0 0.25rem 0; 
  font-size: 1rem; 
  font-weight: 600; 
  line-height: 1.3; 
  pointer-events: none;
}

.tab-button p { 
  margin: 0; 
  font-size: 0.875rem; 
  font-weight: 500; 
  opacity: 0.8; 
  line-height: 1.2; 
  pointer-events: none;
}

.tabs-content { 
  background: #fff; 
  border: 2px solid var(--primary); 
  border-radius: 16px; 
  padding: 0rem 2rem; 
  min-height: 400px; 
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  position: relative;
}

/* .tabs-content::before {
  content: "Select a service above to see details";
  position: absolute;
  top: -12px;
  left: 1rem;
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
}
 */
.tab-panel { 
  display: none; 
  animation: fadeIn 0.3s ease-in-out; 
}

.tab-panel.active { 
  display: block; 
}

.tab-panel h4 { 
  margin: 1rem 0 0.5rem; 
  font-size: 1.25rem; 
  color: var(--primary); 
}

.tab-panel ul { 
  margin: 0.5rem 0 1rem 1.25rem; 
}

@keyframes fadeIn { 
  from { 
    opacity: 0; 
    transform: translateY(10px); 
  } 
  to { 
    opacity: 1; 
    transform: translateY(0); 
  } 
}

/* ==========================================================================
   ACCORDION INTERFACE (Mobile)
   ========================================================================== */

.accordions-interface { 
  display: block; 
}

/* ==========================================================================
   FORM ELEMENTS
   ========================================================================== */

.form-group { 
  margin-bottom: 1rem; 
}

.form-label { 
  display: block; 
  margin-bottom: 0.5rem; 
  font-weight: 600; 
  color: var(--foreground); 
}

.form-input, 
.form-select, 
.form-textarea { 
  width: 100%; 
  padding: 0.75rem; 
  border: 2px solid var(--border); 
  border-radius: var(--radius); 
  font-size: 1rem; 
  transition: border-color 0.2s ease; 
}

.form-input:focus, 
.form-select:focus, 
.form-textarea:focus { 
  border-color: var(--primary); 
}

.form-textarea { 
  resize: vertical; 
  min-height: 120px; 
}

.form-checkbox { 
  display: flex; 
  align-items: center; 
  cursor: pointer; 
}

.form-checkbox input[type="checkbox"] { 
  margin-right: 0.5rem; 
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

.contact-info { 
  /* Contact information styling */ 
  display: block;
}

.contact-item { 
  margin-bottom: 1.5rem; 
}

.contact-link { 
  color: var(--primary); 
  text-decoration: none; 
  transition: color 0.2s ease; 
}

.contact-link:hover { 
  color: var(--chart-2); 
}


/* ==========================================================================
   BLOG PAGE STYLES
   ========================================================================== */

.badge { 
  display: inline-block; 
  padding: 0.25rem 0.75rem; 
  background: var(--primary); 
  color: var(--primary-foreground); 
  border-radius: 999px; 
  font-size: 0.875rem; 
  font-weight: 600; 
  margin-right: 1rem; 
}

.text-sm { 
  font-size: 0.875rem; 
}


.accordion { 
  background: #fff; 
  border: 2px solid var(--primary); 
  border-radius: 16px; 
  overflow: visible; 
  box-shadow: 0 10px 9px rgba(0,0,0,0.15); 
  transition: all 0.3s ease; 
  position: relative; 
  z-index: 1; 
}

.accordion:hover { 
  box-shadow: 0 15px 20px rgba(0,0,0,0.2); 
  transform: translateY(-2px); 
}

.accordion--open { 
  z-index: 10; 
  box-shadow: 0 20px 30px rgba(0,0,0,0.25); 
}

.accordion--open .accordion__head {
  background: rgba(15, 152, 202, 0.1) !important;
}


/* Common accordion head styles */
.accordion__head h3 { 
  margin: 0; 
  font-size: 1rem; 
  font-weight: 600; 
  line-height: 1.4; 
  color: var(--foreground); 
  flex: 1; 
  text-align: left; 
  word-wrap: break-word; 
  hyphens: auto; 
}

.accordion__head:hover { 
  background-color: rgba(15, 152, 202, 0.05); 
}

.accordion__body h4 { 
  margin: 0.75rem 0 0.5rem; 
  font-size: 1.125rem; 
  color: var(--foreground);
}

.accordion__body p {
  margin: 0.5rem 0;
  color: var(--foreground) !important;
  line-height: 1.5;
}

.accordion__body ul { 
  margin: 0.5rem 0 0.75rem 1.25rem; 
}

.accordion__body li {
  margin: 0.25rem 0;
  color: var(--foreground);
}

.chev { 
  width: 18px; 
  height: 18px; 
  display: inline-block; 
  border-right: 2px solid var(--primary); 
  border-bottom: 2px solid var(--primary); 
  transform: rotate(-45deg); 
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
  flex-shrink: 0; 
  margin-left: 0.5rem;
}

.chev--right {
  transform: rotate(-45deg);
}

.accordion--open .chev { 
  transform: rotate(45deg) !important; 
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer { 
  background: var(--sidebar); 
  color: var(--sidebar-foreground); 
  padding: 3rem 1.5rem; 
}

.site-footer__links {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: top;
}

.site-footer__logo { 
  height: auto; 
  /* width: 100%;  */
  width: 300px;
  display: block; 
  /* padding-right: 30px; */
}

.site-footer h4, 
.site-footer p { 
  margin: 0 0 0.5rem; 
}

.site-footer a {
  color: white;
  text-decoration: none;
  /* padding-bottom: 10px; */
}

/* Footer Links Container */
.footer-links-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* New Footer Row Structure */
.footer-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.footer-row div {
  display: flex;
  align-items: start;
  justify-content: left;
}

.footer-row div a {
  text-align: left;
  text-decoration: none;
  color: var(--sidebar-foreground);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-row div a:hover {
  color: var(--primary);
}

/* Footer Non-Affiliation */
.footer-non-affiliation {
  color: var(--sidebar-foreground);
  font-size: 0.85rem;
  text-align: left;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Footer Responsive */
@media (max-width: 768px) {
  .site-footer__links {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-links-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns side by side */
    gap: 1rem;
  }
  
  .footer-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-row div a {
    font-size: 0.8rem;
    padding: 0.1rem;
  }
  
  /* Ensure proper mobile ordering - explicitly place items in grid */
  .footer-row--top {
    grid-column: 1;
    grid-row: 1;
  }
  
  .footer-row--bottom {
    grid-column: 2;
    grid-row: 1;
  }
  
  /* Non-affiliation spans full width on mobile and appears on second row */
  .footer-non-affiliation {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   HOME PAGE UNIQUE STYLES
   ========================================================================== */

/* Home Page Proofpoints */
.home-proofpoints {
  /* Same as .proofpoints but unique */
  overflow: visible !important;
  max-height: none !important;
  height: auto !important;
  border-bottom: 1px solid #0f98ca;
}

.home-proofpoints-container {
  /* Same as .proofpoints-container but unique */
  overflow: visible !important;
  max-height: none !important;
  height: auto !important;
}

/* Home Page Tabs */
.home-tabs {
  display: none;
}

.home-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.home-button { 
  background: #fff; 
  border: 2px solid var(--primary); 
  border-radius: 12px; 
  padding: 1rem 1.5rem; 
  cursor: pointer; 
  transition: all 0.15s ease; 
  text-align: left; 
  width: 100%; 
 /*  height: 75px; */
  display: block;
  position: relative;
}

.home-button::after {
  content: "→";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--primary);
  opacity: 0.6;
  transition: all 0.15s ease;
}

.home-button:hover { 
  background-color: var(--tab-hover-bg); 
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(15, 152, 202, 0.2);
}

.home-button:hover::after {
  opacity: 1;
}

.home-button.active { 
  background: var(--primary); 
  color: white;
  box-shadow: 0 4px 12px rgba(15, 152, 202, 0.3); 
}

.home-button.active::after {
  color: white;
  opacity: 1;
}

.home-button h3 { 
  margin: 0 0 0.25rem 0; 
  font-size: 1rem; 
  font-weight: 600; 
  line-height: 1.3; 
  pointer-events: none;
}

.home-button p { 
  margin: 0; 
  font-size: 0.875rem; 
  font-weight: 500; 
  opacity: 0.8; 
  line-height: 1.2; 
  pointer-events: none;
}

.home-content { 
  background: #fff; 
  border: 2px solid var(--primary); 
  border-radius: 16px; 
  padding: 0rem 2rem; 
  min-height: 400px; 
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  position: relative;
}

.home-content h4 {
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem 0;
}

.home-panel { 
  display: none; 
  animation: fadeIn 0.3s ease-in-out; 
}

.home-panel.active { 
  display: block; 
}

.home-content {
  background: #fff; 
  border: 2px solid var(--primary); 
  border-radius: 16px; 
  padding: 0.5rem 2rem; 
  min-height: 400px; 
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Home Page Accordions */
.home-accordions {
  display: block;
  max-height: none;
  overflow: visible;
}

.home-accordion {
  background: #fff;
  border: 2px solid #0f98ca;
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: visible;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.home-accordion:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.home-accordion--open {
  z-index: 10;
  box-shadow: 0 20px 30px rgba(0,0,0,0.25);
}

.home-accordion--open .home-accordion__head {
  background: rgba(15, 152, 202, 0.1) !important;
}

.home-accordion__head {
  background: #fff;
  border-radius: 16px;
  padding: 0.875rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.home-accordion__head:hover {
  background-color: rgba(15, 152, 202, 0.05);
}

.home-accordion__head h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--foreground);
  flex: 1;
  text-align: left;
  word-wrap: break-word;
  hyphens: auto;
  margin: 0;
}

.home-accordion__body {
  background: #fff;
  border-radius: 0 0 16px 16px;
  position: relative;
  z-index: 2;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.home-accordion--open .home-accordion__body {
  padding: 0.75rem 1rem;
  max-height: none !important;
  height: auto !important;
  min-height: auto !important;
  opacity: 1;
  border: 2px solid var(--primary);
  border-top: none;
  overflow: visible !important;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  display: block !important;
  position: static !important;
}

.home-accordion__body h4 {
  margin: 0.75rem 0 0.5rem;
  font-size: 1.125rem;
  color: var(--foreground);
}

.home-accordion__body p {
  margin: 0.5rem 0;
  color: var(--foreground) !important;
  line-height: 1.5;
}

.home-accordion__body ul {
  margin: 0.5rem 0 0.75rem 1.25rem;
}

.home-accordion__body li {
  margin: 0.25rem 0;
  color: var(--foreground);
}

/* ==========================================================================
   BLOG PAGE UNIQUE STYLES
   ========================================================================== */

.blog-challenge {
  position: relative;
  background: var(--sidebar) url('./images/heroboxbackground.png') center/cover no-repeat;
  overflow: visible;
  padding: 20px;
  border-bottom: 1px solid #0f98ca;
}

.blog-challenge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--sidebar);
  opacity: 0.6;
  z-index: 0;
}

.blog-challenge__bg {
  display: none; /* No longer needed */
}

.blog-challenge .container {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
}

/* Blog challenge section paragraphs (hero section) */
.blog-challenge p {
  color: var(--sidebar-foreground) !important;
}

.blog-challenge .lead {
  color: var(--sidebar-foreground) !important;
}


.blog-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.blog-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.blog-substack-container {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.blog-substack-content {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary);
  position: relative;
  z-index: 1;
}

.blog-substack-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.blog-substack-intro h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.blog-substack-intro p {
  color: var(--foreground);
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.8;
}

.blog-substack-posts-container {
  margin: 2rem 0;
  min-height: 120px;
}

.blog-substack-posts-container .loading {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--foreground);
  font-style: italic;
  opacity: 0.7;
}

/* Substack Posts Grid */
.blog-substack-posts-grid {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
  max-height: 1200px;
  overflow-y: auto;
}

.blog-substack-post-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
}

.blog-substack-post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-color: var(--chart-2);
}

.blog-post-link {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}

.blog-post-link:hover {
  text-decoration: none;
  color: inherit;
}

.blog-substack-post-card:hover .blog-post-title {
  color: var(--primary);
}

.blog-substack-post-card:hover .blog-read-more {
  color: var(--foreground);
}

.blog-post-image {
  width: 30%;
  min-width: 120px;
  height: 120px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 8px 0 0 8px;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.blog-substack-post-card:hover .blog-post-image img {
  transform: scale(1.05);
}

.blog-post-content {
  padding: 0.2rem;
  flex: 1;
}

.blog-post-meta {
  margin-bottom: 0.8rem;
}

.blog-post-date {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.blog-post-title {
  margin: 0;
  color: var(--foreground);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.blog-post-excerpt {
  color: var(--foreground);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.blog-read-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.blog-substack-cta {
  text-align: center;
  background: linear-gradient(135deg, #f8faff, #e8f4fd);
  padding: 1.5rem;
  border-radius: 8px;
  /* border-left: 4px solid var(--primary); */
  position: relative;
  z-index: 10;
}

.blog-substack-cta .btn--primary {
  position: relative;
  z-index: 11;
  pointer-events: auto;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  border: none;
}

.blog-substack-cta .btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.blog-substack-cta p {
  margin-bottom: 1.5rem;
  color: var(--foreground);
  font-style: italic;
  opacity: 0.8;
}

/* Blog Loading Styles */
  .blog-loading {
    text-align: center;
    padding: 2rem;
    color: var(--foreground);
  }

  .loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .blog-error {
    text-align: center;
    padding: 2rem;
    color: var(--foreground);
    background: var(--muted);
    border-radius: 8px;
    margin: 1rem 0;
  }

  .blog-error a {
    color: var(--primary);
    text-decoration: none;
  }

  .blog-error a:hover {
    text-decoration: underline;
  }

/* Override challenge section text colors for blog-substack-content */
.blog-substack-content p {
  color: var(--foreground) !important;
}

.blog-substack-content .lead {
  color: var(--foreground) !important;
}

.blog-substack-content .loading {
  color: var(--foreground) !important;
}

/* Substack Fallback Styles */
.blog-substack-fallback {
  background: linear-gradient(135deg, #f8faff, #e8f4fd);
  border-radius: 8px;
  padding: 2rem;
  border-left: 4px solid var(--primary);
}

.blog-substack-preview h4 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.blog-substack-preview p {
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  opacity: 0.8;
}

.blog-preview-features {
  margin: 1.5rem 0;
}

.blog-feature-item {
  background: rgba(255, 255, 255, 0.7);
  padding: 1rem;
  margin-bottom: 0.8rem;
  border-radius: 6px;
  border-left: 3px solid var(--primary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.blog-early-subscriber-cta {
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.blog-early-subscriber-cta p {
  margin-bottom: 1rem;
  color: var(--foreground);
  font-weight: 500;
}

/* Stay Connected Section */
#stay-connected {
  position: relative;
  z-index: 5;
}


/* ==========================================================================
   LEGAL PAGES STYLES (Privacy, Terms, Accessibility, Cookie Policy)
   ========================================================================== */

.legal-page-challenge {
  position: relative;
  background: var(--sidebar) url('./images/heroboxbackground.png') center/cover no-repeat;
  overflow: visible;
  padding: 2rem 20px;
  border-bottom: 1px solid #0f98ca;
  min-height: auto;
}

.legal-page-challenge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--sidebar);
  opacity: 0.6;
  z-index: 0;
}

.legal-page-challenge .container {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.legal-page-content {
  background: white;
  padding: 3rem 2rem;
  margin: 2rem auto;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary);
}

.legal-page-content .legal-content {
  line-height: 1.6;
  color: #374151;
}

.legal-page-content .legal-content h3 {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.5rem;
}

.legal-page-content .legal-content h3:first-child {
  margin-top: 0;
}

.legal-page-content .legal-content h4 {
  color: var(--foreground);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}

.legal-page-content .legal-content p {
  margin-bottom: 1rem;
  color: #4b5563;
}

.legal-page-content .legal-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-page-content .legal-content li {
  margin-bottom: 0.5rem;
  color: #4b5563;
}

.legal-page-content .legal-content strong {
  color: var(--foreground);
  font-weight: 600;
}

.legal-page-content .legal-content a {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.legal-page-content .legal-content a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Legal Hub Page Specific Styles */
.legal-documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.legal-document-card {
  background: #f8f9fa;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.legal-document-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.legal-document-card:hover h4 {
  color: var(--primary);
}

.legal-document-card h4 {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.2s ease;
}

.legal-document-card p {
  margin: 0 0 1.5rem 0;
  color: #4b5563;
  line-height: 1.6;
  flex-grow: 1;
}

.legal-document-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

.legal-document-category {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  width: fit-content;
}

.legal-document-updated {
  font-size: 0.875rem;
  color: #6b7280;
  font-style: italic;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.right-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.right-card:hover {
  border-color: var(--chart-2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.right-card h4 {
  margin: 0 0 1rem 0;
  color: var(--foreground);
  font-size: 1.125rem;
}

.right-card p {
  margin: 0 0 1.5rem 0;
  color: #4b5563;
  font-size: 0.9rem;
  flex-grow: 1;
}

.right-card .btn {
  margin-top: auto;
  align-self: center;
}

.right-card .btn:hover {
  color: var(--foreground);
}

.contact-cta {
  text-align: center;
/*   margin: 3rem 0 2rem 0;
  padding: 2rem; 
  background: #f8f9fa;*/
  border-radius: 12px;
/*   border: 2px solid var(--primary); */
}

/* Mobile responsive for legal pages */
@media (max-width: 768px) {
  .legal-page-challenge {
    padding: 1.5rem 20px;
  }
  
  .legal-page-challenge .container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .legal-page-content {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
  
  .legal-page-content .legal-content h3 {
    font-size: 1.125rem;
  }
  
  .legal-page-content .legal-content h4 {
    font-size: 1rem;
  }

  .legal-documents-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .legal-document-card {
    padding: 1.5rem;
  }

  .rights-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .right-card {
    padding: 1.25rem;
  }
}

/* ==========================================================================
   CONTACT PAGE UNIQUE STYLES
   ========================================================================== */

.contact-challenge {
  position: relative;
  background: var(--sidebar) url('./images/heroboxbackground.png') center/cover no-repeat;
  overflow: visible;
  padding: 4rem 20px;
  border-bottom: 1px solid #0f98ca;
}

.contact-challenge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--sidebar);
  opacity: 0.6;
  z-index: 0;
}

.contact-challenge__bg {
  display: none; /* No longer needed */
}

.contact-challenge .container {
  position: relative;
  z-index: 1;
}

.contact-challenge p,
.contact-challenge .lead {
  color: var(--sidebar-foreground) !important;
}


.contact-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Calendar Section Styling */
.calendar-section {
  text-align: center;
  padding: 2rem;
  /* background: rgba(255, 255, 255, 0.1); */
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 10;
}

.calendar-image {
  margin-bottom: 1.5rem;
  color: var(--chart-2);
}

.calendar-status {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--chart-2);
  margin-bottom: 2rem;
}

/* HubSpot Form Styling */
.hubspot-form-container {
  /* background: rgba(255, 255, 255, 0.1); */
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 10;
}

.hubspot-form-container .hs-form {
  color: var(--sidebar-foreground);
}

.hubspot-form-container .hs-form .hs-form-field label {
  color: var(--sidebar-foreground) !important;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.hubspot-form-container .hs-form .hs-form-field input,
.hubspot-form-container .hs-form .hs-form-field textarea,
.hubspot-form-container .hs-form .hs-form-field select {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 2px solid #e5e7eb !important;
  border-radius: 8px !important;
  padding: 1rem !important;
  color: var(--foreground) !important;
  width: 100% !important;
}

.hubspot-form-container .hs-form .hs-form-field input:focus,
.hubspot-form-container .hs-form .hs-form-field textarea:focus,
.hubspot-form-container .hs-form .hs-form-field select:focus {
  border-color: var(--primary) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(15, 152, 202, 0.1) !important;
}

.hubspot-form-container .hs-form .hs-submit input[type="submit"] {
  background: var(--primary) !important;
  color: white !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 1rem 2rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.hubspot-form-container .hs-form .hs-submit input[type="submit"]:hover {
  background: var(--primary) !important;
  opacity: 0.9 !important;
  transform: translateY(-1px) !important;
}

/* Contact Form Styling */
.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary);
}

.contact-form {
  position: relative;
  z-index: 10;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-input,
.form-textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: white;
  color: var(--foreground);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 93, 175, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  text-align: center;
  margin-top: 2rem;
}

/* Form validation messages */
.form-error-message,
.form-success-message {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  display: none;
}

.form-error-message[aria-hidden="false"],
.form-success-message[aria-hidden="false"] {
  display: block;
}

.form-error-message {
  background-color: var(--error-bg);
  color: var(--error);
  border: 1px solid var(--error-border);
}

.form-success-message {
  background-color: var(--success-bg);
  color: var(--success);
  border: 1px solid var(--success-border);
}

.field-error {
  color: var(--error);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  font-weight: 500;
  display: none;
}

.field-error[aria-hidden="false"] {
  display: block;
}

.form-input[aria-invalid="true"],
.form-textarea[aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .contact-form-container {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================================================
   BOOKING MODAL
   ========================================================================== */


/* ==========================================================================
   COOKIE CONSENT SYSTEM
   ========================================================================== */

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 3px solid var(--primary);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner__content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cookie-banner__text {
  flex: 1;
}

.cookie-banner__text h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

.cookie-banner__text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #6b7280;
}

.cookie-banner__actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  align-items: center;
  justify-content: center;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.cookie-modal__content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
  display: flex;
  flex-direction: column;
}

.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.cookie-modal__header h2 {
  margin: 0;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 600;
}

.cookie-modal__close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.cookie-modal__close:hover {
  background: #f3f4f6;
  color: #374151;
}

.cookie-modal__body {
  padding: 1rem 2rem 2rem 2rem;
  overflow-y: auto;
  flex: 1;
}

.cookie-modal__description {
  margin-bottom: 2rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Cookie Categories */
.cookie-category {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f9fafb;
}

.cookie-category__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cookie-category__header h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

.cookie-category__description {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #6b7280;
}

.cookie-category__details {
  margin: 0.75rem 0 0 0;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #555;
  border-left: 3px solid var(--primary);
}

.cookie-modal__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.current-cookies-list {
  margin-top: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.current-cookies-list h4 {
  margin: 0 0 1rem 0;
  color: var(--foreground);
  font-size: 1rem;
}

.current-cookies-list ul {
  margin: 0;
  padding-left: 1.5rem;
}

.current-cookies-list li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.current-cookies-list strong {
  color: var(--primary);
}

/* Cookie Toggle Switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  cursor: pointer;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}

.cookie-toggle__slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle__slider {
  background-color: var(--primary);
}

.cookie-toggle input:checked + .cookie-toggle__slider:before {
  transform: translateX(26px);
}

.cookie-toggle input:disabled + .cookie-toggle__slider {
  background-color: var(--primary);
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-toggle input:disabled + .cookie-toggle__slider:before {
  transform: translateX(26px);
}

.cookie-modal__actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

/* Secondary Button Style */
.btn--secondary {
  background: #f3f4f6;
  color: var(--foreground);
  border: 1px solid #d1d5db;
}

.btn--secondary:hover {
  background: #e5e7eb;
  border-color: #9ca3af;
  color: var(--foreground);
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
  .cookie-banner__content {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }

  .cookie-banner__actions .btn {
    flex: 1;
    min-width: 0;
  }

  .cookie-modal__content {
    width: 95%;
    margin: 1rem;
  }
  
  .cookie-modal__header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }
  
  .cookie-modal__body {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
  }
  
  .cookie-modal__header h2 {
    font-size: 1.25rem;
  }

  .cookie-modal__actions {
    flex-direction: column;
  }

  .cookie-category {
    padding: 1rem;
  }

  .cookie-category__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ==========================================================================
   LEGAL MODALS (Privacy, Terms, Cookie Policy)
   ========================================================================== */

.legal-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
  align-items: center;
  justify-content: center;
}

.legal-modal.active {
  display: flex;
}

.legal-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.legal-modal__content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
  display: flex;
  flex-direction: column;
}

.legal-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem 2rem;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  background: #fff;
  border-radius: 16px 16px 0 0;
  z-index: 1;
  margin: 0;
}

.legal-modal__header h2 {
  margin: 0;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 600;
}

.legal-modal__close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.legal-modal__close:hover {
  background: #f3f4f6;
  color: #374151;
}

.legal-modal__body {
  padding: 1rem 2rem 2rem 2rem;
  overflow-y: auto;
  flex: 1;
}

.legal-content {
  line-height: 1.6;
  color: #374151;
}

.legal-content h3 {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.5rem;
}

.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content h4 {
  color: var(--foreground);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem 0;
}

.legal-content p {
  margin-bottom: 1rem;
  color: #4b5563;
}

.legal-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: #4b5563;
}

.legal-content strong {
  color: var(--foreground);
  font-weight: 600;
}

.legal-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.legal-content a:hover {
  color: var(--chart-2);
  text-decoration: underline;
}

/* Responsive Legal Modals */
@media (max-width: 768px) {
  .legal-modal__content {
    width: 95%;
    margin: 1rem;
    max-height: 95vh;
  }
  
  .legal-modal__header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }
  
  .legal-modal__body {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
  }
  
  .legal-modal__header h2 {
    font-size: 1.25rem;
  }

  .legal-content h3 {
    font-size: 1.125rem;
  }

  .legal-content h4 {
    font-size: 1rem;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Tablet and Desktop Grid Layouts */
@media (min-width: 1024px) {
  
  .site-nav { 
    display: flex; 
  }
  

  .home-tabs { 
    display: grid; 
    grid-template-columns: 2fr 3fr; 
    gap: 2rem; 
    align-items: start; 
  }
  
  .accordions-interface { 
    display: none; 
  }

  .home-accordions { 
    display: none; 
  }

  /* Get Started Page Responsive */
  .get-started-tabs { 
    display: grid; 
    grid-template-columns: 3fr 4fr; 
    gap: 2rem; 
    align-items: start; 
  }
  
  .get-started-accordions { 
    display: none; 
  }


  /* Get Started Workflow Responsive */
  .get-started-workflow__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .get-started-workflow__success {
    order: -1;
  }


  /* About Us Page Responsive */
  .about-us-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-us-story__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
  }

}

@media (min-width: 769px) {
  .about-us-team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .about-us-team__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1300px;
  }

  .about-us-team-member {
    padding: 2rem;
  }


  /* About Us Inline Stats Responsive */
  .about-us-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .about-us-stat-number {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .grid-2 { 
    grid-template-columns: 1fr 1fr; 
  }
  
  .process__cards { 
    grid-template-columns: repeat(3, 30%); 
    justify-content: space-between; 
    align-items: stretch; 
  }
}

/* Mobile Process Section Adjustments */
@media (max-width: 768px) {
  .process__arrow { 
    display: none; 
  }
  
  .process__row { 
    /* margin: 0 auto;  */
    margin: 70px auto 0;
    position: relative;
    z-index: 0;
    
  }
  
  .process__cards { 
    /* margin: 2rem auto 0;  */
    margin: 0px auto 0;
    gap: 1rem; 
    align-items: start;
  }
  
  .pbox {
    height: auto;
  }
  
  .proofpoints .grid-2 { 
    grid-template-columns: 1fr; 
    gap: 1rem; 
  }

  .pboxcontainer{
    margin-top:30px;
  }

  .zoom-out-shape{
    display:none
  }

  /* About Us Mobile Styles */
  .about-us-story__stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-us-team__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
    margin: 0;
  }

  /* Diagram Responsive */
  .diagram__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .get-started-workflow .diagram__content {
    grid-template-columns: 1fr;
  }

  .about-us-stat {
    padding: 1.5rem;
  }

  .about-us-stat h3 {
    font-size: 2rem;
  }

  .about-us-value {
    padding: 1.5rem;
  }

  .about-us-value__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .about-us-team-member {
    padding: 1.5rem;
  }

  .about-us-team-member__placeholder {
    width: 120px;
    height: 120px;
  }

  .about-us-team-member__initials {
    font-size: 2rem;
  }

  .about-us-team-member__info h3 {
    font-size: 1.25rem;
  }

  .about-us-team-member__info h4 {
    font-size: 0.9rem;
  }

  .about-us-team-member__info p {
    font-size: 0.9rem;
  }


  /* Blog Page Responsive */
  .blog-grid-2 {
    grid-template-columns: 1fr;
  }

  .blog-card {
    padding: 1.5rem;
  }

  .blog-substack-container {
    margin: 0 auto 2rem;
  }

  .blog-substack-content {
    padding: 1.5rem;
    margin: 0 1rem;
  }

  .blog-substack-intro h3 {
    font-size: 1.3rem;
  }

  .blog-substack-intro p {
    font-size: 1rem;
  }

  .blog-substack-posts-grid {
    gap: 1rem;
  }

  .blog-post-content {
    padding: 0.5rem;
    min-height: auto;
  }

  .blog-substack-post-card {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
  }

  .blog-post-image {
    width: 100%;
    height: 150px;
    min-width: auto;
    border-radius: 8px;
  }

  .blog-post-link {
    flex-direction: column;
    gap: 0.5rem;
  }

  .blog-substack-cta {
    padding: 1rem;
  }

  .blog-post-title {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
  }

  .blog-post-excerpt {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
  }

  .blog-read-more {
    font-size: 0.8rem;
  }


  /* Contact Page Responsive */
  .contact-grid-2 {
    grid-template-columns: 1fr;
  }


}

/* Tablet Process Section Adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
  .process__arrow { 
    max-width: 500px; 
    margin-left: 0; 
    display:none;
  }
  
  .process__row { 
    max-width: 500px; 
    margin: 70px auto 0;
  }
  
  .process__cards { 
    max-width: 500px; 
    display: block;
    
  }

  .pboxcontainer{
    margin-top:30px;
  }

  .zoom-out-shape{
    display:none
  }
}

/* Mobile responsive heading for Align | Activate | Accelerate */
/* Hide line breaks and separator on desktop */
.heading--2 .mobile-break {
  display: none;
}

.heading--2 .mobile-separator {
  display: none;
}

/* Show line breaks, separator, and hide separators on mobile */
@media (max-width: 768px) {
  .heading--2 .mobile-break {
    display: inline !important;
  }
  
  .heading--2 .mobile-hide {
    display: none !important;
  }
  
  .heading--2 .mobile-separator {
    display: block !important;
    width: 60px;
    height: 2px;
    background-color: var(--chart-2);
    margin: 0.75rem auto;
    border-radius: 1px;
    position: relative;
    top: 0.25rem;
  }
}