/*
Theme Name: Tactik 2.0
Author: Jeremiah
Description: Starter stylesheet for my Tactik 2.0 theme
Version: 1.0
*/
html {
  scroll-padding-top: 90px;   /* ← Put your fixed header height here + a little extra */
  scroll-behavior: smooth;
}

/* 2. Extra safety with scroll-margin (works even better in some cases) */
[id] {
  scroll-margin-top: 90px;
}


/* =Header
-------------------------------------------------------------- */
.site-header {
    color: #fff;
    padding: 0px;
    height: 120px;
}
.site-header a {
    color: #fff;
    text-decoration: none;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #061033;
    box-shadow: none;               /* ← important: no shadow by default */
    transition: box-shadow 0.3s ease; /* smooth fade-in */
}

.fixed-header.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* subtle shadow – adjust values */
}
/* Announcement marquee bar – fixed at very top */
.announcement-bar {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 1001;                    /* above the main header */
}

/* Scrolling marquee animation */
.marquee span {
  display: inline-block;
  padding-left: 100%;               /* start off-screen right */
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Main header content (below marquee) */
.header-main {
  padding: 12px 0;                  /* vertical padding for logo/nav */
}

/* Important: Push main content down so it doesn't hide under fixed header */
body {
  padding-top: 120px;               /* ← ADJUST this value! Measure total header height */
}

/* Or more precise – target the content wrapper after header */
.site-content, main, .container.main-content {  /* common selectors – pick yours */
  /*margin-top: 120px;    */
}

/* Mobile adjustments (hamburger shows, nav collapses) */
@media (max-width: 991px) {
  .main-nav {
    display: none;                  /* hide desktop nav */
    /* your mobile menu toggle JS should show it */
  }

  .menu-toggle {
    display: block;
  }

  .btn-group {
    display: none;                  /* hide duplicate buttons on mobile if needed */
  }
}


.fixed-header.scrolled .svg-icon {
  height: 30px;                     /* smaller logo on scroll */
}

/* =Navigation
-------------------------------------------------------------- */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-navigation li {
    display: inline-block;
    margin-right: 15px;
}
.main-navigation a {
    color: #fff;
    text-decoration: none;
}
.main-navigation a:hover {
    text-decoration: underline;
}

/* =Content
-------------------------------------------------------------- */

/* =Footer
-------------------------------------------------------------- */
.site-footer {
    background: #061033;
    padding: 15px;
    font-size: 14px;
    color: #555;
}


body {
    font-family: 'Inter', sans-serif;
    background: #061033;
}

img.svg-icon {
    width: 120px;
    height: auto; /* keeps proportions */
}

body,
p,
article,
li {
  line-height: 1.5;       /* unitless – most recommended default */
  /* or */
  line-height: 1.6;       /* slightly more open – very popular in 2025 */
  /* or */
  line-height: 1.55;      /* balanced middle ground */
}


.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  color: #00CFCD;
  padding: 10px;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.marquee span {
  display: inline-block;
  padding-left: 100%; /* start off-screen */
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.white-text {
  color: #fff;
}

.white-f-text {
  color: #B2B5C0;
}

.teal-text {
  color: #00CFCD;
}

.red-text {
  color: #ff4e4e;
}

.purple-text {
  color: #ff3dff;
}

.green-text {
  color: #2ECC71;
}


.blue-text {
  color: hsl(230 100% 70% / var(--tw-text-opacity, 1));
}

.text-center-align {
  text-align: center;
}
.text-align-right {
  text-align: right;
}

.text-align-left {
  text-align: left;
}

.text-align-just {
  text-align: justify;
}

.dark-bkg {
  background: #081648;
}

.spread-out {
  justify-content: space-between; /* items spread out automatically */
}

.no-text-deco {
  text-decoration: none;
}

.no-text-deco:hover {
 text-decoration: none;
}

.uppercase {
  text-transform: uppercase;
}

.full-width {
  width: 100%;
}

.hug-content {
  display: inline-flex !important;
  width: auto !important;
  min-width: fit-content !important;
  align-self: flex-start !important;   /* ← no centering */
}

.force-center {
  display: inline-flex !important;
  align-self: center !important;   /* or flex-start / auto */
}

.no-pointer {
  cursor: default!important;
}

.max-w-370px {
  min-width: 370px;
  width: 370px;
}

.max-w-960px {
  max-width: 960px;
}


.max-w-1152px {
  max-width: 1152px;
}

.max-w-100 {
  width: 100%;
}

.max-w-1440px {
  max-width: 1440px;
}


.display-grid {
  display: grid;
}

.display-inline-block {
  display: inline-block;
}

.right-column {
    justify-self: end; 
    text-align: right;
}

.align-left-middle {
  display: inline-flex;
      align-items: center;
      justify-content: center;
}


.margin-auto {
  margin: 0 auto;
}

.fit-content {
  width: fit-content;
}



.gridcol-1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .box-sizing-border {
    box-sizing: border-box;
  }

  .but-align {
    justify-content: center;
  }

  .strikeout-text {
    text-decoration: line-through;
    color: #ffffff3b
  }



.glow-top-teal {
  box-shadow: 
    0 0 8px rgba(0, 207, 205, 0.6),
    0 0 20px rgba(0, 207, 205, 0.3),
    0 0 40px rgba(0, 207, 205, 0.12);
  transition: box-shadow 0.3s ease-in-out;
}

/* Font size utilities */
.text-xs   { font-size: 0.75rem;   } /* 12px */
.text-sm   { font-size: 0.875rem;  } /* 14px */
.text-base { font-size: 1rem;      } /* 16px */
.text-lg   { font-size: 1.125rem;  } /* 18px */
.text-xl   { font-size: 1.25rem;   } /* 20px */
.text-2xl  { font-size: 1.5rem;    } /* 24px */
.text-3xl  { font-size: 1.875rem;  } /* 30px */
.text-4xl  { font-size: 2.25rem;   } /* 36px */
.text-5xl  { font-size: 3rem;      } /* 48px */
.text-6xl  { font-size: 3.75rem;   } /* 60px */
.text-7xl  { font-size: 4.5rem;    } /* 72px */
.text-8xl  { font-size: 6rem;      } /* 96px */
.text-9xl  { font-size: 8rem;      } /* 128px */


.m-0   { margin: 0; }
.m-1   { margin: 0.25rem; }   /* 4px */
.m-2   { margin: 0.5rem; }    /* 8px */
.m-3   { margin: 0.75rem; }   /* 12px */
.m-4   { margin: 1rem; }      /* 16px */
.m-5   { margin: 1.25rem; }   /* 20px */
.m-6   { margin: 1.5rem; }    /* 24px */
.m-8   { margin: 2rem; }      /* 32px */
.m-10  { margin: 2.5rem; }    /* 40px */
.m-12  { margin: 3rem; }      /* 48px */
.m-16  { margin: 4rem; }      /* 64px */

/* Margin Left */
.ml-0   { margin-left: 0; }
.ml-1   { margin-left: 0.25rem; }  /* 4px */
.ml-2   { margin-left: 0.5rem; }   /* 8px */
.ml-3   { margin-left: 0.75rem; }  /* 12px */
.ml-4   { margin-left: 1rem; }     /* 16px */
.ml-5   { margin-left: 1.25rem; }  /* 20px */
.ml-6   { margin-left: 1.5rem; }   /* 24px */
.ml-8   { margin-left: 2rem; }     /* 32px */
.ml-10  { margin-left: 2.5rem; }   /* 40px */
.ml-12  { margin-left: 3rem; }     /* 48px */
.ml-16  { margin-left: 4rem; }     /* 64px */

/* Margin Right */
.mr-0   { margin-right: 0; }
.mr-1   { margin-right: 0.25rem; }  /* 4px */
.mr-2   { margin-right: 0.5rem; }   /* 8px */
.mr-3   { margin-right: 0.75rem; }  /* 12px */
.mr-4   { margin-right: 1rem; }     /* 16px */
.mr-5   { margin-right: 1.25rem; }  /* 20px */
.mr-6   { margin-right: 1.5rem; }   /* 24px */
.mr-8   { margin-right: 2rem; }     /* 32px */
.mr-10  { margin-right: 2.5rem; }   /* 40px */
.mr-12  { margin-right: 3rem; }     /* 48px */
.mr-16  { margin-right: 4rem; }     /* 64px */


/* Margin Top */
.mt-0   { margin-top: 0; }
.mt-1   { margin-top: 0.25rem; }  /* 4px */
.mt-2   { margin-top: 0.5rem; }   /* 8px */
.mt-3   { margin-top: 0.75rem; }  /* 12px */
.mt-4   { margin-top: 1rem; }     /* 16px */
.mt-5   { margin-top: 1.25rem; }  /* 20px */
.mt-6   { margin-top: 1.5rem; }   /* 24px */
.mt-8   { margin-top: 2rem; }     /* 32px */
.mt-10  { margin-top: 2.5rem; }   /* 40px */
.mt-12  { margin-top: 3rem; }     /* 48px */
.mt-16  { margin-top: 4rem; }     /* 64px }

/* Margin Bottom */
.mb-0   { margin-bottom: 0; }
.mb-1   { margin-bottom: 0.25rem; }  /* 4px */
.mb-2   { margin-bottom: 0.5rem; }   /* 8px */
.mb-3   { margin-bottom: 0.75rem; }  /* 12px */
.mb-4   { margin-bottom: 1rem; }     /* 16px */
.mb-5   { margin-bottom: 1.25rem; }  /* 20px */
.mb-6   { margin-bottom: 1.5rem; }   /* 24px */
.mb-8   { margin-bottom: 2rem; }     /* 32px */
.mb-10  { margin-bottom: 2.5rem; }   /* 40px */
.mb-12  { margin-bottom: 3rem; }     /* 48px */
.mb-16  { margin-bottom: 4rem; }     /* 64px }


/* Horizontal padding (left + right) */
.px-0  { padding-left: 0; padding-right: 0; }
.px-1  { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2  { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3  { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4  { padding-left: 1rem; padding-right: 1rem; }
.px-5  { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6  { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8  { padding-left: 2rem; padding-right: 2rem; }

/* Vertical padding (top + bottom) */
.py-0  { padding-top: 0; padding-bottom: 0; }
.py-1  { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2  { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3  { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4  { padding-top: 1rem; padding-bottom: 1rem; }
.py-5  { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6  { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8  { padding-top: 2rem; padding-bottom: 2rem; }


/* Gap spacing scale */
.gap-0   { gap: 0; }
.gap-1   { gap: 0.25rem; }  /* 4px */
.gap-2   { gap: 0.5rem; }   /* 8px */
.gap-3   { gap: 0.75rem; }  /* 12px */
.gap-4   { gap: 1rem; }     /* 16px */
.gap-5   { gap: 1.25rem; }  /* 20px */
.gap-6   { gap: 1.5rem; }   /* 24px */
.gap-8   { gap: 2rem; }     /* 32px */
.gap-10  { gap: 2.5rem; }   /* 40px */
.gap-12  { gap: 3rem; }     /* 48px */
.gap-12-a  { gap: 3.3rem; } /* 50px */
.gap-16  { gap: 4rem; }     /* 64px */
.gap-20  { gap: 5rem!important; }     /* 80px */


/* Classic & most used values */
.border-radius-none     { border-radius: 0; }
.border-radius-xs       { border-radius: 2px; }
.border-radius-sm       { border-radius: 4px; }
.border-radius-md       { border-radius: 6px; }    /* very common default */
.border-radius-lg       { border-radius: 8px; }    /* modern card / button sweet spot */
.border-radius-xl       { border-radius: 12px; }   /* popular in 2024–2026 UIs */
.border-radius-2xl      { border-radius: 16px; }
.border-radius-3xl      { border-radius: 24px; }
.border-radius-full     { border-radius: 9999px; } /* perfect circle / pill */

/* Pill / button style (very common) */
.border-radius-pill     { border-radius: 9999px; }

/* Softer, Apple-like modern feel */
.border-radius-apple    { border-radius: 18px; }   /* ≈ iOS / macOS buttons */

/* Very rounded / neumorphic / blob style */
.border-radius-blob     { border-radius: 40% 60% 70% 30% / 60% 40% 30% 70%; } /* organic */
.border-radius-super    { border-radius: 50%; }    /* perfect circle (needs equal width/height) */

/* Directional (one side only) */
.border-radius-top      { border-radius: 8px 8px 0 0; }
.border-radius-bottom   { border-radius: 0 0 8px 8px; }
.border-radius-left     { border-radius: 8px 0 0 8px; }
.border-radius-right    { border-radius: 0 8px 8px 0; }

/* Only specific corners */
.border-radius-tl       { border-top-left-radius: 12px; }
.border-radius-tr       { border-top-right-radius: 12px; }
.border-radius-bl       { border-bottom-left-radius: 12px; }
.border-radius-br       { border-bottom-right-radius: 12px; }

/* Elliptical (different horizontal vs vertical radius) */
.border-radius-ellipse  { border-radius: 50% / 30%; }


.font-thin {
  font-weight: 100;
}

.font-extralight {
  font-weight: 200;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

.text-italic {
  font-style: italic;
}

.line-height-normal {
  line-height: normal;
}

.capital-case {
  text-transform: uppercase;
}

/* Base (all screen sizes) */
.order-first  { order: -1    !important; }
.order-last   { order: 6     !important; }   /* 6 = one more than the max numbered order (0–5) */

/* Numbered orders (0–5) – these are the foundation */
.order-0      { order: 0     !important; }
.order-1      { order: 1     !important; }
.order-2      { order: 2     !important; }
.order-3      { order: 3     !important; }
.order-4      { order: 4     !important; }
.order-5      { order: 5     !important; }

.opacity-0    { opacity: 0; }
.opacity-10   { opacity: 0.1; }
.opacity-20   { opacity: 0.2; }
.opacity-30   { opacity: 0.3; }
.opacity-40   { opacity: 0.4; }
.opacity-50   { opacity: 0.5; }
.opacity-60   { opacity: 0.6; }
.opacity-70   { opacity: 0.7; }
.opacity-75   { opacity: 0.75; }
.opacity-80   { opacity: 0.8; }
.opacity-90   { opacity: 0.9; }
.opacity-95   { opacity: 0.95; }
.opacity-100  { opacity: 1; }


/*Menu CSS*/

/* Layout */
.center-box {
  display: flex;
  justify-content: space-between; /* logo left, hamburger right */
  align-items: center;
}

.center-middle {
   display: flex;
   justify-content: center;
   align-items: flex-start;
}

.center-content {
    display: flex;
    flex-direction: column; 
    justify-content: center; /* centers horizontally */
    align-items: center;     /* centers vertically */
}

.center-grid-left {
  display: grid;
  justify-content: flex-start;
  align-items: left;
}

.horizontal-stack {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.vertical-stack, .vertical-stack3 {
  display: flex;
  flex-direction: column;  /* stack children vertically */
}

.align-left {
  align-items: left;
}

.align-self-left {
  align-self: flex-start;
}

.custom-box-display {
  display: none;
}

.arrow-center {
  width: 100%;
      display: flex;
      justify-content: center;
      padding: 0; /* Remove padding that might shift the SVG */
}



/* Utility class for full width */
.full-width {
  width: 100%;
}

/* Utility class for box sizing */
.border-box {
  box-sizing: border-box;
}



.main-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 40px;
}



.main-nav > ul > li {
  position: relative;
}

.main-nav a {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #B2B5C0;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: normal;
}

.main-nav a:hover {
  color: #fff;
}

/* Submenu */

ul.submenu {
  margin-left: 0;
}
.submenu {
  list-style: none;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #061442;
  min-width: 220px;
  padding: 10px 0;
  flex-direction: column;
  border-radius: 4px;
}


.submenu li {
  padding: 5px 15px;
}

.submenu li a {
  color: #fff;
  font-size: 13px;
  padding: 8px 4px;
}

.submenu li a:hover {
  color: #061033;
  background:#00CFCD;
  border-radius: 4px;

}

/* Show submenu on hover */
.main-nav li:hover > .submenu {
  display: flex;
}



.has-submenu.active > .submenu {
  display: flex; /* show submenu when active */
}


/* Default chevron style */
.has-submenu > a i.ph {
  transition: transform 0.3s ease; /* smooth rotation */
}

/* Rotate when active OR on hover */
.has-submenu.active > a i.ph,
.has-submenu:hover > a i.ph {
  transform: rotate(180deg);
}


.custom-btn {
    background: linear-gradient(to right, #00e6e4, #00b8b8); /* gradient left → right */ 
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: normal;
}

.custom-btn:hover {
  background: linear-gradient(to left, #00e6e4, #00b8b8); /* gradient left → right */ 
}

.custom-btn-outline {
  background: none;            /* no background */
  color: #fff;                 /* white text */
  border: none;      /* optional: white border for visibility */
  border-radius: 12px;          /* rounded corners */
      padding: 14px 18px;
  font-size: 16px;             /* adjust text size */
  cursor: pointer;             /* pointer on hover */
  transition: all 0.3s ease;
  font-weight: normal;
}

.custom-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1); /* subtle hover effect */
}


.demo-button {
  padding: 12px 32px;
  border-radius: 9999px;
  font-size: 1em;
  font-weight: 500;
  display: inline-flex;        /* treat button as flex container */
  align-items: center;         /* vertically center icon + text */
  justify-content: center;     /* center content horizontally if needed */
  gap: 0.5rem;    
}

.demo-button-1 {
  background: none;
  border: 1px solid #00CFCD;
  color: #00CFCD;
  transition: background-color 0.3s ease, color 0.3s ease; /* animate both */
}

.demo-button-1:hover {
  background: rgba(0, 207, 205, 0.2); /* 70% opacity */
  color: #fff;
  cursor: pointer;
}

.demo-button-2 {
  background: rgba(0, 207, 205);
  color: #fff;
  border:none;
  transition: background-color 0.3s ease, color 0.3s ease; /* animate both */
  text-decoration: none;
  align-self: center;
}

.demo-button-2:hover {
  background: rgba(0, 207, 205, 0.9);
   color: #fff;
  cursor: pointer;
  text-decoration: none;
}

/* Animate the caret icon */
.demo-button-2 i {
  transition: transform 0.3s ease; /* smooth movement */
}

.demo-button-2:hover i {
  transform: translateX(4px); /* move caret 4px to the right */
}

.demo-button-3 {
  background: rgb(0 207 205 / 8%);
  color: #fff;
  border: 1px solid #ffffff1f;
  transition: background-color 0.3s ease, color 0.3s ease; /* animate both */
  text-decoration: none;
}

.demo-button-3:hover {
  background: rgb(0 207 205 / 10%);
  cursor: pointer;
}


.demo-button-4 {
  background: rgba(0, 207, 205);
  color: #fff;
  border:none;
  transition: background-color 0.3s ease, color 0.3s ease; /* animate both */
  text-decoration: none;
}

.demo-button-4:hover {
  background: rgba(0, 207, 205, 0.9);
   color: #fff;
  cursor: pointer;
  text-decoration: none;
}


.btn-group {
  display: flex;
  gap: 12px;          /* space between buttons */
  justify-content: flex-start; /* align left → right */
  align-items: center;
}


.button-align1 {
  height: 19px;
  gap: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Hamburger button */
.menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none; /* hidden on desktop */
}

/* Nav hidden by default on mobile */
.main-nav {
  display: none;
  width: auto;     /* don’t force full width */

}

/* Show nav when active */
.main-nav.active {
  display: block;
  position: absolute;   /* dropdown style */
  top: 100%;            /* below header */
  left: 0;
  right: 0;
  background: #061442;
  padding: 20px;
  border-radius: 6px;
  z-index: 1000;

}

.text-block {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00CFCD;
  margin-bottom: 1.5rem;
}

.heading-text {
  font-size: 3.5rem;         /* text-4xl */
  letter-spacing: -0.015em;   /* tracking-tight */
  line-height: 1.25;          /* leading-tight */
  margin: 0 0;
}

.body-text {
  font-size: 1rem;              /* text-base */
  max-width: 56rem;             /* max-w-4xl */
  margin-left: auto;            /* mx-auto */
  margin-right: auto;           /* mx-auto */
  margin-bottom: 3rem;          /* mb-12 */
}


.chevron-icon {
  font-size: 0.6em; /* only affects chevron icons */
  vertical-align: middle;
}


.video-thumbnail {
  width: 894px;
  height: 502px;
  border: 1px solid #093d5c;
  border-radius: 24px;
}


.circle-box {
  width: 4rem;                     /* w-16 */
  height: 4rem;                    /* h-16 */
  border-radius: 50%;              /* rounded-full */
  background: rgba(0, 207, 205, 0.1);
  display: flex;                   /* flex */
  align-items: center;             /* items-center */
  justify-content: center;         /* justify-center */
  margin-left: auto;               /* mx-auto */
  margin-right: auto;              /* mx-auto */
  margin-bottom: 1rem;             /* mb-4 */
  border: 1px solid #093d5c;
}


.circle-box i {
  font-size: 2em;
  color:#00CFCD;
}


.section-1 {
  padding: 48px 0px;
  background: #081648;
  overflow: hidden;

}


.section-2, .section-3, .section-4, .section-5, .section-6, .section-7 {
  padding: 48px 0px;
  overflow: hidden;
}

.section-6-light {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  background: #081648;
  background-image:radial-gradient(100% 100% at 50% 0%, rgba(255, 255, 255, 0.07) 0%, rgba(29, 112, 118, 0.00) 100%);
}

.grid-rev {
  background: #06103347;
  padding: 16px;
  border-radius: 12px;
  border:1px solid #b2b5c030;
}


.problem-list {
  padding: 0 0 0 20px;
  margin: 0;
}
.problem-list li {
  color: #B2B5C0;
  margin-bottom: 6px;
  font-size: 12px;
}


.icon-box {
 width: 40px;
 height: 40px;
 background: rgba(179, 0, 0, 0.2);
 border-radius: 12px;

}

.teal-bkg-box {
      background-color: rgba(0, 230, 226, 0.1);
}

.grid-9a {
  display: grid;
  grid-template-columns: repeat(9, 1fr); /* 9 equal columns */
  grid-auto-rows: minmax(80px, auto);
  grid-template-rows: 1fr;               /* single row */
  gap: 10px;                             /* spacing between items */
}

.grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 24px;
}

.grid-layout-2a {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 44px;
  align-items: stretch;
}


.grid-layout-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
  align-items: stretch;
}

.special-grid-layout-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}


.quote-builder-grid {
  display: grid;
    grid-template-columns: 3fr 1fr;
    align-items: stretch;
    gap: 44px;
}




.box {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.box-icon {
  background: #06103347;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 18px;
  border-radius: 8px;
  border: 1px solid #b2b5c030;
  font-weight: bold;
}

.box-icon-2 {
  background: #00e6e21a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 18px;
  border-radius: 8px;
  border: 1px solid #00e6e233;
  font-weight: bold;
}

.box-icon-3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;  
    height: 2.5rem;
    border-radius: 0.75rem; 
    background: rgba(0, 230, 226, 0.1); 
    color: rgb(0, 207, 205);
  }

  .demo-box-icon {
    background: #00e6e21a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 16px;
    font-weight: bold;
    width: 3rem;  
    height: 3rem;
  }

.icon-label {
  font-size: 0.875rem;
  text-align: center;
}

.icon-block {
  display: flex;
  flex-direction: column; /* stack vertically */
  align-items: center;
  gap: 8px; /* space between icon and label */
}

.custom-box, .custom-box2, .custom-box3 {
  display: inline-flex;
  align-items: center; 
  justify-content: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 10px;
}

.red-box-custom {
    background-color: rgba(179, 0, 0, 0.1);
    border: 1px solid rgba(179, 0, 0, 0.2);
}

.green-box-custom {
    background-color: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(88, 214, 141, 0.2);
}

.teal-box-custom {
    background-color: rgba(0, 230, 226, 0.1);
    border: 1px solid rgba(0, 230, 226, 0.2);
}

.purple-box-custom {
    background-color: rgba(175, 87, 219, 0.1);
    border: 1px solid rgba(175, 87, 219, 0.2);
}

.blue-box-custom {
  background-color: #6680ff57;
  border: 1px solid rgba(102, 128, 255, 0.2);
}


.custom-text {
  font-weight: 500;
  color: #ff6161;

}


.grid-3a {
  display: grid;
  grid-template-columns: 1fr 1fr 9fr; /* third column is bigger */
  gap: 16px;
}

.grid-5a {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 equal columns */
  gap: 16px; /* spacing between boxes */
}

.grid-5arrow {
    display: grid;
    grid-template-columns: 1fr 44px 1fr 44px 1fr; /* 3 boxes + 2 arrow/connector spaces */
    align-items: center;
    width: 100%;
}





.logo-box {
  width: 39px;
  height: 36px;
  border-radius: 0.5rem; /* 8px */
  background: #00CFCD;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-img {
  width: 1.25rem;   /* 20px */
  height: 1.25rem;  /* 20px */
}

.status-box {
  margin-left: auto;              /* ml-auto */
  display: flex;                  /* flex */
  align-items: center;            /* items-center */
  gap: 0.375rem;                  /* gap-1.5 → 6px */
}

.status-dot {
  width: 0.5rem;                  /* w-2 → 8px */
  height: 0.5rem;                 /* h-2 → 8px */
  border-radius: 50%;             /* rounded-full */
  background-color: #00CFCD;      /* bg-primary */
  animation: pulse 1.5s infinite; /* animate-pulse */
}

.status-text {
  font-size: 0.75rem;             /* text-xs → 12px */
  font-weight: 500;               /* font-medium */
  color: #00CFCD;                 /* text-primary */
  /*display: none;                */
}


/* Pulse animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}


.custom-bullets-alt {
    list-style: none;          /* remove default bullets */
    padding-left: 1.4em;
  }

  .custom-bullets-alt li {
    position: relative;
  }

  .custom-bullets-alt li::before {
    content: "•";              /* Unicode bullet (disc) — or try ◦ ▸ ★ etc. */
    position: absolute;
    left: -1.1em;
    color: #00CFCD;            /* bullet color */
  }


  .link-with-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00CFCD;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
  }

  .link-with-arrow:hover {
    gap: 0.75rem;
  }

  .link-with-arrow svg {
    width: 1rem;
    height: 1rem;
  }

  .link-with-arrow:hover {
    color: #00b3b1;
    text-decoration: none;
  }


  .card-hover {
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #b2b5c030;
    transition: all 0.35s ease;
    cursor: pointer; 
  }

  .card-hover:hover {
    border-color: #00CFCD;
    box-shadow: 
      0 0 12px 4px rgba(0, 207, 205, 0.18),
      0 0 24px 8px rgba(0, 207, 205, 0.10);
  }

  /* Optional: make inner link arrow more noticeable on card hover */
  .card-hover:hover .link-with-arrow {
    gap: 0.75rem;
    color: #00CFCD;
  }

  /* Optional: make icon color match teal on hover */
  .card-hover:hover .box-icon-3 {
    background-color: rgba(0, 207, 205, 0.15);
    color: #00CFCD;
  }

  /* If you want the glow to feel more "neon" / stronger */
  .card-hover.glow-strong:hover {
    box-shadow: 
      0 0 8px  2px #00CFCD,
      0 0 20px 6px rgba(0, 207, 205, 0.5),
      0 0 40px 12px rgba(0, 207, 205, 0.25);
  }

.row-equal-height {
  display: flex;
  flex-wrap: wrap;
}

.equal-height-col {
  display: flex;              /* makes the column itself stretchable */
  flex-direction: column;
}

.equal-height-col > .card-hover, .flex-fill {
  flex: 1 1 100%;             /* grow + fill available height */
  display: flex;
  flex-direction: column;
}

.equal-height-col .vertical-stack {
  flex: 1;                    /* expand to fill the card */
  display: flex;
  flex-direction: column;
}

/* Optional – align the CTA/link to the bottom of each card */
.equal-height-col .vertical-stack .link-with-arrow {
  margin-top: auto;
}


/* Make columns flex containers */
.equal-height-col .grid-rev.flex-fill {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* This helps alignment */
.flex-fill {
    flex: 1 1 auto;
}


.feature-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: center;
  font-size: 0.95rem;
}

.feature-legend span {
  display:flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-legend i {
  font-size: 1.25rem;
}

/* Optional icon colors */
.feature-legend i.ph-check    { color: #10b981; }
.feature-legend i.ph-minus    { color: #f59e0b; }
.feature-legend i.ph-x        { color: #ef4444; }

.table-responsive-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
}

/* Optional: show scrollbar hint on mobile */
.table-responsive-wrapper::-webkit-scrollbar {
  height: 8px;
}

.table-responsive-wrapper::-webkit-scrollbar-thumb {
  background: rgba(178, 181, 192, 0.4);
  border-radius: 4px;
}


.ci {
  font-size: 1.4rem;           /* Adjust size to match original stroke-width feel */
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;                 /* Fixed width for table alignment */
  height: 2rem;
}

.ci-y i { color: #10b981; }    /* Green for Yes (emerald/teal-ish) */
.ci-p i { color: #f59e0b; }    /* Amber for Partial */
.ci-n i { color: #ef4444; }    /* Red for No */

.ci i {
  transition: transform 0.2s ease;
}

.rounded-xl {
  border-radius: 18px;           /* very rounded corners – 48px is quite pill-shaped */
  overflow: hidden;              /* IMPORTANT: clips inner content to the rounded corners */
}

.border-subtle {
  border: 1px solid #b2b5c030;   /* your requested color with ~18% opacity */
  border-collapse: separate;     /* required for border-radius to work on <table> */
  border-spacing: 0;             /* removes gaps between cells */
}

.cell-padding-xl th,
.cell-padding-xl td {
  padding: 0rem 1.25rem;
}

.cat-row td {
  color: #B2B5C0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;           /* optional – makes it look more like a proper category header */
  font-size: 0.75rem;         /* optional – slightly smaller to distinguish from content rows */
  padding: 1.125rem 1.25rem;  /* optional – a bit more vertical breathing room for headers */
  background: rgba(178, 181, 192, 0.04);  /* very subtle background – matches your subtle theme */
}

/* Optional: make sure content in these cells spans nicely */
.cat-row td {
  text-align: left;           /* usually better for category titles */
}

/* If you want even more emphasis (modern section header feel) */
.cat-row td {
  border-top: 1px solid rgba(178, 181, 192, 0.12);
  border-bottom: 1px solid rgba(178, 181, 192, 0.08);
}

.comp-table {
  margin-left: auto;
  margin-right: auto;
  /* or shorthand: */
  /* margin: 0 auto; */
  /* Important: table must NOT be 100% width, or auto margins won't work */
  width: auto;                    /* or set a fixed/max width like 90% or 1100px */
  max-width: 100%;                /* prevents overflow on small screens */
  display: table;                 /* default anyway, but explicit helps sometimes */
}

.comp-table thead tr {
  border-radius: 0.75rem 0.75rem 0 0;                        /* rounded-t-xl */
  overflow: hidden;                                          /* ensures rounded corners clip content */
}

.comp-table thead th {
  text-align: center;                                        /* text-center */
  padding: 1rem 1.25rem;                                     /* py-4 px-5 */
  font-weight: 500;                                          /* font-semibold */
  white-space: nowrap;                                       /* whitespace-nowrap */
  color: #B2B5C0; 
  font-size: 14px;                                           /* default for most columns */
}

.comp-table tbody td:not([class]) {
  color: #ffffff;
  font-weight: 400;
  font-size: 14px;
}

/* Optional enhancements for better contrast/readability */
.comp-table tbody td:not([class]) {
  padding-left: 1.5rem;     /* a bit more left padding for the names */
}

/* Make sure icon cells stay neutral or inherit if needed */
.comp-table tbody td:has(.ci) {
  color: inherit;           /* prevents white from leaking into icon cells */
  text-align: center;
}

/* First column (Capability) – white text */
.comp-table thead th:first-child {
  text-align: left;
  color: #ffffff;                                            /* #fff */
}

/* Optional: if you want the t-col to stand out slightly differently (e.g. bolder or different shade) */
.comp-table thead th.t-col {
  color: #fff;                                            /* same as others – change if you want distinction */
  background: #00CFCD;
  border-radius: 18px 0 0 0;
}



/* Target the <td> in the Tactik column that contains a .ci-y (check) */
.comp-table td.t-col:has(.ci-y) {
  background-color: #00e6e226;     /* teal at ~15% opacity */
}

/* Optional: center the icon inside the colored cell */
.comp-table td.t-col:has(.ci-y) {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6vh;
}

/* Optional: make the check icon itself brighter/teal */
.comp-table td.t-col:has(.ci-y) i.ph-check {
  color: #00e6e2;                  /* full teal for better contrast */
  font-size: 1.25rem;              /* slightly larger – adjust as needed */
}


.quote-highlight {
  margin-top: 2rem;              /* mt-8 */
  margin-left: auto;
  margin-right: auto;
  max-width: 672px;              /* max-w-2xl ≈ 42rem = 672px */
  border-left: 4px solid #00e6e2; /* border-l-4 border-l-primary – change color to your primary */
  padding-left: 1.5rem;          /* pl-6 */
  padding-top: 1rem;             /* py-4 */
  padding-bottom: 1rem;
  text-align: center;
}

/* Text styling */
.quote-text {
  color: #fff;                /* text-foreground – adjust to your theme */
  font-size: 1rem;               /* text-base */
  font-style: italic;
  margin: 0;
}


/* Strong part */
.quote-strong {
  font-weight: 600;              /* font-semibold */
}

/* <br> only visible on sm+ screens */
.br-sm {
  display: none;
}


.micro-quote {
  margin: 8px 0;
  padding: 0 0 0 10px;
  max-width: 672px;
  border-left: 1px solid #b30000;
  text-align: left;
  font-size: 14px;
}


.video-thumb-box {
  /* Proportional (video-like 16:9 ratio – change to 1/1 for square) */
  width: 100%;
  max-width: 420px;                   /* adjust overall size here */
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  margin: 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumb-box2 {
  box-shadow: none;
  margin: 0 0 0 0;
  border-radius: 0;
  border-bottom: 1px solid #ffffff1f;
}
.specific-border {
 border: 1px solid #ffffff21;
    overflow: hidden;
    border-radius: 12px;
}

.video-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
}

.product-video {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;

}



/* Background image */
.background-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.45s ease;   /* smooth zoom */
}

/* Zoom only the image on hover */
.video-thumb-box:hover .background-img {
  transform: scale(1.08);            /* adjust 1.06–1.12 depending on desired zoom strength */
}

/* Dark overlay (0.5 opacity) */
.overlay {
  position: absolute;
  inset: 0;
  background-color: rgb(8, 22, 72, 0.5);
  z-index: 2;
  transition: background-color 0.3s ease;
}

.overlay2 {
  background: linear-gradient(to right, #081648, #000a2d)!important;
}

.overlay-reverse {
  background: linear-gradient(to right, #000a2d, #081648)!important;
}

.video-thumb-box:hover .overlay {
  background-color: rgb(8, 22, 72, 0.4);
}

.play-circle {
  position: relative;
  z-index: 3;
  width: 64px;
  height: 64px;
  background: linear-gradient(to right, #00e6e4, #00b8b8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  box-shadow: 0 6px 20px rgba(0, 230, 226, 0.4);
  transition: transform 0.2s ease;
}
/* Pulse animation – gentle breathing effect */
@keyframes pulse-play {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(0, 230, 226, 0.35);
  }
  50% {
    transform: scale(1.12);
    box-shadow: 0 10px 30px rgba(0, 230, 226, 0.55);
  }
}


.video-thumb-box:hover .play-circle {
    transform: scale(1.1);
}



.duration {
  position: absolute;
  bottom: 12px;
  right: 14px;
  z-index: 3;
  
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 4px 9px;
  border-radius: 5px;
  line-height: 1;
}

/* When hovering the thumbnail box, change the h3 color inside the vertical-stack */
.video-thumb-box:hover ~ .vertical-stack h3 {
  color: #00e6e4;  /* or #00CFCD — your preferred teal shade */
  transition: color 0.3s ease;
  cursor: pointer;
}


/* Make the whole link behave like a block card */
.video-card-link {
  display: block;                     /* makes <a> fill its content width */
  text-decoration: none;              /* remove default underline */
  color: inherit;                     /* inherit text colors */
  transition: all 0.3s ease;
}


/* Ensure inner hover effects still work */
.video-card-link:hover .video-thumb-box .background-img {
  transform: scale(1.08);
}

.video-card-link:hover .video-thumb-box .overlay {
  background-color: rgba(0, 0, 0, 0.38);
}

.video-card-link:hover .video-thumb-box .play-circle {
  animation: pulse-play 1.6s infinite ease-in-out;
}

.video-card-link:hover .vertical-stack h3 {
  color: #00e6e4;
  transition: color 0.3s ease;
}

/* Prevent text selection when clicking */
.video-card-link,
.video-card-link * {
  user-select: none;                  /* optional: nicer feel */
}

/* Cursor pointer on the whole card */
.video-card-link {
  cursor: pointer;
}


.cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);     /* 5 columns on large screens */
  gap: 24px;                                 /* space between cards */
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);   /* 2 equal columns */
  gap: 24px;                               /* space between cards */
  max-width: 1400px;
  margin: 0 auto;
}


.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);   /* 2 equal columns */
  gap: 24px;                               /* space between cards */
  margin: 0 auto;
}




.footer-link {
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: none;
  color: #fff;
}

.copyright-footer {
  border-top: 1px solid #b2b5c030;
}

.copy-right {
  text-align: right;
}


.box svg {
  width: 44px;
  height: 20px;
}

.box svg[viewBox="0 0 400 40"] {
 width: 100%;
 height: 100%;
}





/* ══════════════════════════════════
   MODAL
══════════════════════════════════ */
.modal-backdrop {
  position:fixed; inset:0; z-index:1000; background:rgba(0,0,0,.72);
  backdrop-filter:blur(4px); display:flex; align-items:center; justify-content:center;
  padding:1rem; opacity:0; pointer-events:none; transition:opacity .2s;
}
.modal-backdrop.open { opacity:1; pointer-events:all; }
.modal {
  background: #fff; border-radius:1rem; width:100%; max-width:520px;
  max-height:92vh; overflow:hidden; display:flex; flex-direction:column;
  transform:translateY(16px) scale(.97); transition:transform .25s;
  box-shadow:0 24px 64px rgba(0,0,0,.55);
}
.modal-backdrop.open .modal { transform:translateY(0) scale(1); }
.modal-hd {
  background:#061033; padding:1.4rem 1.75rem; border-radius:1rem 1rem 0 0; flex-shrink:0; position:relative;
}
.modal-close {
  position:absolute; top:.9rem; right:.9rem; width:30px; height:30px; border-radius:50%;
  background:rgba(255,255,255,.25); color:#fff; display:flex; align-items:center;
  justify-content:center; cursor:pointer; border:none; transition:background .2s;
}
.modal-close:hover { background:rgba(255,255,255,.4); }
.modal-close svg { width:14px;height:14px; }
.modal-title { font-size:1.3rem; font-weight:800; color:#fff; text-align:center; margin:.6rem 0 .4rem; }
.modal-sub { font-size:12px; color:rgba(255,255,255,.88); text-align:center; line-height:1.5; margin-bottom: 0px;}
.modal-body { background:#fff; border-radius:0 0 1rem 1rem; padding:1.4rem 1.75rem; overflow-y:auto; flex:1; }

/* Form */
.form-2col { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-grp { display:flex; flex-direction:column; gap:.25rem; margin-bottom:.7rem; }
.form-label { font-size:.78rem; font-weight:500; color:#1a2040; display:flex; align-items:center; gap:.3rem; }
.form-label svg { width:13px;height:13px;color:#888; }
.req { color:#e53e3e; }
.form-ctrl {
  padding:.55rem .85rem; border-radius:.5rem; border:1px solid #d1d5db;
  background:#fff; font-family:inherit; font-size:.875rem; color:#1a2040;
  transition:border-color .2s; width:auto; outline:none;
}
.form-ctrl::placeholder { color:#9ca3af; }
.form-ctrl:focus { border-color:#01CFCD; }
.form-ctrl.err { border-color:#e53e3e; }
.form-err { font-size:.72rem; color:#e53e3e; }
.form-hint { font-size:.7rem; color:#6b7280; }
textarea.form-ctrl { min-height:70px; resize:vertical; }
select.form-ctrl {
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right .7rem center; padding-right:2.2rem;
}
.interests-box { background:#d7d7d7; border-radius:.5rem; border:1px solid #c4c4c4; padding:.65rem; display:flex; flex-direction:column; gap:.45rem; }
.chk-item { display:flex; align-items:center; gap:.45rem; cursor:pointer; }
.chk-item input { width:15px;height:15px;accent-color:#01CFCD;cursor:pointer;flex-shrink:0; }
.chk-item label { font-size:.82rem; color:#1a2040; cursor:pointer; }
.startup-row { display:flex; align-items:center; gap:.7rem; padding:.7rem 1rem; border-radius:.5rem; background:rgba(1,207,205,.07); border:1px solid rgba(1,207,205,.25); margin-bottom:.7rem; }
.startup-row input { width:15px;height:15px;accent-color:#01CFCD;cursor:pointer;flex-shrink:0; }
.startup-row label { font-size:.83rem; color:#1a2040; font-weight:500; cursor:pointer; }
.modal-submit {
  width:100%; padding:.8rem; border-radius:9999px;
  background:linear-gradient(135deg,#00E6E4,#01CFCD,#00B8B8);
  color:#fff; font-weight:700; font-size:.95rem; font-family:inherit;
  border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; gap:.45rem;
  transition:opacity .2s; margin-top:.5rem;
}
.modal-submit:hover { opacity:.88; }
.modal-submit svg { width:17px;height:17px; }
.modal-success { text-align:center; padding:1.75rem 1rem; }
.success-circle { width:60px; height:60px; border-radius:50%; background:rgba(1,207,205,.1); display:flex; align-items:center; justify-content:center; margin:0 auto 1rem; }
.success-circle svg { width:28px;height:28px;color:#01CFCD; }
.success-title { font-size:1.15rem; font-weight:700; color:#1a2040; margin-bottom:.4rem; }
.success-desc { font-size:.85rem; color:#6b7280; line-height:1.55; margin-bottom:1.25rem; }
.btn-close-form { padding:.55rem 1.4rem; border-radius:9999px; border:1.5px solid #d1d5db; background:#fff; font-family:inherit; font-size:.85rem; color:#374151; cursor:pointer; transition:background .2s; }
.btn-close-form:hover { background:#f9fafb; }

/* Reset and base styles */
.chk-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  padding: 4px 0;
  font-size: .875rem;
  color: #1a2040;
  transition: color 0.2s;
}

/* Hide native checkbox */
.chk-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Custom checkbox box — created from the label itself */
.chk-item::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 12px;
  border: 2px solid #b2b5c0;
  border-radius: 6px;
  background: #ffffff;      /* or #0f1a4a if dark theme */
  flex-shrink: 0;
  transition: all 0.25s ease;
}

/* Checked state */
.chk-item:has(input[type="checkbox"]:checked)::before {
  background: #00cfcd url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8L7 11L12 5' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat;
  border-color: #00cfcd;
}

/* Hover effect — whole label area */
.chk-item:hover::before {
  border-color: #00cfcd;
  box-shadow: 0 0 0 3px rgba(0, 207, 205, 0.15);
}


/* Base layout for this section only */

.compare-header {
  width: 100%;
}
.compare-header-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;     /* same as your .spread-out */
  align-items: center;
  gap: 1.5rem;                        /* space between logo group and status */

}

.compare-logo-group {
  display: flex;
  flex-direction: row;
  align-items: center;                /* or flex-start if preferred */
  gap: 0.5rem;                        /* same as your .gap-2 */
}

.compare-status-group {
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* Mobile: stack vertically – only affects this section */
@media only screen and (max-width: 768px) {
  .compare-header-row {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.25rem;
  }

  .compare-logo-group {
    width: 100%;
    align-items: center;              /* keep logo + text side-by-side */
    justify-content: flex-start;
  }

  .compare-status-group {
    width: 100%;
    justify-content: flex-start;      /* or center if you prefer */
  }
}

/* Optional: very small screens – also stack logo + text */
@media only screen and (max-width: 480px) {
  .compare-logo-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .logo-box {
    margin-bottom: 0.5rem;
  }
}

.vertical-stacka {
  align-items: flex-start;         /* left align on desktop */
  flex-direction: column;
  
  /* Center all children horizontally */
  align-items: center;
  
  /* Optional: center vertically too (if the stack has a fixed/tall height) */
  justify-content: center;     /* ← this centers items vertically inside the stack */
  
  /* Make it fluid as before */
  width: 100%;
  max-width: 100%;
  min-width: 0;
  gap: inherit;                /* or set your default gap: 1rem, 1.5rem, etc. */
  box-sizing: border-box;
}

/* Prevent children from overflowing */
.vertical-stacka * {
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
  align-items: center;
  text-align: center;
}

.vertical-stacka p {
  text-align: left;
}

.logo-section-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}


/* When inside vertical-stack – remove side margins/padding that shrink it */
.vertical-stack .logo-section-wrapper {
  margin: 0;
}

.teal-snip {
  background: #00e6e21a;
  padding: 4px 8px;
  border-radius: 6px;
  color: #00e6e2;
  font-size: 10px;
}

.gray-snip {
  background: #b2b5c029;
  padding: 4px 8px;
  border-radius: 6px;
  color: #B2B5C0;
  font-size: 10px;
}


.arrow-desktop {
  display: inline-block;   /* or block/flex depending on your layout */
  vertical-align: middle;
}

.arrow-mobile {
  display: none;
}

/* Default: keep on one line (desktop/large screens) */
.icon-label {
  white-space: nowrap;          /* optional: prevent early wrapping */
}

/* Mobile: force "Insights" to new line at 414px and below */
@media (max-width: 1440px) {
  .insights-part {
    display: block;             /* ← this creates the line break */
    margin-top: 0.3em;          /* optional: adds a bit of vertical spacing between lines */
    /* or if you want it flush left: */
    /* text-align: left; */
  }

  /* Optional: make sure the whole label doesn't overflow */
  .icon-label {
    white-space: normal;
    max-width: 100%;
  }
}

.horizontal-line {
  border: none;               /* remove default 3D look */
    height: 1px;                /* or 2px, 3px… */
    background-color: #e5e5e51a;  /* light gray */
    margin: 4rem 0;             /* vertical spacing */
}


.preview-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: linear-gradient(to bottom right, #081648, #000a2d);
  overflow: hidden;
  border: 1px solid #ffffff21;
}


.grid-container {
      /* ───── Main grid ───── */
      display: grid;
      grid-template-columns: repeat(4, 1fr);     /* 4 columns by default */
      gap: 1.5rem;                               /* space between items */
      max-width: 1400px;
      margin: 0 auto;
}

.grid-item {
    overflow: hidden;
}


.inline-list {
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap on smaller screens */
  gap: 20px;       /* Spacing between the list items */
  padding: 0;
  list-style: none;
}

.inline-list li {
  display: flex;
  align-items: center; /* Vertically aligns icon with text */
  gap: 8px;            /* Spacing between icon and text */
  white-space: nowrap; /* Prevents text from breaking mid-item */
  color: #B2B5C0;
  font-size: 14px;
}

.inline-list i {
  color: #00cfcd;      /* Your specific teal color */
  font-size: 1.2rem;   /* Optional: adjusts icon size */
}

.features-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
  }

  .features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.775rem;
    font-size: 0.875rem;
    color: #fff;
  }

  .features-list i.ph-check-circle {
    font-size: 1.4rem; 
    color: #00CFCD;
    flex-shrink: 0;
  }

  .features-list.inline-simple {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
  }

  .features-list.inline-simple li {
    display: flex;
    margin-right: 1.8rem;
  }

  .features-list.inline-simple li:last-child {
    margin-right: 0;
  }

  .features-list.inline-simple i {
    margin-right: 0.4rem;
  }


  .equal-height-row {
    /* Usually not needed in BS5, but good for clarity/safety */
    display: flex;
    flex-wrap: wrap;
  }

  .equal-height-row > .col-6 {
    display: flex;              /* makes column itself a flex container */
    flex-direction: column;     /* stacks children vertically */
  }

  /* Optional: if you want minimum height on small screens or always */
  @media (min-width: 576px) {   /* or whatever breakpoint you want */
    .equal-height-row > .col-6 {
      min-height: 320px;        /* adjust to your preference – or remove */
    }
  }

  /* Make sure inner boxes stretch */
  .flex-grow-1 {
    flex-grow: 1;
  }

  .justify-content-center {
    justify-content: center !important;
  }

  .red-quote {
    color: red;
    padding: 24px;
    background: #ff00002e;
    border: 1px solid #ff0000;
    border-radius: 24px;
    width: auto;
    max-width: 768px;
    font-size: 19px;
    text-align: center;
    font-weight: 400;
    font-style: italic;
    margin: 48px 0;
  }

  .teal-quote {
      color: #fff;
      padding: 24px;
      background: #01cfcd0d;
      border: 1px solid #01cfcd29;
      border-radius: 24px;
      width: auto;
      max-width: 768px;
      font-size: 19px;
      text-align: center;
      font-weight: 500;
      margin: 48px 16px;
  }

  .about-us-box {
    background: #06103347;
    border: 1px solid #b2b5c030;
  }

  .step-column {
    position: relative;
  }

  .step-column:not(:last-child)::after {
    content: "\2192";                  /* Unicode right arrow → (or use Phosphor icon below) */
    position: absolute;
    top: 50%;
    right: -0.8em;                     /* Adjust this value to move left/right – negative pulls into gap */
    transform: translateY(-50%);
    font-size: 1.5rem;                 /* Make arrow big and prominent */
    color: #0d9488;                    /* your teal color – replace with var(--teal) or class */
    font-weight: bold;
    opacity: 0.9;
    pointer-events: none;
    line-height: 1;
  }

  /* Optional: hover effect on steps highlights arrows */
  .row:hover .step-column:not(:last-child)::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
    transition: all 0.25s ease;
  }

  /* Mobile: hide arrows and reduce spacing */
  @media (max-width: 991px) {
    .step-column:not(:last-child)::after {
      display: none;
    }
    .row.g-5 {
      --bs-gutter-x: 1.5rem;         /* smaller gutters on mobile */
    }
  }

  /* The magic classes */
/*      .fade-in-section {
        opacity: 0;
        transform: translateY(10px);       
        transition: opacity 0.9s ease-out, 
                    transform 0.9s ease-out;
        will-change: opacity, transform; 
      }

      .fade-in-section.visible {
        opacity: 1;
        transform: translateY(0);
      }
*/

      .featured-post, .blog-content {
        max-width: 768px;
        
      }

      .author-image img {
          width: 60px;
          height: 60px;
          border-radius: 50%;
          object-fit: fill;
          display: block; /* Removes bottom margin issues */
      }

      .parent-container {
        display: flex;
        justify-content: center; /* Horizontally centers content */
        align-items: center; /* Vertically centers content */
      }

      .info-box {
        border: 1px solid #00CFCD;
        border-radius: 16px;
        padding: 24px;
        background: linear-gradient(to right, #00e6e233, #af57db33)!important;
      }


    .list-gen-a li {
      color: #B2B5C0;
      margin-bottom: 20px;
    }




    .term-nav li {
      color: #fff;
      margin-bottom: 8px;
    }

    .term-nav a {
      color: #fff;
      text-decoration: none;
    }

       .term-nav a:hover {
      color: #fff;
      text-decoration: underline;
    }

  #back-to-top {
   position: fixed;
   bottom: 30px;
   right: 30px;
   width: 50px;
          height: 50px;
              background-color: #00bdbd; 
          color: white;
          border: none;
          border-radius: 50%;
          display: none; 
          align-items: center;
          justify-content: center;
          font-size: 24px;
          cursor: pointer;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          transition: all 0.3s ease;
          z-index: 9999;
        }

        #back-to-top:hover {
          background-color: #1d4ed8;
          transform: scale(1.1);
        }

        /* Smooth scrolling for the whole page */
        html {
          scroll-behavior: smooth;
        }


          #back-to-top i {
            color: #fff;
          }


.startup-banner {
    background: linear-gradient(135deg, rgba(0, 230, 228, .14), rgba(0, 230, 228, .06));
    border: 1px solid rgba(0, 230, 228, .3);
    border-radius: 1.25rem;
    padding: 1rem;
    max-width: 1078px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.problem-list.custom-bullets-alt2 {
    list-style: none;           /* removes the default dot */
    padding-left: 0;
}

.problem-list.custom-bullets-alt2 li {
    padding-left: 1.5em;        /* space for the checkmark */
    position: relative;
}

.problem-list.custom-bullets-alt2 li:before {
    content: "✔";               /* checkmark */
    position: absolute;
    left: 0;
    color: #00CFCD;
    font-size: 1.1em;
}

.popular-plan .grid-rev {
    border: 4px solid #00CFCD;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 12px;     /* keep bottom rounded too */
    border-bottom-right-radius: 12px;
    padding: 48px 20px 30px 20px;        /* space for full-width badge */
    background: rgba(255,255,255,0.03);
    position: relative;
    overflow: hidden;                     /* clean edges */
}

/* Full-width Popular Badge at the very top */
.popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;                          /* fills the full width */
    background: #00CFCD;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 3;
}

/* Alignment fix for other columns */
.plan-header-spacer {
    height: 36px; 
    visibility: hidden;
}


.pricing-basis {
     padding: 24px;
     border-radius: 16px;
     background: #0e1e4b;
     border: 1px solid #ffffff14;
     margin: 24px 0;
}

.rev-box {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 0;
      width: auto;
      padding: 16px 16px;
      background: #061033;
      border-radius: 16px 16px 0px 0px;
      border-top: 1px solid #1a2d5a;
      border-left: 1px solid #1a2d5a;
      border-right: 1px solid #1a2d5a;
      border-bottom: none;
      overflow: hidden;
  
}

.rev-box2 {
  width: auto;
  padding: 16px 16px;
  background: #061033;
  border-radius: 0px 0px 16px 16px;
  border-top: none;
  border-left: 1px solid #1a2d5a;
  border-right: 1px solid #1a2d5a;
  border-bottom: 1px solid #1a2d5a;
  overflow: hidden;
}


.revstack-grid {
  display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      width: auto;
      margin: 0 auto;
      border-top: 1px solid #1a2d5a;
      border-left: 1px solid #1a2d5a;
      border-right: 1px solid #1a2d5a;
      border-bottom: 1px solid #1a2d5a;
}

.rev-item {
    padding: 16px;
    text-align: center;
    border-right: 1px solid #1a2d5a;
    transition: all 0.3s ease;
}

.rev-item:last-child {
    border-right: none;                      /* Remove border from last column */
}

.cost-estimate-table {
    width: 100%;
    max-width: 700px;
    margin: 10px 0;
    overflow: hidden;
    border-radius: 12px;
}

.cost-estimate-table table {
    width: 100%;
    border-collapse: collapse;
}

.cost-estimate-table th,
.cost-estimate-table td {
  padding: 7px 0px;
      text-align: left;
      font-size: 14px;
}

.cost-estimate-table td:nth-child(1) {
  color: #B2B5C0;
}

.cost-estimate-table td:nth-child(2) {
 text-align: right;
}


.cost-estimate-table th {
    background: #222;
    color: white;
    font-weight: 600;
    text-align: left;
}



.cost-estimate-table td.text-right {
    text-align: right;
    font-weight: 500;
}

.total-row {
  border-top: 1px solid #1a2d5a;
}

.rigid-implementation {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.inner-implementation {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.text-implementation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.faq-box {
  display: grid;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 960px;
  width: 100%;
}


/* ══════════════════════════════════
   ACCORDION (FAQ)
══════════════════════════════════ */
.accordion-item { border-bottom:1px solid var(--border); }
.accordion-trigger {
  width:100%; text-align:left; padding:1.1rem 0; background:none; border:none;
  font-family:inherit; font-size:.95rem; font-weight:600; color:#fff;
  cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:1rem;
  transition:color .2s;
}
.accordion-trigger:hover { color: #00CFCD; }
.accordion-trigger svg { width:18px;height:18px;flex-shrink:0;transition:transform .25s; }
.accordion-trigger.open svg { transform:rotate(180deg); }
.accordion-content { overflow:hidden; max-height:0; transition:max-height .35s ease; }
.accordion-content.open { max-height:1000px; }
.accordion-body {     
  padding: 1.1rem;
    font-size: .9rem;
    color: #B2B5C0;
    line-height: 1.7;
    background: #081648;
    font-style: italic;
    border-radius: 16px;; }
.accordion-body ul { padding-left:1.25rem; margin-top:.5rem; }
.accordion-body li { margin-bottom:.35rem; }
.accordion-body strong { color:var(--fg); font-weight:600; }


.pricing-width {
      max-width: 571px;
    width: auto;
}

.pricing-icon {
  display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius:9999px;
    background: rgba(0, 230, 226, 0.1);
    color: rgb(0, 207, 205);
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0; 
    width: 100%;
    overflow: hidden;
}


.share-box {
  padding: 16px 0;
  border-top: 1px solid #b2b5c033;
  border-bottom: 1px solid #b2b5c033;
}


.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;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1400px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.modal-video {
    width: 100%;
    display: block;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #ffffff1f;
    color: white;
    border: none;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.modal-close:hover {
    background: #ffffff82;
}


.demo-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  background-color: #666 !important;     /* darker gray */
  color: #ddd !important;
  border-color: #555 !important;
}

.demo-button:disabled i {
  display: none;   /* hide the arrow icon when disabled */
}

/* Optional: Nice loading spinner inside the button */
.demo-button.loading {
  position: relative;
  color: transparent !important;   /* hide text */
}

.demo-button.loading::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  top: 50%;
  left: 50%;
  margin: -9px 0 0 -9px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


.gate-keeper-modal {
  background: rgb(15 31 61);
  border: 1px solid #ffffff33;
  border-radius: 16px;
  padding: 28px 28px 24px;
  width: 100%;
  max-width: 460px;
  position: relative;
  transform: translateY(12px);
  transition: transform 0.25s;
}

/* ── Form ── */
.input-wrap {
  position: relative;
  margin-bottom: 12px;
}

.input-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(255,255,255,0.35);
}

.input-icon svg { width: 16px; height: 16px; display: block; }

.email-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 11px 14px 11px 40px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.email-input::placeholder { color: rgba(255,255,255,0.3); }

.email-input:focus {
  border-color: rgba(0,212,180,0.5);
  background: rgba(255,255,255,0.08);
}

.error-msg {
  display: none;
  font-size: 12.5px;
  color: #ff4d4d;
  line-height: 1.55;
  margin-bottom: 12px;
}

.error-msg a {
  color: #ffaaaa;
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  background: var(--accent);
  border: none;
  border-radius: var(--radius-md);
  padding: 12px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: #0a1628;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  transition: background 0.2s, transform 0.1s;
}

.submit-btn:hover { background: var(--accent-hover); }
.submit-btn:active { transform: scale(0.99); }

.submit-btn svg { width: 14px; height: 14px; flex-shrink: 0; }


/* ── Success state ── */
.success-state {
  display: none;
  text-align: center;
  padding: 12px 0 8px;
}

.success-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #2ECC71;
}

.success-icon svg { width: 22px; height: 22px; }


/* ── Unlocked indicator ── */
.unlocked-badge {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
  justify-content: center;
}

.unlocked-badge svg { width: 14px; height: 14px; }


modal-backdrop.open .modal {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.modal-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}


/* Custom Fullscreen Button */
.video-modal-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.65);
    color: white;
    border: none;
    width: 42px;
    height: 42px;
    font-size: 22px;
    border-radius: 8px;
    cursor: pointer;
    z-index: 20;
    opacity: 1;                    /* Always visible */
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-btn:hover {
    background: rgba(0, 0, 0, 0.85);
}

.video-modal-btn:hover {
    background: rgba(0, 0, 0, 0.85);
}


.video-speed-controls {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 6px 8px;
    display: flex;
    gap: 4px;
    z-index: 10;
}

.speed-btn {
    background: transparent;
    color: white;
    border: none;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.speed-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.speed-btn.active {
    background: #00d4ff;   /* Teal color - matches your theme */
    color: #000;
    font-weight: 600;
}


.mobile-fixgap {
 gap: 5rem;
 margin: 4rem 0;
}

.no-margin {
  margin: 0!important;
  border-radius: 12px 12px 0 0!important;
}


.security-box {
  background: #031246a8;
      padding: 4rem;
      border-radius: 2rem;
      border: 1px solid #ffffff0a;
}
