@charset "UTF-8";

/* MEDIA QUERIES */
/*@import url("media-query-mobile_320px–768px.css");
@import url("media-query-tablets_769px–1024px.css");
@import url("media-query-laptops_1025px–1280px.css");
@import url("media-query-large-desktops_1281px–1440px.css");*/

/* CSS Document */ :root {
    --color-primary: #2fc6ff;
    --color-white: #fff;
    --color-light-gray: #ddd;
    --color-medium-gray: #bbb;
    --color-dark-gray: #999;
    --color-darker-gray: #666;
     --color-charcoal-gray: #333;
    --color-blue-light: #1f4d97;
    --color-blue-medium: #183e6d;
    --color-blue-dark: #111827; /* FOR CTA's and IMPORTANT BACKGROUNDS */
    --color-blue-premium: #36aaff;
    --color-border: #e5e7eb;
    --color-body-text: #4b5563;
    --color-background: #f9fafb; /* Alternative Sections */
    --color-imagebackground: #050a19;
    --color-background-alt: #eaf9ff;
    --color-background-icon: #dbeafe;
    
    /* FONTS */
    --font-primary: "Open Sans", sans-serif;
    --font-secondary: 'Figtree', sans-serif;
    --letter-spacing: 0;
    --font-weight-normal:400;
    --font-weight-medium:500;
    --font-weight-semibold:600;
    --font-weight-bold:700;
}

/* Reset and base setup */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
}
html {
  scroll-behavior: smooth;
}
html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font-secondary);
    font-style: normal;
    font-weight: var(--font-weight-normal);
    letter-spacing:var(--letter-spacing);
    line-height: 1.4rem;
    background-color: var(--color-white);
    min-width: 420px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    /*overflow: auto;*/
    /*overflow-x: hidden;*/ /* Prevent horizontal scroll if content overflows slightly */
    color: var(--color-body-text);
}


a {
    /*color: inherit;*/
    text-decoration: none;
    color:var(--color-primary);
}
a:hover {
    opacity:0.8;
}
ul {
    list-style: none;
}
p {
    letter-spacing: var(--letter-spacing);
}
/* HTML -> BODY -> SECTIONS */
/* Utility class for centering text if needed broadly */
.text-center {
    text-align: center;
}
.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding:.8rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size:1rem;
    line-height: 1.2;
    width:auto;
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid var(--color-primary);
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.button-primary {
    background-color: var(--color-primary);
    color: #000;
    
}
.button-primary:hover {
    color:var(--color-primary);
    background-color:var(--color-white); /* Darker shade for hover */
}

.button-secondary {
    width:auto;
white-space: nowrap;
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}
.button-secondary:hover {
    background-color: rgba(47, 198, 255, 0.1); /* Light background on hover */
}
/* ========== HEADER ========== */
/* NAVIGATION BAR */
.header-section {
    width: 100%;
    background-color: var(--color-white);
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
        margin:0 auto;
}
.site-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    margin: 0 auto;
      flex-wrap: wrap;
}
/* ========== LOGO ========== */
.header-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}
.header-logo-img {
width: 163px;
height: 32px;
transition: all 0.3s ease-in-out;
}
.header-logo-tagline {
    font-family: var(--font-secondary);
    font-size: .8rem;
    color: var(--color-blue-medium);
    line-height: 12px;
    text-align: left;
}
.header-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.header-nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 0;
    list-style: none;
    margin: 0 auto;
    width:100%;
}
.header-nav li {
    position: relative;
}

.header-nav li a {
    display: flex;
    font-size: 1rem;
    align-items: center;
    font-family: var(--font-secondary);
    color:var(--color-charcoal-gray);
    transition: color 0.3s ease;
    padding: 1rem 1.5rem;
    line-height: 1.1;
}
.header-nav li a:hover, .header-nav .dropdown:hover > a {
    color: var(--color-primary);
}
.header-nav .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* Drop Down Menu */
/* Dropdown menu hidden by default */
.header-nav ul ul {
    flex-direction:column;
}
.dropdown-menu {
    min-width: 300px;
    position: absolute;
    z-index: 999;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-radius: 4px;
    display: none;
    padding: 0.5rem 0;
}
/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {

    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1rem;
    gap: 4px;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li {
    display: block;
    width: 100%;
}
.dropdown-menu li a {
    color:var(--color-charcoal-gray);
    background: #fff;
    width: inherit;
      display: block;
      padding: 0.5rem;
        text-align: left;
      white-space:normal;
    border-bottom: 1px dashed #eee;
}
.dropdown-menu li a:hover {
    color:var(--color-blue-medium);
    background-color:#fff;
    border-bottom: 1px dashed var(--color-blue-medium);
}
.dropdown-arrow {
    /* width: 16px;
    height: 16px; */
}
.header-cta {
    display: flex;
    flexmargin-left: auto;
    white-space: nowrap;
}

/* ========== HAMBURGER ========== */
#mobile-nav-toggle {
  display: none;
  background:url("../img/icons/ico-hamburger.svg") center center no-repeat;
    background-size: 36px 36px;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.4rem;
  color: #00bfff;
    height:30px;
    width:30px;
    border-radius: 5px;
}
#mobile-nav-toggle:hover {
  display: none;
  background:url("../img/icons/ico-hamburger.svg") center center no-repeat;
    background-size: 36px 36px;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.4rem;
  color: #00bfff;
}
/* ========== END HEADER NAVIGATION ========== */


/* =============================
   MAIN.CSS (Generic + Hero Styles)
   ============================= */

/* --- Generic Reusable Sections --- */
.main-section {
display: flex;
flex-direction:column;
justify-content: center;
background-color: #f9fafb;
/*padding: 40px 0;*/
padding:clamp(2rem, 4vw,5rem);
margin: 0 auto;
transition: all 0.3s ease-in-out;
}

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: clamp(1rem, 5vw, 3rem);
  gap: clamp(1rem, 10vw, 2rem);
    /*border:1px solid #f00;*/
    height: fit-content;
}
.video-container {

position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio → 9 / 16 = 0.5625 */
  height: 0;
  overflow: hidden;
  border-radius: 12px; /* optional */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* optional */
}
.video-container iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#section-header{
    position:sticky!important;
    top:0;
}
.section-header,
.section-footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
    height:fit-content;

}

.section-title-tag,
.cta-subtitle {
  width: 100%;
  height: auto;
  margin-bottom: 7px;
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-semibold);
  font-size: clamp(.9rem,1vw,1.1rem);
  line-height: clamp(1.2rem,1.2vw,1.25rem);
  text-align: center;
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  color: var(--color-primary);
}

.section-main-title,
.main-heading,
.hero-heading {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-medium);
/*  font-size: 36px;
  line-height: 40px;*/
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    line-height: clamp(2.7rem, 8vw, 4.2rem);
  text-align: center;
  margin-top: 0;
  margin-bottom: 16px;
  letter-spacing:var(--letter-spacing);
  color: var(--color-blue-medium);
}

.hero-heading {
  color: var(--color-blue-light);
    /*font-size: clamp(2.5rem, 6vw, 3.5rem);
    line-height: clamp(2.9rem, 8vw, 3.9rem);*/
/*  font-size: 48px;
  line-height: 52px;*/
}
.section-main-title{
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: clamp(2.4rem, 6vw, 3.4rem);
}

.main-heading {
  font-size: 48px;
  line-height: 52px;
  text-align: left;
  color: var(--color-white);
}

.section-content {
  width: 100%;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 24px;
  line-height: 27px;
  text-align: center;
}

.section-description {
  color: var(--color-darker-gray);
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  width: 100%;
}

.description-emphasis {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 24px;
  line-height: 26.67px;
  color: #333;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  background: linear-gradient(270deg, #000000 45.19%, #010b1f 61.06%, #020b1e 77.4%, #1f4d97 100%);
  background-image: url('../img/banner-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: visible;
  margin: 0 auto;
}

.hero-background-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(47, 198, 255, 0.15) 0%, rgba(10, 25, 49, 0) 100%);
  z-index: 1;
}

.hero-content-area {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 80px;
  /*padding-left: 20%;*/
    transition: all 0.3s ease-in-out;
}

.hero-text-content {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 32px;
    transition: all 0.3s ease-in-out;
}

.hero-text-content h1 {
  color: var(--color-white);
/*  font-size: 48px;
  line-height: 52px;
  text-align: left;*/
}

.hero-text-content p {
  font-family: var(--font-secondary);
  font-size: 20px;
    font-size:clamp(1.2rem,2vw,1.6rem);
  line-height: 28px;
    line-height: clamp(1.8rem,2.4vw,2rem);
  color: #c3dafe;
  margin: 0;
  letter-spacing: var(--letter-spacing);
}

.hero-buttons {
  display: flex;
  gap: 22px;
}

.hero-trusted-by {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-trusted-by img {
  width: 20px;
  height: 20px;
}

.hero-trusted-by span {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: #a0aec0;
}

.hero-floating-ui {
  position: absolute;
  right: 20%;
  top: 65%;
  transform: translateY(-40%);
  width: 420px;
  height: 480px;
  z-index: 2;
   background: none;
    border:none;
    background: url("../img/banner-img.png") no-repeat;
    background-size: 100% 100%;
     /*border: 2px solid #2FC6FF;*/
    border-radius: 16px;
    box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease-in-out;
}

.hero-floating-ui-image-wrapper {
  position: relative;
  width:100%;
  height:100%;

}

.hero-floating-ui-image-wrapper img {
display: none;
}

.hero-floating-ui-text-overlay {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-normal);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 12px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
}

.hero-floating-ui-text-overlay img {
    position: relative;
    display: block;
  width: 24px;
  height: 24px;
}

.global-coverage-text {
  top: 32px;
  left: 32px;
  opacity: 0.82;
}

.ai-verified-text {
  bottom: 32px;
  right: 32px;
  opacity: 0.89;
}


/* CSS from section:how-it-works */

/*.how-it-works-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }*/
.features-carousel {
    display: flex;
    flex-direction: row;
    gap: 32px;
    padding-left: 0; /* Overriding Figma's 90px for container centering */
    overflow-x: auto; /* For more cards than fit */
    width: 100%;
    justify-content: center; /* Center items if they don't fill width */
}
.feature-card {
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 32px 32px 42px 32px;
    border-radius: 12px;
    background-color: var(--color-white); /* Assuming cards are white on f9fafb bg */
    min-width: 248px; /* Adjust as needed */
    max-width: 350px; /* Based on content */
    text-align: center;
}
.feature-card img {
    width: auto; /* SVG original size */
    height: 30px; /* Approximate from Figma */
}
.feature-card h3 {
    color: #1f4d97;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 32px;
    line-height: 35.56px;
    margin: 0;
}
.feature-card p {
    color: #333333;
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}
/* ==== CAROUSEL WRAPPER ==== */
.carousel {
  position: relative;
  overflow: hidden;
     width: 100%;
  padding: 2rem 5rem 3rem; /* space for arrows + dots */
}
/* JS CAROUSEL */

.carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 100px;
    width:100%;
  transition: transform 0.3s ease;
  will-change: transform;
}

.carousel-card {
  flex-shrink: 0;
  width: 100%;
    padding: 2rem;
  box-sizing: border-box;
}
.carousel-dots {
    display: flex;
    padding: 24px 0;
    justify-content: center;
    gap:10px;
    margin-top: 12px;
}
.carousel-dots .dot {
    width: 24px;
  height: 24px;
  background-color: rgba(47, 198, 255, 0.3);
  border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}
.carousel-dots .dot.active {
    background-color: var(--color-primary);
}

/* ==== ARROWS ==== */
.carousel-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background:url("../img/icons/chevron-left.svg") no-repeat center center;
  border:none;
  color: #333;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
    width:48px;
    height:48px;
   opacity: 1;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.carousel-arrow:hover {
  background: #f0f0f0;
  color: #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.carousel-arrow.inactive {
  pointer-events: none;
  filter: grayscale(100%) brightness(80%);
  opacity: 0.5;
}

.carousel-arrow.prev {
  left: 0;
    background: url("../img/icons/chevron-left.svg") no-repeat center center;
}

.carousel-arrow.next {
  right: 0;
    background: url("../img/icons/chevron-right.svg") no-repeat center center;
}

/* CSS from section:inside-report */
.inside-report-section {
    background-color: var(--color-white);
}
.inside-report-section .section-main-title {
    color: var(--color-white);
}
.inside-report-section .container {
    background: radial-gradient(173.07% 205.27% at 50% 50%, #0a1931 0%, #322885 0%, #1a3b7e 45.19%, #00122f 100%);
    background: linear-gradient(135deg, #322885 0%, #1a3b7e 45%, #00122f 100%);
    border-radius: 24px;
}
.report-carousel-content { /* Node 171:2946 */
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
    /*  max-width: 1192px;*/ /* Width of 171:2946 */
}
.report-types-nav {
    /*flex-basis: 405px; 
  padding-top: 32px;
  padding-bottom: 32px;*/
}
.report-types-nav ul {
    /*list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;*/
}
.report-types-nav li a {
    /*text-decoration: none;
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.11px;
  color: var(--color-light-gray);
  display: block;
  padding-bottom: 8px;
  border-bottom: 1px solid #2563eb; */
}
.report-types-nav li a.active {
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
}
.report-details {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}
.report-details .role-details {
    flex-direction: row;
}
.report-details-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
    width: 50%;
}
.report-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    flex-direction: row;
}
.report-tag img {
    width: 21px;
    height: 24px;
}
.report-tag span {
    color: #fff;
    font-family: var(--font-secondary);
    font-size: 12px;
    line-height: 20px;
    letter-spacing: var(--letter-spacing);
    /*border:1px solid var(--color-white);*/
    color: var(--color-white);
    padding: 3px 10px;
    border-radius: 4px;
}
.premium-badge{
    background-color: var(--color-blue-premium);
    /*border:1px solid var(--color-blue-premium);*/
    color: var(--color-white);
    padding: 3px 10px;
    letter-spacing: var(--letter-spacing);
    text-transform: uppercase;
}
.report-details-text h3 {
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 24px;
    line-height: 26.67px;
    margin: 0;
}
.report-details-text p {
    color: var(--color-light-gray);
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.11px;
    margin: 0;
}
.external-link-icon {
    display: block;
    width: 24px;
    height: 24px;
    background: url("../img/icons/ico-external-link.svg") no-repeat center center;
    background-size:20px 20px;
}
.report-details-image img {
    width: 210px;
    height: 270px;
    border-radius: 18px;
    object-fit: cover;
}
.report-buttons {
    display: flex;
    gap: 22px;
}
/* CSS from section:why-switch */
.why-switch-section {}
.why-switch-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: var(--font-weight-medium);
    line-height: 40px;
    color: var(--color-blue-dark);
    text-align: center;
    margin: 0;
    margin-bottom: 40px; /* (7880 - 7812 - 28px gap) = 40px, adjusted from visual hierarchy */
}
.why-switch-section {
    background-color: var(--color-white);
}
/*.why-switch-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 1192px;  from 159:1671 children 
  }
  */
.switch-features-grid { /* Node 73:9257 */
    display: flex;
    /*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
    gap: 16px; /* from style_78 */
    width: 100%;
    margin: 0 40px;
}
.switch-feature-card { /* Node 73:9299 etc. */
    background-color: #0a1931;
    border-radius: 16px;
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
}
.switch-feature-card img {
    width: auto; /* SVG original size */
    height: 30px; /* Approximate from Figma */
}
.switch-feature-card h4 {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size:clamp(1.25rem,2vw,1.75rem);
    line-height:clamp(1.5rem,3vw,2rem);
    margin: 0;
}
.switch-feature-card p {
    color: #b3bde7;
    font-family: var(--font-secondary);
    font-size:clamp(.9rem,1vw,1.1rem);
    line-height:clamp(1.2rem,1.4vw,1.3rem);
    margin: 0;
}
/* CSS from section:industries */
.industries-section {
    /*padding: 40px 0;*/
    background-color: var(--color-white);
}
.industries-section .container { /* Node 73:9217 */
    background: radial-gradient(173.07% 205.27% at 50% 50%, #0a1931 0%, #322885 0%, #1a3b7e 45.19%, #00122f 100%);
    border-radius: 24px;
}
.industries-section .section-main-title {
    color: var(--color-white);
}
.industries-grid { /* Node 73:9261 */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px 20px;
    justify-content: center;
    /* Auto layout */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: center;
    padding:0;
    width: 100%;
    height: auto;
    border-radius: 0px;
}
.industry-item { /* Node 73:9381 etc. */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* Auto layout */
    padding: 3px 36px;
    width: 160px;
    height: 120px;
    border-radius: 0px;
    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
}
.industry-item img {
    width: auto; /* SVG original size */
    height: 30px; /* from Figma */
}
.industry-item span {
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: #404040;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.24px;
}
.features-list li img {
    width: 25px;
    height: 25px;
}
/* SECTION: Testimonials */
.testimonials-section {
    background-color: #f9fafb;
}
.testimonials-section .section-title-tag {
    color: var(--color-primary);
}
.testimonial-card {
    background-color: #1f4d97;
    border-radius: 16px;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
}
.testimonial-content { /* Node I171:3686;153:1116 */
    display: flex;
    flex-direction: row;
    gap: 36px;
    align-items: flex-start;
    padding: 32px;
}
.quote-icon {
    width: 48px;
    height: 40.91px;
    flex-shrink: 0;
}
.testimonial-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.testimonial-text h4 {
    width: 100%;
    height: auto;
    color: var(--color-primary); /* style_116 for title */
    font-family: var(--font-secondary);
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    text-transform: uppercase;
}
.quote-body {
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    margin: 0;
}
.quote-context {
    color: #e5e7eb;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 17px;
    margin: 0;
}


/* END: JS CAROUSEL */
/* CSS from section:cta */
.cta-section {
    padding: 80px 10%;
    background-color: var(--color-white);
}
.cta-container {
    background: radial-gradient(173.07% 205.27% at 50% 50%, #00122f 0%, #1a3f7e 54.81%, #0a1931 100%, #322885 100%);
    background-image: url("../img/cta-bg-1.png");
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 80px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    width: 100%;
    margin: 0 auto;
}
.cta-image-column {
    flex-basis: 337px;
}
.cta-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 36px 0; /* Adjusted from 75px L/R padding to fit column */
    border-radius: 12px;
    /* background from image node style_161 is on image itself */
}
.cta-image {
    width: 160px;
    height: 210px;
    /*border: 2px solid rgba(47, 198, 255, 0.3);*/
    /*border-radius: 8px;
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
	margin:0;
	padding:0;*/
}
.cta-image-wrapper h5 {
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    line-height: 19.2px;
    margin: 0;
    max-width: 187px;
}
.cta-image-wrapper .button-secondary {
    font-family: var(--font-secondary); /* from style_165 */
    font-size: 14px;
    /*padding: 9px 21px;*/
}
.cta-text-column { /* Node I199:4095;73:9258 */
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    color: var(--color-white);
}
.cta-subtitle {
    color: var(--color-primary); /* style_116 on text */
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-medium);
    font-size: clamp(1.2rem,1vw,2.5rem);
    line-height: clamp(1.7rem,2vw,2.7rem);
    letter-spacing:var(--letter-spacing);
    text-align: left;
}
.cta-text-column h2 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
    font-size: clamp(2.1rem,2vw,3rem);
    line-height: 52px;
    line-height:clamp(2.5rem,2.5vw,3.5rem);
    margin: 0;
}
.cta-text-column p {
    font-family: var(--font-secondary);
    font-size: clamp(1.2rem,1vw,2.5rem);
    line-height: clamp(1.7rem,2vw,2.7rem);
    color: var(--color-light-gray);
    font-weight: 600;
    margin: 0;
}
.cta-main-button {
    align-self: flex-start;
    font-family: var(--font-secondary);
    font-size: 24px;
    line-height: 28.8px;
    padding: 13px 24px; /* Default button padding, adjust if needed for LRG */
}
.cta-main-button img {
    width: 25px;
    height: 25px;
    margin-left: 10px;
}
/* CSS from section:footer */
.site-footer { /* Node 193:14705 */
    background-color: #0a1931; /* Guessed from image, style_172 has image */
    background-image: url("../img/bg-footer.png");
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 48px; /* from style_172 */
}
.footer-main-content { /* Node I193:14705;151:1630 */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 80px;
    width:100%;
}
.footer-about { /* Node I193:14705;151:1626 */
    flex-basis: 40%; /* Approximate */
    display: flex;
    flex-direction: column;
    gap: 32px; /* from style_174 */
}
.footer-about h4 {
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 36px;
    line-height: 40px;
    margin: 0;
    text-align: left; /* Overriding default center for section titles */
}
.footer-about p {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.11px;
    margin: 0;
}
.social-icons { /* Node I193:14705;151:1624 */
    display: flex;
    gap: 16px;
}
.social-icons img {
    width: 25px;
    height: 25px;
}
.footer-links-column { /* Node I193:14705;151:1574 / 1567 */
    flex-basis: 25%; /* Approximate */
    display: flex;
    flex-direction: column;
    gap: 12px; /* from style_183 */
}
.footer-links-column h5 {
    color: var(--color-primary);
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-medium);
    font-size: 16px;
    line-height: 19.2px;
    margin: 0;
}
.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px; /* from style_183 */
}
.footer-links-column li a {
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-size: 14px;
    line-height: 16.8px;
    text-decoration: none;
}
.footer-links-column li a:hover {
    text-decoration: underline;
}
.footer-divider {
    border: none;
    height: 1px;
    background-color: var(--color-primary);
    margin: 0; /* Reset default hr margin */
    width:100%;
}
.footer-secondary-content { /* Node I193:14705;151:1634 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px; /* Adjusted from 243px for responsiveness */
    padding: 13px 0;
    width:100%;
}
.footer-logo-address {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-logo { /* Node I193:14705;169:2495 */
    width: 163px;
    height: 32px;
}
.footer-logo-address span, .footer-phone span {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 19.2px;
    padding:0 0.6rem;
}
.footer-bottom { /* Node I193:14705;151:1629 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px; /* Adjusted from 670px */
    padding: 13px 0;
    width:100%;
}
.copyright {
    font-family: var(--font-secondary);
    font-size: 12px;
    line-height: 14.4px;
    margin: 0;
}
.footer-legal-links ul { /* Node I193:14705;151:1614 */
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 40px; /* from style_196 */
}
.footer-legal-links li a {
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-size: 14px;
    line-height: 16.8px;
    text-decoration: none;
    text-decoration: underline;
}
.footer-legal-links li a:hover {
    text-decoration: underline;
}
.floating-chat-icon { /* Node 169:2888 */
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-primary); /* style_213 */
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1001;
}
.floating-chat-icon img { /* SVG I169:2888;169:2884 */
    width: 24px;
    height: 24px;
}
/* inside the report */
.report-tag {}
/* inside the report */
/* About Us Page */
/* CSS from section:insights-banner */
#insights-banner {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
.insights-banner-container {
    /* Layout and Sizing - max-width from Figma frame */
    /*max-width: 1512px;*/
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 367px;
    /* Spacing - derived from Figma node 316:3914 absolute positions */
    padding: 80px 80px 80px;
    /* Background - from style_1 */
    background-image: url('../img/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.insights-banner-content {
    /* Layout - from style_2 */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* Spacing - from style_2 */
    gap: 24px;
    /* Sizing - using max-width of the widest text element for responsiveness */
    max-width: 886px;
    width: 100%;
}
.insights-banner-title {
    color: var(--color-white);
}
.insights-banner-subtitle {
    /* Typography - from style_4 */
    font-family: var(--font-secondary);
    font-size: 20px;
    line-height: 1.4; /* 28px / 20px */
    color: var(--color-white);
    letter-spacing: 0.14px;
    margin: 0;
}
/* CSS from section:how-it-started */
#how-it-started {
    padding: 64px 20px;
}
.how-it-started-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
    /* max-width: 1192px;*/
    width: 100%;
    margin: 0 auto;
}
.how-it-started-container .text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 39px;
}
.title {
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-medium);
    font-size: 30px;
    line-height: 36px;
    color: var(--color-blue-dark);
    margin: 0;
}
.description {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 24px;
    color: #374151;
    display: flex;
    flex-direction: column;
    gap: 24px; /* Estimated gap between paragraphs */
}
.description p {
    margin: 0;
}
.image-content {
    flex: 1;
    max-width: 556px;
    flex-shrink: 0;
}
.image-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.25);
}
/* CSS from section:why-switch */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 500px));
    gap: 30px;
    justify-content: center;
    width: 100%;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.feature-icon {
    flex-shrink: 0;
    margin-top: 2px; /* Visual alignment */
}
.feature-text {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.feature-title {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: var(--letter-spacing);
    color: var(--color-blue-dark);
    margin: 0;
}
.feature-description {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-body-text);
    margin: 0;
}
.info-box {
    background-color: var(--color-background-alt);
    border-radius: 8px;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    max-width: 1024px;
    margin-top: 40px; /* (8076 - 7949 - 28px gap) = 99px total space, adjusted */
}
.info-box-icon {
    flex-shrink: 0;
    margin-top: 5px; /* Visual alignment */
}
.info-box-text {
    display: flex;
    flex-direction: column;
    gap: 17px;
}
.info-box-title {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-blue-medium);
    margin: 0;
}
.info-box-description {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.11px;
    color: var(--color-body-text);
    margin: 0;
}
/* CSS from section:analysts-section */
.analysts-section {
    background-color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
}
.analysts-section .container {
    /*max-width: 1352px;*/
    /*width: 100%;*/
    background: radial-gradient(173.07% 205.27% at 50% 50%, #00122f 0%, #1a3f7e 54.81%, #0a1931 100%, #322885 100%);
    background-image: url("../img/cta-bg-2.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 24px;
    padding: 80px;
}
.content-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 32px;
}
.analysts-section .text-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
    min-width: 0;
    padding: 40px 0;
}
.heading-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.pre-header {
    text-align: left;
    letter-spacing: var(--letter-spacing);
}
.description {
    margin: 0;
    color: var(--color-light-gray);
    font-family: var(--font-primary);
    font-size: 28px;
    line-height: 31.12px;
}
.card-wrapper {
    flex-shrink: 0;
}
.card-wrapper .cta-image {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 0px;
    gap: 32px;
    width: 397px;
    height: 406px;
    border-radius: 0px;
}
.card {
    position: relative;
    width: 397px;
    height: 406px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-bg-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}
.card-logo-box, .card-features-box {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    backdrop-filter: blur(1px);
    padding: 12px;
    width: 248px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.logo-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.logo-image {
    width: 107px;
    height: 21px;
    margin-bottom: 1px;
}
.logo-tagline {
    color: #0a1931;
    font-family: var(--font-secondary);
    font-size: 10px;
    line-height: 12px;
}
.card-features-box {
    align-items: flex-start;
    gap: 10px;
}
.features-title {
    margin: 0;
    color: #333333;
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 15.56px;
}
.features-list {
    margin: 0;
    color: #333333;
    font-family: var(--font-secondary);
    font-size: 10px;
    line-height: 12px;
}
.cta-button {
    background-color: var(--color-primary);
    border-radius: 8px;
    padding: 13px 24px;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
    color: #0a1931;
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-medium);
    font-size: 24px;
    line-height: 28.8px;
    letter-spacing: 0.17px;
    text-decoration: none;
    align-self: flex-start;
    transition: background-color 0.3s ease;
    width:100%;
}
.cta-button:hover {
    background-color: #1ab8f0;
}
.arrow-icon {
    width: 25px;
    height: 25px;
}
/* ADDING NEW CSS - Jun 23, 25 */
/*ABOUT US PAGE How It Started */
/* CSS from section:story */
.story-section, .story-section-alt {
    background-color: #f9fafb;
    display: flex;
    justify-content: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 0px;
}
.story-section-alt {
    background-color: var(--color-white);
}
.story-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 auto;
}
.story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 39px;
    min-width: 0;
}
.story-content.right{
    padding-left:40px;
}
.story-content.left {
    padding-right:40px;
}
.story-title {
    color: var(--color-blue-dark);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 30px;
    line-height: 36px;
    margin: 0;
}
.story-description {
    font-size: 16px;
    line-height: 24px;
    color: #374151;
    margin: 0;
}
.story-description p{
    margin-top: 0;
    margin-bottom: 1em;
}
.story-description p:last-child {
    margin-bottom: 0;
}

.story-description ul {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;

}
.story-description li {
    padding-left: 1.5em;
    position: relative;
        text-align:left;
}
.story-description li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #374151;
}
.story-description strong {
    font-weight: var(--font-weight-medium);
}



.story-image-wrapper {
    /*flex: 1;
    max-width: 556px;*/
    flex: 0 0 556px;
    width: 556px;
    height: 432px;
    margin: 0;
    border-radius: 24px;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.25);
}
.story-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.25);
}
.story-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}
/* Sample Reports Page */
/* SECTIONS */
/* CSS from section:features */
.ai-solutions-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--color-blue-dark);
    background-image: url("../img/bg-reports-solutions.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*min-height: 70vh;*/
}
.ai-solutions-section .container {
/*    gap: 60px;
*/    width: 100%;
    /*max-width: 1512px;*/
}
.ai-solutions-main-heading {
    color:#fff;
}
.featured-text {
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-medium);
    font-size: 14px;
    line-height: 20px;
    letter-spacing: var(--letter-spacing);
    color: var(--color-primary);
}
/* REPORTS PAGE - CAROUSEL */
.content-card {
    display: flex;
    gap: 30px;
    padding: 40px 80px;
    background: rgba(9, 9, 9, 0.3);
    border: 1px solid rgba(229, 231, 235, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(1px);
    box-shadow: 0px 0px 24px 0px rgba(47, 198, 255, 0.5);
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
}
.roles-nav {
    /*flex: 1;*/
    width: 581px;
    padding: 32px 0;
    flex: 0 0 40%; /* Fixed width on desktop */
    max-width: 40%;
    min-width: 250px;
}
.roles-nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    height: 100%;
}
.role-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.role-link {
    font-family:var(--font-secondary);
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.11px;
    color: var(--color-light-gray);
    transition: color 0.3s ease;
}
.role-item:hover .role-link, .role-item.active .role-link {
    color: var(--color-primary);
}
.roles-nav .divider {
    height: 2px;
    /* border: none;*/
    /*background-color: var(--color-dark-gray);*/
    /*width: 350px;*/
    /*object-fit: cover;*/ /* To handle SVG scaling */
    width: 100%;
    /*transition: all 0.4s ease;*/
    border: 1px dashed #666;
    transform: scaleX(1);
    transform-origin: left center;
    transition: none; /* disable CSS transition so GSAP takes over */
}
.roles-nav .role-item.active .divider {
    width: 100%; /* or 100% if dynamic */
    /*background-color: #2fc6ff;*/
    border: 1px dashed #2fc6ff;
}
.roles-nav .active-divider {
    background-color: var(--color-primary);
    width: 581px;
}
.use-cases {
    position: relative;
    flex: 1;
    min-width: 0;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    transition: height 0.3s ease;
}
.role-details {
    display: none;
/*    flex: 1;
    width: 100%;
     display: flex;*/
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
    gap: 24px;
    opacity: 0;
    transform: translateY(40px);
    transition:none;
}
.role-details:first-child {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
.role-details.active {
    display: flex;
}
.role-title {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 24px;
    line-height: 27px;
    color: var(--color-primary);
}
.role-use-case {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 20px;
    letter-spacing:var(--letter-spacing);
    color: var(--color-white);
    font-style: normal;
}
.role-description {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 24px;
    letter-spacing: var(--letter-spacing);
    color: var(--color-light-gray);
    font-style: normal;
}
.role-quote {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 24px;
    color: var(--color-primary);
    font-style: italic;
    font-weight: 500;
}
.role-quote strong {
    font-weight: 700;
}
/* CSS from section:reports */
.reports-section {
    /*padding: 80px 20px;
		  padding: 0 10%;*/
}
.reports-subtitle {
    color: var(--color-primary);
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-medium);
    font-size: 14px;
    line-height: 20px;
    letter-spacing: var(--letter-spacing);
    margin: 0 0 10px 0;
}
.reports-title {
    color: var(--color-blue-medium);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 36px;
    line-height: 40px;
    margin: 0;
}
.reports-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.report-card {
    position: relative;
    background-color: var(--color-white);
    border-radius: 24px;
    padding: 24px;
    width: 360px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-shrink: 0;
}
.report-card__image {
    width: 100%;
    height: 321px;
    object-fit: cover;
    border-radius: 14px;
}
.report-card__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}
.report-card__title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}
.report-card__title {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 24px;
    line-height: 1.1;
    color: var(--color-blue-dark);
    margin: 0;
    width:90%;
}

.report-card__description {
    font-family: var(--font-secondary);
    font-size: 14px;
    line-height: 1.2;
    color: var(--color-body-text);
    margin: 0;
}
.report-card__badge {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-blue-premium);
    color: var(--color-white);
    font-size: 12px;
    line-height: 20px;
    padding: 3px 10px;
    border-radius: 4px;
    z-index: 1;
    letter-spacing: var(--letter-spacing);
}

/* CSS from section:cta */
/* CSS from section:what-you-get */
.what-you-get-section {
    background-color: var(--color-white);
    padding: 40px 20px;
}
.what-you-get-section .container {
    /*gap: 60px;*/
    /*padding: 0 15%;*/
}
.content-grid {
    display: flex;
    flex-direction: row;
    gap: 60px;
    width: 100%;
    align-items: flex-start;
}
.report-features {
    flex: 1;
    min-width: 0;
}
.how-it-works-card {
    flex-basis: 570px;
    flex-shrink: 0;
    background-color: var(--color-background);
    border-radius: 24px;
    padding: 40px;
}
.features-title, .card-title {
    color: var(--color-blue-dark);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 24px;
    line-height: 27px;
    margin: 0 0 16px 0;
}
.card-title {
    font-size: 18px;
    line-height: 20px;
}
.features-description, .card-description {
    color: var(--color-blue-dark);
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.11px;
    margin: 0;
}
.features-list, .process-list {
    list-style: none;
    padding: 0;
    margin: 32px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.feature-item, .process-item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
}
.feature-number {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 9999px;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    flex-shrink: 0;
}
.feature-text h4, .process-text h4 {
    color: var(--color-blue-dark);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 24px;
    line-height: 27px;
    margin: 0 0 7px 0;
}
.feature-text p, .process-text p {
    color: var(--color-darker-gray);
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.11px;
    margin: 0;
}
.process-icon-wrapper {
    background-color: var(--color-background-icon);
    border-radius: 9999px;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.process-icon-wrapper img {
    width: 25px;
    height: 25px;
}
.process-text h4 {
    font-size: 24px;
}
.outcome-text {
    color: var(--color-darker-gray);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 24px;
    line-height: 27px;
    margin: 0;
}
/* CTA - MID */
.cta-section-mid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #184D7E;
    background-image: url('../img/replace-days-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 24px;
    /*max-width: 1512px;*/
    min-height: 511px;
    margin: 0 auto;
    color: #ffffff;
    text-align: center;
}
.cta-section-mid .cta-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 852px;
}
.cta-section-mid .cta-heading {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 48px;
    line-height: 1; /* 48px */
    letter-spacing: -1.7px;
    margin: 0;
}
.cta-section-mid .cta-subheading {
    /* Based on node 337:4170 */
    font-family: var(--font-secondary);
    font-size: 20px;
    font-style: normal;
    line-height: 1.4; /* 28px */
    letter-spacing: var(--letter-spacing);
    margin: 0;
}
.cta-section-mid .cta-button {
    display: inline-block;
    padding: 13px 24px;
    border: 1px solid #2fc6ff;
    border-radius: 8px;
    background: none;
    color: #2fc6ff;
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-medium);
    font-size: 16px;
    line-height: 1.2; /* 19.2px */
    letter-spacing: 0.11px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}
.cta-section-mid .cta-button:hover {
    background-color: #2fc6ff;
    color: #000;
}
.cta-section-mid .cta-trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cta-section-mid .cta-trust-icon {
    width: 20px;
    height: 20px;
}
.cta-section-mid .cta-trust-text {
    font-family: var(--font-secondary);
    font-size: 14px;
    line-height: 1.42; /* 20px */
    letter-spacing: 0.1px;
    margin: 0;
}
/* PAGE: INDIVIDUAL REPORT PAGES */
/* CSS from section:hero */
.individual-reports .hero-section {
    background: none;
    background-color: #ffffff;
    justify-content: center;
}
.individual-reports .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    /*max-width: 1400px;*/
    text-align: center;
}
.individual-reports .hero-description {
    text-align: center;
}
.individual-reports .description-lead {
    color: #333333;
    font-family: var(--font-secondary);
    font-size: 24px;
    line-height: 28px;
    margin: 0;
    font-weight: var(--font-weight-medium)!important;
}
.individual-reports .description-body {
    color: #333333;
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 24px;
    margin: 12px 0 0;
}
.individual-reports .trust-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}
.individual-reports .trust-icon {
    width: 20px;
    height: 20px;
}
.individual-reports .trust-text {
    color: #333333;
    font-family: var(--font-secondary);
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}
/* CSS from PAGE: INDIVIDUAL REPORTS PAGE */
#sanctions-hero-section.hero-section{
    background: none;
}

#sanctions-report.report-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    /*min-height: 100vh;*/
  }
  #sanctions-report .report-container {
    background: radial-gradient(173.07% 205.27% at 50% 50%, #00122f 0%, #1a3f7e 54.81%, #0a1931 100%, #322885 100%);
    border: 1px solid #e5e7eb;
    border-radius: 24px;
	/*max-width: 1400px;*/
  }

  #sanctions-report .report-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 36px;
    line-height: 40px;
  }

  #sanctions-report .report-body {
    display: flex;
    justify-content: center;
    gap: 80px;
    align-items: flex-start;
  }

  #sanctions-report .report-preview {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-basis: 380px;
    flex-shrink: 0;
      position: relative;
  }

#sanctions-report .report-preview .report-card__badge{
    left:auto;
    right:-30px;
    top:20px;
}

  #sanctions-report .report-image {
    width: 380px;
    height: 386px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
  }

  #sanctions-report .report-preview-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 0;
  }

  #sanctions-report .report-preview-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 24px;
    line-height: 26.67px;
  }

  #sanctions-report .report-preview-description {
    color: #ffffff;
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.4rem;
  }

  #sanctions-report .report-download-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 24px;
      padding-left: 40px;
      margin-top:1rem;
    background-color: #2fc6ff;
    color:var(--color-blue-medium);
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-medium);
    font-size: 16px;
      border:1px solid var(--color-primary);
    border-radius: 8px;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
    align-self: flex-start;
    background:#fff url("../img/icons/ico-file-pdf.svg") no-repeat 10px 11px;
      background-size:24px;
  }
#sanctions-report .report-download-button:hover{
    background:var(--color-primary) url("../img/icons/ico-file-pdf-wht.svg") no-repeat 10px 11px;
    border:1px solid var(--color-white);
    color:var(--color-white);
    background-size:24px;
}

  #sanctions-report .report-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px;
    background-color: #eaf9ff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
  }

  #sanctions-report .report-details-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  #sanctions-report .details-title {
    color: #111827;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 24px;
    line-height: 26.67px;
  }

  #sanctions-report .details-subtitle {
    color: #111827;
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.11px;
  }

  #sanctions-report .details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  #sanctions-report .detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  #sanctions-report .item-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background-color: #2fc6ff;
    color: #ffffff;
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    border-radius: 9999px;
  }

  #sanctions-report .item-text {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  #sanctions-report .item-title {
    color: #111827;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 24px;
    line-height: 26.67px;
  }

  #sanctions-report .item-description {
    color: #4b5563;
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.11px;
  }
/* PAGE: Case Studies */
.case-study-section {
    padding: 80px 0;
}
.case-study-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
/*  .case-study-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 7px;
    max-width: 1072px;
  }*/
.intro-heading {
    display: block;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 16px;
}
.case-study-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.case-study-details .details-title {
    margin: 0;
    color: #111827;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 24px;
    line-height: 26.67px;
    text-align: left;
}
.case-study-details .details-grid {
    display: flex;
    flex-direction: row;
    gap: 60px;
}
.case-study-details .details-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.case-study-details .detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.case-study-details .item-number {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: #2fc6ff;
    border-radius: 50%;
    color: #ffffff;
    font-family:var(--font-secondary);
    font-size: 12px;
    line-height: 20px;
}
.case-study-details .item-text {
    color: #374151;
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 24px;
}

/* CSS from section: Core-Data How it Works */
.core-data-section {
    background-color: #f9fafb;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}
.core-data-section .pre-title {
    margin: 0;
    color: #2fc6ff;
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-medium);
    font-size: 14px;
    line-height: 20px;
    letter-spacing: var(--letter-spacing);
}
.core-data-section .main-title {
    margin: 0;
    color: #183e6d;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 36px;
    line-height: 40px;
}
.core-data-section .features-card {
    background-color: rgba(47, 198, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    /*max-width: 1280px;*/
}
.core-data-section .features-intro {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.core-data-section .features-intro-title {
    margin: 0;
    color: #111827;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
}
.core-data-section .features-intro-text {
    margin: 0;
    color: #111827;
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.11px;
}
.core-data-section .features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.core-data-section .feature-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}
.core-data-section .feature-icon-wrapper {
    background-color: #dbeafe;
    border-radius: 9999px;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.core-data-section .feature-icon {
    width: 25px;
    height: 25px;
}
.core-data-section .feature-content {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.core-data-section .feature-title {
    margin: 0;
    color: #111827;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 24px;
    line-height: 27px;
}
.core-data-section .feature-description {
    margin: 0;
    color: #4b5563;
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.11px;
}
/* CSS from section:results */
.results-section {
    background-color: #ffffff;
    padding: 64px 20px;
    display: flex;
    justify-content: center;
}
.results-section .results-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.results-section .results-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    text-align: center;
}
.results-section .eyebrow-text {
    margin: 0;
    color: #2fc6ff;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: var(--letter-spacing);
}
.results-section .main-heading {
    margin: 0;
    color: #111827;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 36px;
    line-height: 40px;
}
.results-section .results-body {
    display: flex;
    gap: 32px;
    width: 100%;
    align-items: flex-start;
}
.results-section .intro-column {
    /*flex-basis: 200px;*/
    flex-shrink: 0;
}
.results-section .intro-heading {
    margin: 0;
    color: #111827;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 24px;
    line-height: 1.11;
}
.results-section .features-card {
    flex: 1;
    background-color: #eaf9ff;
    border-radius: 8px;
    padding: 32px;
}
.results-section .features-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.results-section .feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.results-section .feature-icon {
    width: 25px;
    height: 20px;
    object-fit: contain;
    margin-top: 2px;
}
.results-section .feature-content {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.results-section .feature-title {
    margin: 0;
    color: #2fc6ff;
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-medium);
    font-size: 14px;
    line-height: 20px;
    letter-spacing: var(--letter-spacing);
}
.results-section .feature-description {
    margin: 0;
    color: #4b5563;
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.11px;
}
.results-section .fit-card {
    flex-basis: 350px;
    flex-shrink: 0;
    /*padding: 32px 0;*/
}
.results-section .fit-card-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
 .fit-list li{
    list-style:none;
    padding-left: 30px;
    background:url("../img/icons/ico-check-circle-db.svg") no-repeat left 5px;
}
.results-section .fit-icon {
    width: 32px;
    height: 32px;
}
.results-section .fit-content {
    display: flex;
    flex-direction: column;
    gap: 17px;
}
.results-section .fit-title {
    margin: 0;
    color: #374151;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 24px;
    line-height: 1.11;
}
.results-section .fit-description {
    margin: 0;
    color: #4b5563;
    font-family: var(--font-secondary);
    font-size: 14px;
    line-height: 20px;
    white-space: pre-line;
}
.results-section .results-outcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    text-align: center;
    max-width: 892px;
    margin: 40px 0;
}
.results-section .outcome-text {
    margin: 0;
    color: #666666;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 24px;
    line-height: 1.11;
}



/* PAGE: CONTACT US */

/* CSS from section:contact */
#contact{}
#contact.contact-section {
}

.contact-container {
    flex-direction: row;
}



#contact .contact-info-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  /*max-width: 520px;*/
}

#contact .info-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#contact .main-title {
  color: #1f4d97;
  font-family: var(--font-primary);
  font-weight: var(--font-weight-medium);
  font-size: 36px;
  line-height: 40px;
  margin: 0;
}

#contact .description {
  color: #9497a1;
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.11px;
  margin: 0;
}

#contact .info-card {
  background-color: #ffffff;
  border: 1px solid #fafafa;
  border-radius: 12px;
  box-shadow: 0px 0.5px 2px 0px rgba(25, 33, 61, 0.1);
  padding: 24px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
    text-align: left;
}

#contact .icon-wrapper {
  background-color: #2fc6ff;
  border-radius: 80px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

#contact .icon-wrapper img {
  width: 30px;
  height: 30px;
}

#contact .card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

#contact .card-title {
  color: #171717;
  font-family: var(--font-primary);
  font-weight: var(--font-weight-medium);
  font-size: 24px;
  line-height: 26.67px;
  margin: 0;
    text-align: left;
}

#contact .card-subtitle {
  color: #9497a1;
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.11px;
  margin: 0;
}

#contact .card-description,
#contact .card-details {
  color: #171717;
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.11px;
  margin: 0;
    text-align: left;
}

#contact .card-details {
  line-height: 22px;
}

#contact .card-details strong {
  font-weight: var(--font-weight-medium);
}

#contact .contact-form-column {
  flex: 1;
  background-color: #eaf9ff;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0px 12px 30px 17px rgba(24, 92, 255, 0.04);
  width:40%;
  /*max-width: 600px;*/
}

#contact .contact-form {
  display: flex;
  flex-direction: column;
    width: 100%;
}

#contact .form-title {
  color: #1f4d97;
  font-family: var(--font-primary);
  font-weight: var(--font-weight-medium);
  font-size: 24px;
  line-height: 26.67px;
  margin: 0 0 24px 0;
}

#contact .form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px; /* Approximate spacing to button */
}

#contact .form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#contact .form-label {
  color: #9497a1;
  font-family: var(--font-secondary);
  font-size: 12px;
  line-height: 20px;
  letter-spacing: var(--letter-spacing);
}

#contact .form-input,
#contact .form-textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #9497a1;
  padding: 8px 0;
  color: #292d33;
  font-family: var(--font-secondary);
  font-size: 14px;
  line-height: 20px;
  width: 100%;
}

#contact .form-input::placeholder,
#contact .form-textarea::placeholder {
  color: #292d33;
  opacity: 1;
}

#contact .form-input:focus,
#contact .form-textarea:focus {
  outline: none;
  border-bottom-color: #1f4d97;
}

#contact .form-textarea {
  resize: vertical;
  min-height: 81px;
}

#contact .submit-button {
  background-color: #2fc6ff;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-medium);
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.14px;
  padding: 10px 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-align: center;
  width: 100%;
}

/* == PRICING PAGE == */

  .pricing-page-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

  .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-radius: 4px;
  text-decoration: none;
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-medium);
  font-size: 1rem;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

  .btn.button-secondary {
  background-color: var(--color-white);
  border: 1px solid var(--color-blue-light);
  color: var(--color-blue-light);
}

  .btn.button-secondary:hover {
      background-color: var(--color-blue-light);
    color: var(--color-white);
    opacity: 0.9;
}

  .btn.button-primary {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: var(--color-white);
}

  .btn.button-primary:hover {
      background-color: var(--color-white);
  border: 1px solid var(--color-primary);
      color: var(--color-primary);
  opacity: 0.9;
}


.pricing-section .features-list, .enterprise-section .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

  .pricing-section .features-list li, .enterprise-section .features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
  font-weight: var(--font-weight-medium);
  text-align: left;
    padding-left:30px;
    background: url("../img/icons/ico-check-circle-db.svg") no-repeat;
}
 .pricing-section .best-seller-wrapper .features-list li {
    background: url("../img/icons/ico-check-circle-lb.svg") no-repeat;
}

   .pricing-section .features-list li img {
  width: 16px;
  height: 16px;
  margin-top: 2px;
    display:none;
}

/*.pricing-grid .pricing-card .card-body */

  .divider {
  width: 100%;
  height: 1px;
  background-color:var(--color-blue-light);
  border: none;
      opacity: .1;
}

  .divider-secondary {
  background-color:var(--color-primary);
opacity: .3;
}

/* CSS from section:pricing-plans */
  .pricing-section, .enterprise-section {
    width: 100%;
    /*max-width: 1338px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 52px;
  }

    .toggle-container {
    display: flex;
        flex-direction: row;
    align-items: center;
    gap: 12px;
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-medium);
    font-size: 14px;
  }
    .toggle-label { color: var(--color-primary); }
      .toggle-label:hover { color: var(--color-blue-medium); }
/*    .toggle-label.monthly { color: var(--color-secondary); }
    .toggle-label.annualy { color: var(--color-primary); }*/
      .toggle-label.p-active { color: var(--color-blue-medium); }

    .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
  }
    .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
    .slider {
    /*position: absolute;*/
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-primary);
    transition: .4s;
    border-radius: 81px;
      /* Toggle Button */

/* Radio Button Circle */
box-sizing: border-box;
background: #2FC6FF;
border: 0.636364px solid var(--color-primary);
/* Neutral/Shadow 01 */
box-shadow: 0px 0.5px 2px rgba(25, 33, 61, 0.1);
position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  border-radius: 26px;
  transition: background-color 0.3s ease;

  }
    .slider:before {
    /*position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 2px;
    bottom: 2px;
    background-color: var(--color-white);
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0px 0.5px 1px 0px rgba(25, 33, 61, 0.25), inset 0px -0.5px 1px 0px rgba(25, 33, 61, 0.3);*/
  }
.slider::before {
  content: "";
  position: absolute;
  height: 22px;
  width: 22px;
  left: 2px;
  bottom: 1px;
  background-color: white;
  border-radius: 50%;
  transform: translateX(0); /* Important */
  transition: background 0.3s;
}
    input:checked + .slider {
    background-color: var(--color-blue-medium);
        left: 10px;
  }
    input:checked + .slider:before {
    transform: translateX(22px);
  }

    .pricing-grid {
    display:grid;
    grid-template-columns:repeat(4, 1fr);
      align-items: center;
    gap: 22px;
    width: 100%;
  }


    .best-seller-wrapper {
    /*background-color: var(--color-primary);*/
    border-radius: 10px;
    padding: 2px;
    box-shadow: 0px 4px 8px 0px rgba(25, 33, 61, 0.28);
      border: 1px solid var(--color-primary);
  }

    .pricing-card {
    position: relative;
      background: linear-gradient(172.03deg, #FFFFFF 61.54%, #EEEEEE 100%);
    border: 1px solid #2FC6FF;
    border-radius: 8px;
    box-shadow: 0px 4px 8px 0px rgba(25, 33, 61, 0.28);
      align-self: center;
  }
   .best-seller-wrapper .pricing-card {
    box-shadow: none;
     border: 1px solid #fff;
      background: linear-gradient(135deg, #ECFAFF 195%, #2FC6FF 130%);
  }

    .card-header {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    min-width:200px;
    padding: 32px 0 24px;
    border-radius: 0px 0px 12px 12px;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.25);
    z-index: 2;
  }
    .card-header h3 {
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 32px;
    line-height: 34px;
    text-align: center;
    text-shadow: 0px -1px 1px rgba(0, 0, 0, 0.25);
  }
    .tier1-header {
    background: linear-gradient(315deg, #1f4d97 0%, #2563eb 141.42%);
    top:-60px;
  }
    .tier2-header {
    background: linear-gradient(315deg, #00709a 0%, #2fc6ff 141.42%);
  }
    .tier3-header {
    background: linear-gradient(315deg, #1f4d97 0%, #2563eb 141.42%);
  }

    .card-body {
    padding: 88px 24px 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    /*height: 100%;*/
  }

    .best-seller-banner {
    background: radial-gradient(173.07% 205.27% at 50% 50%, #0a1931 0%, #322885 0%, #1a3b7e 45.19%, #00122f 100%);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 16px 10px;
    text-align: center;
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-semibold);
    font-size: 20px;
    line-height: 24px;
  }
    .best-seller-banner p { margin: 0; }

    .card-title {
    margin: 0;
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-medium);
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    min-height: 60px;
        /* Paragraph */
    color: var(--color-blue-light);

  }
.pricing-card .card-title{
    min-height:auto;
}
    .card-description {
    margin: 0;
    color: var(--color-darker-gray);
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    /*min-height: 60px;*/
  }
    .card-description.bold { font-weight: var(--font-weight-medium); }

    .price-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 10px 0 0;
  }
    .price-display {
    display: flex;
        flex-direction: column;
    align-items: center;
        width:100%;
    gap: 8px;
        transition: opacity 0.3s ease;
  }
    .price-amount {
    margin: 0;
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-bold);
    font-size: 1.5rem;
    line-height: 1;
      color:var(--color-blue-light);
        font-variant-numeric: tabular-nums;
  }
.annual-bill{
width: 100%;
height: auto;
font-family:var(--font-secondary);
font-style: normal;
font-weight: var(--font-weight-medium);
font-size: 14px;
line-height: 18px;
leading-trim: both;
text-edge: cap;
display: flex;
    justify-content: center;
align-items: center;
text-align: center;
color: #597995;
}
.hide-price{
      display: none!important;
  opacity: 0;
  pointer-events: none;
}
    .price-amount.free { font-size: 48px; }
    .price-amount.small { font-size: 40px; }
    .price-period {
    color: var(--color-primary);
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-medium);
    font-size: 12px;
    line-height: 18px;
    padding-bottom: 4px;
  }
    .price-period.large { font-size: 16px; }
    .price-note {
    margin: 0;
    color: var(--color-blue-medium);
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
    .volume-discounts {
    margin: 0;
    color: var(--color-charcoal-gray);
    font-family: var(--font-secondary);
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }

    .features-list.bold-features li { font-weight: 700; }
    .addons-section {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-darker-gray);
  }
    .addons-title {
    font-weight: var(--font-weight-medium);
    color: var(--color-primary);
    margin: 0 0 8px 0;
  }
    .addons-details {
    margin: 0;
  }
    .addons-details li{
    padding:.3rem 0;
        border-bottom:1px dashed #ddd;
  }
    /*.addons-details strong { font-weight: var(--font-weight-medium); }*/

    .section-divider {
    border: none;
    border-top: 1px solid var(--color-primary);
    width: 100%;
    max-width: 1338px;
    margin: 0;
  }

     .enterprise-card {
    width: 100%;
  }
     .enterprise-card .card-body {
    align-items: center;
  }
     .enterprise-header {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
     .enterprise-header .price-display {
    align-items: center;
  }
     .enterprise-content {
    display: flex;
    gap: 16px;
    width: 100%;
  }
     .enterprise-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
     .enterprise-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
     .tailored-title {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 36px;
    line-height: 40px;
    color: #183e6d;
    text-align: center;
  }
     /*.contact-btn {
    padding: 26px;
    font-size: 24px;
  }*/

/* TOGGLE PRICING */
/* Core Toggle */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  margin: 0 12px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
    display:none;
}
.slider {
  background-color: #ccc;
  border-radius: 26px;
  width: 100%;
  height: 100%;
  position: relative;
}
.knob {
  position: absolute;
  width: 22px;
  height: 22px;
  top: 2px;
  left: 2px;
  background-color: white;
  border-radius: 50%;
  z-index: 2;
}

/* Labels */
.toggle-label {
  font-size: 0.9rem;
  transition: color 0.3s, opacity 0.3s;
}
.toggle-label.p-active {
  font-weight: var(--font-weight-medium);
  color: #111;
}

/* Layout-safe pricing blocks */
.price-swap {
  position: relative;
  min-height: 60px;
    width:100%;
}
.price-display {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.hide-price {
  display: none !important;
  opacity: 0;
  pointer-events: none;
}

/* Typography */
.price-amount {
  font-size: 1.5rem;
  font-weight: var(--font-weight-medium);
  font-variant-numeric: tabular-nums;
    text-align: center;
}




  @media (max-width: 768px) {
      .pricing-page-container {
      padding: 40px 20px;
    }
      .pricing-grid {
      grid-template-columns: 1fr;
    }
       .enterprise-content {
      flex-direction: column;
      gap: 32px;
    }
      .card-title,   .card-description {
      /*min-height: auto;*/
    }
  }
/*Generated with Instant*/


/* SECTION | PRICING PAGE | FAQ's */
.faq-intro {
    flex: 0 0 336px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .faq-main-title {
    margin: 0;
    color: #183e6d;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
  }

  .faq-contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .faq-contact-text {
    margin: 0;
    color: #4b5563;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    line-height: 24px;
  }

  .faq-contact-text strong {
    font-weight: 700;
    color: #111827; /* Slightly darker for emphasis */
  }

  .faq-buttons {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    transition: all 0.3s ease;
  }

  .btn-icon {
    width: 18px;
    height: 18px;
  }

  .btn-primary {
    background-color: #2fc6ff;
    color: #ffffff;
  }
  
  .btn-primary:hover {
    opacity: 0.9;
  }

  .btn-secondary {
    background-color: transparent;
    color: #2fc6ff;
    border: 2px solid #2fc6ff;
    padding-top: 14px; /* Adjust padding to account for border */
    padding-bottom: 14px;
  }

  .btn-secondary:hover {
    background-color: #2fc6ff;
    color: #ffffff;
  }

.faq-section {
  background-color: var(--white);
  padding: 40px;
  border-radius: 30px;
}


.faq-container {
  display: flex;
  flex-direction: row;
  gap: 80px;
}
.faq-title {
  font-family: var(--font-display);
  color: #183e6d;
  font-size: 36px;
  font-weight: 700;
}
.faq-list {
flex: 0 0 700px;
  background-color: #f9fbff;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  gap: 30px;
align-items: flex-start;
}
.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 14px;
    background-color: #f9fbff;
    display: flex;
    flex-direction: column;
    width:100%;
    
}
.faq-item summary {
  display: flex;
  justify-content:flex-start;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #1b263b;
    width:100%;
}
.faq-item summary span.question{
  display: flex;
  justify-content:flex-start;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #1b263b;
    width:90%;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}

.icon-toggle {
    
  width: 24px;
  height: 24px;
  background-image:url("../img/landing-page/Plus.svg");
  background-repeat: no-repeat;
  background-size:24px 24px;
  transition: transform 0.3s ease;
}

.faq-item[open] .icon-toggle {
  background-image: url("../img/landing-page/Minus.svg");
    background-size:24px 24px;
  transform: rotate(180deg);
}

.faq-item p {
    display: inline-flex;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.4;
  color: #1b263b;
    opacity: 1;
  transition: none;
}
.faq-item .icon-plus { display: block; }
.faq-item .icon-minus { display: none; }
.faq-item[open] .icon-plus { display: none; }
.faq-item[open] .icon-minus { display: block; }

 @media (max-width: 1200px) {
    .faq-container {
      flex-direction: column;
      padding: 0 80px;
      gap: 60px;
    }
    .faq-intro {
      flex: 1;
    }
  }

  @media (max-width: 768px) {
    .faq-section {
      padding: 40px 0;
    }
    .faq-container {
      padding: 0 24px;
      gap: 40px;
    }
    .faq-main-title {
      font-size: 32px;
    }
    .faq-list {
      padding: 20px 16px;
    }
  }


/* SUPER CLASSES */
.width100 {
    width: 100%;
    margin: 0 auto;
}
.bgwhite {
    background-color: var(--color-white);
}
.bgGray {
    background-color: var(--color-background);
}
.text-Color-White{
    color: #fff;
}
.addMarginTB{margin:1rem 0;}

