/* ─── Full-screen Loading Spinner ───────────────────────────── */
#spinner {
  position: fixed; inset:0;
  background:#000;
  display:flex; align-items:center; justify-content:center;
  z-index:2000;
}
.circles-spinner {
  position: relative;
  width: 80px; height: 80px;
}
.circles-spinner .circle {
  position: absolute;
  border: 4px solid transparent;
  border-top-color: #FF4500;
  border-radius: 50%;
  animation: rotate 1s linear infinite;
}
.circles-spinner .c1 { width:80px; height:80px; top:0; left:0; animation-duration:1.2s; }
.circles-spinner .c2 { width:60px; height:60px; top:10px; left:10px; animation-duration:0.9s; }
.circles-spinner .c3 { width:40px; height:40px; top:20px; left:20px; animation-duration:0.6s; }
/* ─── Theme (derived from the 2nd screenshot) ───────────────────── */
:root{
  --bg-900:#0b0f1a;        /* page background (kept for components) */
  --bg-850:#121626;        /* card background */
  --bg-800:#151a2e;        /* dark panel/gradient top */
  --bg-700:#0b0f1a;        /* gradient bottom */

  --text-100:#ffffff;
  --text-300:#c9d0e6;
  --text-400:#aab1c9;

  --accent:#6c63ff;        /* primary purple */
  --accent-600:#5a52e8;    /* hover */
  --accent-ring:rgba(108,99,255,.35);
}

/* GLOBAL FIXES: remove any horizontal scroll/blank right space */
*,
*::before,
*::after{ box-sizing:border-box; }
html, body{
  background:#000000 !important;
  color: var(--text-100);
  overflow-x: hidden;       /* ← kills right-side extra space */
  max-width: 100%;
}
img, video{ max-width:100%; height:auto; display:block; }

/* ─── Header Styles (widths/markup unchanged) ───────────────────── */

/* Ensure header/menu sits above everything; dropdown even higher */
.site-header { position: sticky; top: 0; z-index: 3000; }
.dropdown-menu { z-index: 4000; } /* always above sections */

.site-header .navbar.bg-body-tertiary {
  background-color: #111111 !important;
}
.site-header .navbar {
  --bs-navbar-color: rgba(255,255,255,.9);
  --bs-navbar-hover-color: #ffffff;
  --bs-navbar-active-color: #ffffff;
  --bs-navbar-brand-color: #ffffff;
  --bs-navbar-brand-hover-color: #ffffff;
  --bs-navbar-toggler-border-color: rgba(255,255,255,.35);
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  min-height: 88px;
}

.navbar .dropdown-menu.show { display: block; }

.dropdown-menu {
  background-color: #111111;
  color: #ffffff;
  border: 0;
}
.dropdown-item { color: rgba(255,255,255,.9); }
.dropdown-item:hover,
.dropdown-item:focus {
  color: #ffffff;
  background-color: #1a1a1a;
}
.dropdown-divider { border-top-color: #2a2a2a; }

/* Desktop view */
@media (min-width: 992px) {
  .container { max-width: 100%; }

  .site-header { margin: 16px auto 0; }
  .site-header .navbar {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    overflow: visible;
    min-height: 88px;
    position: relative;
    z-index: 100;
  }

  .site-header .container {
    max-width: 1000px;
    width: 100%;
    margin-inline: auto;
  }

  .navbar .dropdown-menu {
    position: absolute;
    display: none;
    padding-top: .5rem;
    padding-bottom: .5rem;
    z-index: 4000;
  }
  .navbar .dropdown-menu.show { display: block; }
}

/* Mobile view */
@media (max-width: 991.98px) {
  .site-header { margin: 0; }
  .site-header .navbar { min-height: 96px; }

  .navbar-collapse { text-align: center; }
  .navbar .navbar-nav {
    width: 100%;
    align-items: center !important;
    justify-content: center;
  }
  .navbar .nav-link { width: 100%; }

  .navbar-toggler { width: auto; padding: .5rem .75rem; }

  .navbar .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 0;
    box-shadow: none;
    border: 0;
    display: block;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    transition: max-height .3s ease, opacity .2s ease, padding .2s ease;
  }
  .navbar .dropdown-menu.show {
    max-height: 500px;
    opacity: 1;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}

/* Logo placeholder */
.brand-logo {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--accent), #8ea2ff);
  display: inline-block;
}

/* Links & active state */
.navbar .nav-link { padding-top: .75rem; padding-bottom: .75rem; }
.navbar .nav-link.active { font-weight: 600; }

/* BTN: Get a Quote — purple theme */
.site-header .btn-quote{
  --quote-bg: var(--accent);
  --quote-bg-hover: var(--accent-600);
  --quote-text: #ffffff;

  display: grid !important;
  place-items: center !important;
  box-sizing: border-box;
  height: 48px !important;
  padding: 0 18px !important;
  line-height: 1 !important;
  text-align: center;
  white-space: nowrap;

  background-color: var(--quote-bg);
  color: var(--quote-text);
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;

  box-shadow: 0 6px 18px rgba(108,99,255,0.25);
  transition: background-color .2s ease, box-shadow .2s ease, transform .05s ease, color .2s ease;
}
.site-header .btn-quote:hover,
.site-header .btn-quote:focus{
  background-color: var(--quote-bg-hover);
  box-shadow: 0 8px 22px rgba(108,99,255,0.35);
}
.site-header .btn-quote:focus-visible{
  outline:none;
  box-shadow: 0 0 0 4px var(--accent-ring), 0 8px 22px rgba(108,99,255,0.35);
}
@media (max-width: 991.98px){
  .site-header .btn-quote{ width:100%; margin-top:.5rem; }
}

/* ─── Shared headings / layout (initial) ───── */
.section-heading{
  width:1170px; margin:0 auto 8px; color:#fff; font-size:32px; font-weight:800;
  text-align:center;
}
.section-lead{
  width:1170px; margin:0 auto 16px; color:var(--text-400);
  text-align:center;
}

/* ─── Minimal Hero (left-aligned only) ─────────────────────────── */
.hero-section{
  width:1170px;
  margin:16px auto;
  border-radius:20px;
  display:flex;
  align-items:center;
  padding:28px 40px 28px 20px;
  box-sizing:border-box;
  overflow:hidden;
  gap:24px;
  background: radial-gradient(1200px 400px at 80% 30%, rgba(108,99,255,.25) 0%, rgba(108,99,255,0) 60%),
              linear-gradient(135deg, #242a49 0%, #161b33 55%, #0d1122 100%);
}
.hero-section__content{ flex:1; text-align:left; }
.hero-section__title{ font-size:44px; font-weight:800; color:#fff; margin:0 0 10px; line-height:1.1; }
.hero-section__intro{ color:var(--text-300); font-size:16px; line-height:1.6; margin:0 0 16px; }
.btn-primary-cta{
  background:var(--accent);
  color:#fff;
  padding:12px 18px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  box-shadow:0 6px 18px rgba(108,99,255,.25);
  display:inline-block;
}
.btn-primary-cta:hover{ background:var(--accent-600); color:#fff; }
.btn-secondary-cta{
  background:rgba(255,255,255,.12);
  color:#fff; padding:12px 18px; border-radius:12px; text-decoration:none; font-weight:600;
  backdrop-filter:saturate(110%) blur(2px);
}
.hero-section__image{ flex:none; }
.hero-section__image img{ max-height:300px; width:auto; display:block; object-fit:contain; }

/* ─── What We Do / Grow Section (GRID 3x2 + content row) ──────── */
.grow-section{
  width:1170px; margin:32px auto 0; background:#0000; border-radius:35px; padding:40px; box-sizing:border-box;
  background:linear-gradient(180deg, var(--bg-800) 0%, var(--bg-700) 100%);
}
.grow-section__container{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grow-section__features{
  grid-column: 1 / -1;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
  margin:0;
}
.feature{
  background: linear-gradient(to bottom, rgba(17,17,17,1) 0%, rgba(17,17,17,0) 100%);
  border-radius:20px; padding:20px;
  display:flex; align-items:flex-start; gap:16px;
  width:auto; height:auto;
}
.feature__icon{ font-size:36px; color:var(--accent); flex-shrink:0; width:36px; height:36px; }
.feature__title{ font-size:18px; font-weight:800; color:#fff; margin:0 0 4px; }
.feature__title a{ color:#fff; text-decoration:none; }
.feature__desc{ font-size:14px; color:var(--text-300); margin:0 0 8px; line-height:1.5; }
.feature__cta{ font-size:14px; color:var(--accent); text-decoration:none; font-weight:700; }

.grow-section__content{
  grid-column: 1 / -1;           /* full-width third row */
  display:flex; flex-direction:column; justify-content:center; align-items:center;
  text-align:center;
}
.grow-section__title{ font-size:36px; font-weight:700; color:#fff; margin:0 0 16px; line-height:1.2; }
.grow-section__title .highlight{ color:var(--accent); }
.grow-section__text{ font-size:14px; color:var(--text-300); margin:0 0 24px; line-height:1.6; }
.grow-section__btn{
  background:var(--accent); color:#fff; font-size:18px; font-weight:800; text-decoration:none;
  display:inline-block; width:200px; padding:12px 0; border-radius:15px; text-align:center;
}
.grow-section__btn:hover{ background:var(--accent-600); }

/* ─── How It Works ───────────────────────────────────────────── */
.how-section{
  width:1170px; margin:50px auto 0; padding:40px; background:#0000; border-radius:20px; color:#fff; box-sizing:border-box;
  background:linear-gradient(180deg, var(--bg-800) 0%, var(--bg-700) 100%);
}
.how-section__heading{ font-size:36px; font-weight:800; text-align:center; margin:0 0 32px; }
.how-section__steps{ display:flex; gap:40px; justify-content:space-between; }
.how-step{ flex:1; display:flex; flex-direction:column; align-items:center; text-align:center; }
.how-step__number{
  width:60px; height:60px; background:var(--accent); border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-size:24px; font-weight:700; color:#fff; margin-bottom:16px;
}
.how-step__title{ font-size:18px; font-weight:800; margin:0 0 12px; }
.how-step__text{ font-size:14px; color:var(--text-400); line-height:1.6; margin:0; }

/* ─── Results / Reporting Section ───────────────────────────── */
.reporting-section{
  width:1170px; min-height:460px; margin:50px auto 0;
  border-radius:20px; padding:40px; box-sizing:border-box;
  background:linear-gradient(180deg, var(--bg-800) 0%, var(--bg-700) 100%);
}
.reporting-section__container{ display:flex; align-items:center; gap:40px; min-height:380px; }
.reporting-section__content{ flex:1; text-align:center; }
.reporting-section__title{ font-size:32px; font-weight:800; margin:0 0 16px; color:#fff; }
.reporting-section__title--brand{ color:#fff; }
.reporting-section__text{ font-size:15px; color:var(--text-300); margin:0 0 12px; }
.results-list{ margin:0 0 12px 18px; color:#fff; line-height:1.6; text-align:left; display:inline-block; }
.inline-cta{ color:#cfd6ff; text-decoration:underline; }
.reporting-section__image{ flex:none; }
.reporting-section__image img{ max-height:300px; width:auto; display:block; object-fit:contain; }

/* ─── Technology & Compliance ───────────────────────────────── */
.tech-section{
  width:1170px; margin:50px auto 0; padding:40px; background:#0000; border-radius:20px; color:#fff; box-sizing:border-box;
  background:linear-gradient(180deg, var(--bg-800) 0%, var(--bg-700) 100%);
  text-align:center;
}
.tech-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:12px; text-align:left; }
.tech-grid ul{ margin:0; padding-left:18px; color:var(--text-300); }
.tech-cta{ margin-top:16px; }
.tech-cta .btn-primary-cta{ background:var(--accent); }
.tech-cta .btn-primary-cta:hover{ background:var(--accent-600); }

/* ─── Pricing Section ───────────────────────────────────────── */
.pricing-section{
  width:1170px; margin:50px auto; padding:40px;
  border-radius:20px; box-sizing:border-box; color:#fff;
  background:linear-gradient(180deg, var(--bg-800) 0%, var(--bg-700) 100%);
}
.pricing-section__inner{ display:flex; flex-direction:column; gap:40px; }
.pricing-section__header{ text-align:center; }
.pricing-section__sub{ font-size:1rem; font-weight:700; color:var(--text-400); margin:0 0 8px; }
.pricing-section__title{ font-size:2.5rem; font-weight:800; margin:0 0 16px; }
.pricing-section__lead{ font-size:1rem; color:var(--text-300); margin:0 0 24px; }

.pricing-grid{ display:flex; gap:2rem; flex-wrap:wrap; justify-content:center; align-items:stretch; }

.pricing-card{
  background:#111; border-radius:20px; padding:2.5rem 2rem;
  flex:1 1 260px; max-width:350px; text-align:center;
  box-shadow:0 12px 40px rgba(0,0,0,.6);
  display:flex; flex-direction:column; color:#fff; background:var(--bg-850);
}
.pricing-card h3{ font-size:1.75rem; font-weight:800; margin-bottom:.5rem; }
.pricing-card .limit{ font-size:1rem; color:var(--text-400); margin-bottom:1rem; }

.pricing-card.starter{ position:relative; }
.pricing-card.starter .recommended-banner{
  position:absolute; top:0; left:0; right:0; padding:.75rem 0;
  background:var(--accent); color:#fff; font-weight:800; text-align:center;
  border-top-left-radius:20px; border-top-right-radius:20px;
}
.pricing-card.starter h3{ margin-top:2.5rem; }

.prices .price{ font-size:2rem; font-weight:800; margin:0 0 .25rem; }
.prices .price span{ font-size:1rem; font-weight:500; color:#777; }

.features-list{ list-style:none; padding:0; margin:1.5rem 0 2rem; text-align:left; flex-grow:1; }
.features-list li{ position:relative; padding-left:1.75rem; margin-bottom:.5rem; color:var(--text-300); }
.features-list li::before{ content:'✔'; position:absolute; left:0; color:var(--accent); font-weight:800; }

.pricing-card .btn-cta{
  margin-top:auto; padding:.75rem 2rem; border-radius:50px;
  background:var(--accent); color:#fff; font-weight:700; text-decoration:none; border:0;
  transition:transform .3s, box-shadow .3s, background .2s;
}
.pricing-card .btn-cta:hover{ background:var(--accent-600); transform:translateY(-2px); }

/* ─── See It In Action ─────────────────────────────────────── */
.action-section{ width:1170px; margin:15px auto; border-radius:20px; padding:40px; box-sizing:border-box; }
.action-section__title{ text-align:center; font-size:36px; font-weight:800; color:#fff; margin:0 0 24px; }
.action-section__video-container{ width:calc(100% + 80px); margin:0 -40px; overflow:hidden; }
.action-section__video-container video{ width:100%; height:500px; object-fit:cover; }

/* ─── Testimonials ─────────────────────────────────────────── */
.testimonials-section{
  width:1170px; margin:50px auto; padding:0; background:#0000; border-radius:20px; box-sizing:border-box;
}
.testimonials-section__heading{ font-size:36px; font-weight:800; margin:0 0 32px; color:#fff; text-align:center; }
.testimonials-section__heading--brand{ color:var(--accent); display:inline-block; }
.testimonials-section__container{ display:flex; gap:40px; flex-wrap:wrap; }
.testimonial{
  background:var(--bg-850); border-radius:20px; padding:32px; flex:1 1 320px;
  display:flex; flex-direction:column; justify-content:space-between; min-height:220px;
}
.testimonial__quote-icon{ font-size:48px; color:var(--accent); }
.testimonial__text{ font-size:16px; line-height:1.6; color:#fff; margin:16px 0; flex-grow:1; }
.testimonial__author{ display:flex; align-items:center; gap:16px; }
.testimonial__author-img{ width:48px; height:48px; border-radius:50%; object-fit:cover; }
.testimonial__author-name{ font-size:16px; font-weight:800; color:#fff; margin:0; }
.testimonial__author-role{ font-size:14px; color:#777; margin:0; }

/* ─── Ready Section ───────────────────────────────────────── */
.ready-section{
  width:1170px; margin:50px auto 0; padding:40px; background:#0000; border-radius:20px; color:#fff; box-sizing:border-box; text-align:center;
  background:linear-gradient(180deg, var(--bg-800) 0%, var(--bg-700) 100%);
}
.ready-ctas{ display:flex; gap:12px; justify-content:center; margin:8px 0 6px;}
.micro-trust{ color:var(--text-400); font-size:13px; }

/* ─── Contact ─────────────────────────────────────────────── */
.contact-section{ width:1170px; margin:50px auto; padding:40px; border-radius:20px; box-sizing:border-box; background:linear-gradient(180deg, var(--bg-800) 0%, var(--bg-700) 100%); }
.contact-section__container{ display:flex; gap:40px; }
.contact-info{ flex:1; display:flex; flex-direction:column; gap:24px; align-items:center; text-align:center; }
.contact-info__heading{ font-size:36px; font-weight:800; margin:0; color:#fff; }
.contact-info__heading--brand{ color:var(--accent); }
.contact-info__item{ display:flex; align-items:center; gap:16px; }
.contact-info__item i{ font-size:24px; color:var(--accent); }
.contact-info__item span{ font-size:14px; color:#fff; }
.contact-form{ flex:1; display:flex; flex-direction:column; gap:24px; }
.contact-form__row--inline{ display:flex; gap:20px; }
.contact-form__row input,
.contact-form__row textarea{
  background: transparent; border: 1px solid #2b304a; border-radius: 8px; padding: 12px; color: #fff; font-size: 14px; font-family: inherit;
}
.contact-form__row--inline input{ flex:1; }
.contact-form__row textarea{ width:100%; height:100px; resize:none; }
.contact-form__submit{
  align-self:flex-start; background:var(--accent); color:#fff; border:none; border-radius:15px; padding:12px 70px; font-size:16px; font-weight:700; cursor:pointer;
  box-shadow:0 6px 18px rgba(108,99,255,.25);
}
.contact-form__submit:hover{ background:var(--accent-600); }
/* GET IN TOUCH: force left alignment for details */
.contact-section .contact-info{
  align-items: flex-start !important; /* stop centering the column */
  text-align: left !important;
}

/* keep each line starting from the left edge */
.contact-section .contact-info__item{
  justify-content: flex-start !important;
}


/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-section{ width:1170px; margin:50px auto 0; padding:40px; border-radius:20px; box-sizing:border-box; color:#fff; background:linear-gradient(180deg, var(--bg-800) 0%, var(--bg-700) 100%); }
.faq-section__heading{ font-size:36px; font-weight:800; text-align:center; margin:0 0 32px; }
.faq-list{ display:flex; flex-direction:column; gap:24px; }
.faq-item{ border-bottom:1px solid #2b304a; padding-bottom:24px; }
.faq-item:last-child{ border-bottom:none; }
.faq-question{
  font-size:18px; font-weight:800; margin:0; list-style:none; position:relative; padding-left:2em; cursor:pointer; outline:none; color:#fff;
}
.faq-question::-webkit-details-marker{ display:none; }
.faq-question::before{ content:"+"; position:absolute; left:0; top:0; font-size:24px; line-height:1; color:var(--accent); }
.faq-item[open] .faq-question::before{ content:"–"; }
.faq-answer{ margin:8px 0 0; font-size:14px; line-height:1.6; color:var(--text-300); padding-left:2em; }

/* ─── Footer (widths/markup unchanged) ────────────────────── */
.footer-section{
  width:1170px; margin:50px auto 0; padding:40px; border-radius:20px; box-sizing:border-box; color:#fff;
  background:linear-gradient(180deg, var(--bg-800) 0%, var(--bg-700) 100%);
}
.footer-container{
  display:grid;
  grid-template-columns:250px 1fr 220px 220px;
  align-items:flex-start; justify-content:space-between; gap:40px; text-align:left;
}
.footer-logo__img{ width:40px; height:40px; border-radius:8px; }
.footer-logo__text{ font-size:24px; font-weight:500; margin:0; line-height:1; }
.footer-logo__tiger{ color:#fff; }
.footer-logo__pay{ color:var(--accent); }

.footer-about__text{ font-size:14px; line-height:1.6; margin:0 0 24px; color:var(--text-300); }
.footer-social{ display:flex; gap:14px; flex-wrap:wrap; }
.footer-social a{
  --accent:var(--accent);
  position:relative; display:grid; place-items:center; width:40px; height:40px; border-radius:999px;
  background:rgba(255,255,255,.08); color:#fff; text-decoration:none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  box-shadow:0 0 0 0 rgba(108,99,255,0); overflow:visible; will-change:transform;
}
.footer-social a i{ font-size:18px; line-height:1; z-index:1; transition:transform .2s ease; }
.footer-social a::before{
  content:""; position:absolute; inset:-4px; border-radius:inherit;
  background: radial-gradient(circle, rgba(108,99,255,.45) 0%, rgba(108,99,255,0) 60%);
  opacity:0; transform:scale(.8); pointer-events:none;
}
@keyframes socialPulse{ 0%{opacity:.55; transform:scale(.9);} 100%{opacity:0; transform:scale(1.7);} }
.footer-social a:hover, .footer-social a:focus-visible{
  background:var(--accent); color:#fff; transform:translateY(-3px) scale(1.05);
  box-shadow:0 12px 24px rgba(108,99,255,.35); outline:none;
}
.footer-social a:hover i, .footer-social a:focus-visible i{ transform:scale(1.08); }
.footer-social a:hover::before, .footer-social a:focus-visible::before{ animation:socialPulse .9s ease-out forwards; }

.footer-col__heading{ font-size:18px; font-weight:700; margin:0 0 16px; color:#fff; }
.footer-col__list{ list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.footer-col__list a{ text-decoration:none; color:#fff; font-size:16px; transition: color .2s ease, transform .2s ease; }
.footer-col__list a:hover{ color:var(--accent); transform:translateX(3px); }

.footer-base{ width:1170px; margin:0 auto 50px; padding-top:16px; border-top:1px solid var(--accent); text-align:center; box-sizing:border-box; }
.footer-base p{ font-size:14px; color:#fff; margin:0; }

/* Responsive footer width behavior retained */
@media (max-width:991.98px){
  .footer-section{ width:100%; margin:40px 0 0; border-radius:0; }
  .footer-container{ grid-template-columns:1fr; gap:24px; }
  .footer-base{ width:100%; margin:0 0 32px; }
}

/* ─── Mobile / Tablet Overrides (merged) ───────────────────── */
@media only screen and (max-width: 768px) {

  /* Full widths */
  .header,
  .hero-section,
  .grow-section,
  .pricing-section,
  .action-section,
  .how-section,
  .reporting-section,
  .testimonials-section,
  .contact-section,
  .faq-section,
  .footer-section,
  .footer-base,
  .about-hero,
  .about-section,
  .mission-vision,
  .team-section,
  .contact-page,
  .policy-page,
  .terms-page,
  .disclaimers-page {
    width: 100%;
    margin: 16px 0;
    border-radius: 0;
    box-sizing: border-box;
  }

  /* Hero */
  .hero-section{ flex-direction:column; height:auto; padding:40px 20px; }
  .hero-section__content{ text-align:center; }
  .hero-section__title{ font-size:32px; }
  .hero-section__image{ margin-top:24px; display:flex; justify-content:center; }
  .hero-section__image img{ width:90%; max-height:260px; margin:0; }

  /* What We Do: grid collapses */
  .grow-section__container{ grid-template-columns:1fr; }
  .grow-section__features{ grid-template-columns:1fr; }
  .feature{ width:100%; height:auto; }

  .grow-section__title{ font-size:28px; }
  .grow-section__btn{ width:100%; }

  /* Pricing */
  .pricing-section{ padding:40px 20px; }
  .pricing-grid{ flex-direction:column; gap:24px; }
  .pricing-card{ max-width:100%; padding:2rem 1.5rem; }

  /* Action (video) */
  .action-section{ padding:40px 0 0; }
  section.action-section{ display:flex !important; flex-direction:column !important; align-items:center !important; }
  .action-section__video-container{ width:90%; margin:0; }             /* ← prevents overflow */
  .action-section__video-container video{ height:240px; }

  /* How it works */
  .how-section{ padding:40px 20px; }
  .how-section__steps{ flex-direction:column; gap:24px; }

  /* Reporting */
  .reporting-section{ min-height:auto; padding:40px 20px; }
  .reporting-section__container{ flex-direction:column; }
  .reporting-section__image img{ max-height:260px; width:100%; }
  .reporting-section__title{ font-size:28px; }
  .reporting-section__text{ text-align:center; }

  /* Testimonials */
  .testimonials-section{ padding:40px 20px; }
  .testimonials-section__container{ flex-direction:column; }
  .testimonial{ min-height:auto; }

  /* Ready */
  .ready-ctas{ flex-direction:column; }

  /* Contact */
  .contact-section{ padding:40px 20px; }
  .contact-section__container{ flex-direction:column; }
  .contact-info{ align-items:flex-start; text-align:left; }
  .contact-form__row--inline{ flex-direction:column; }
  .contact-form__submit{ align-self:stretch; }

  /* FAQ */
  .faq-section{ padding:40px 20px; }
}

/* ─── FINAL OVERRIDES (no color surprises except requested white) ── */
/* Center section titles/subtitles perfectly and keep widths fluid */
.section-heading,
.section-lead{
  max-width:1170px;
  width:100%;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}
/* Requested: make heading & the line below white */
.section-heading{ color:#ffffff !important; margin-bottom:8px; }
.section-lead   { color:#ffffff !important; margin-bottom:16px; }

/* =========================
   ABOUT PAGE (scoped styles)
   ========================= */

/* Hero */
.about-hero{
  width:1170px;
  margin:16px auto;
  border-radius:20px;
  display:flex;
  align-items:center;
  gap:24px;
  padding:28px 40px 28px 20px;
  box-sizing:border-box;
  overflow:hidden;
  background:
    radial-gradient(1200px 400px at 80% 30%, rgba(108,99,255,.25) 0%, rgba(108,99,255,0) 60%),
    linear-gradient(135deg,#242a49 0%,#161b33 55%,#0d1122 100%);
}
.about-hero__content{ flex:1; text-align:left; }
.about-hero__title{ font-size:44px; font-weight:800; color:#fff; margin:0 0 10px; line-height:1.1; }
.about-hero__lead{ color:#c9d0e6; font-size:16px; line-height:1.6; margin:0 0 16px; }
.about-hero__ctas{ display:flex; gap:12px; flex-wrap:wrap; }
.about-hero__trust{ color:#aab1c9; margin:10px 0 0; }
.about-hero__image{ flex:none; }
.about-hero__image img{ max-height:300px; width:auto; object-fit:contain; display:block; }

/* If you prefer to keep CTAs local to this page */
.about-hero .btn-primary-cta{
  background:#6c63ff; color:#fff; padding:12px 18px; border-radius:12px; text-decoration:none; font-weight:800; display:inline-block;
  box-shadow:0 6px 18px rgba(108,99,255,.25);
}
.about-hero .btn-primary-cta:hover{ background:#5a52e8; color:#fff; }
.about-hero .btn-secondary-cta{
  background:rgba(255,255,255,.12); color:#fff; padding:12px 18px; border-radius:12px; text-decoration:none; font-weight:600;
}

/* Generic about sections */
.about-section{
  width:1170px;
  margin:40px auto 0;
  padding:32px 40px;
  border-radius:20px;
  box-sizing:border-box;
  background:linear-gradient(180deg,#151a2e 0%,#0b0f1a 100%);
}
.about-section .section-heading,
.about-section .section-lead{
  max-width:1170px; width:100%; margin-left:auto; margin-right:auto; text-align:center; color:#fff;
}

/* Value bullets */
.value-bullets{
  max-width:900px;
  margin:16px auto;
  padding-left:18px;
  color:#c9d0e6;
  line-height:1.8;
}
.value-bullets li{ margin-bottom:.35rem; }
.inline-cta{ color:#cfd6ff; text-decoration:underline; font-weight:700; }

/* Process */
.process-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  max-width:1170px;
  margin:20px auto 0;
}
.process-card{
  background:#121626;
  border-radius:16px;
  padding:18px 16px;
  color:#fff;
  box-shadow:0 8px 18px rgba(0,0,0,.25);
}
.process-card h3{ font-size:18px; font-weight:800; margin:0 0 6px; }

/* Security & compliance checklist */
.checklist-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  max-width:1170px;
  margin:12px auto 0;
}
.checklist-grid ul{ margin:0; padding-left:18px; color:#c9d0e6; line-height:1.8; }

/* Tech stack chips */
.tool-stack{
  max-width:980px;
  margin:16px auto 0;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  list-style:none;
  padding:0;
}
.tool-stack li{
  background:rgba(255,255,255,.08);
  padding:8px 12px;
  border-radius:999px;
  font-size:14px;
  color:#fff;
}

/* Team */
.team-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
  margin-top:16px;
}
.team-card{
  background:#121626;
  border-radius:16px;
  padding:16px;
  text-align:center;
  color:#fff;
}
.team-card img{
  width:100%;
  height:140px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:10px;
}
.team-card h3{ font-size:16px; font-weight:800; margin:0 0 6px; }
.team-card p{ color:#c9d0e6; margin:0; }

/* Impact list */
.impact-list{
  max-width:900px;
  margin:12px auto;
  padding-left:18px;
  color:#fff;
  line-height:1.8;
}

/* Testimonials */
.quotes{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:12px;
}
.quote{
  background:#121626;
  border-radius:16px;
  padding:16px;
  color:#fff;
  line-height:1.7;
}
.quote span{ display:block; color:#aab1c9; margin-top:8px; }

/* Utility */
.center-cta{ text-align:center; margin-top:10px; }

/* Responsive (About only) */
@media (max-width: 991.98px){
  .about-hero{ flex-direction:column; padding:40px 20px; }
  .about-hero__content{ text-align:center; }
  .about-hero__title{ font-size:32px; }
  .about-hero__image{ margin-top:24px; display:flex; justify-content:center; }
  .about-hero__image img{ width:90%; max-height:260px; }

  .about-section{ width:100%; padding:32px 20px; border-radius:0; }

  .process-grid{ grid-template-columns:1fr 1fr; }
  .checklist-grid{ grid-template-columns:1fr 1fr; }
  .team-grid{ grid-template-columns:1fr 1fr 1fr; }
  .quotes{ grid-template-columns:1fr; }
}
@media (max-width: 768px){
  .process-grid{ grid-template-columns:1fr; }
  .checklist-grid{ grid-template-columns:1fr; }
  .team-grid{ grid-template-columns:1fr 1fr; }
}

/* ─── Contact Page Styles (Updated with Submit Hover) ───────────────────────────────── */
/* =========================
   CONTACT PAGE (scoped)
   ========================= */

/* --- Global link resets for this page only (remove underlines) --- */
.contact-page a,
.contact-page a:hover,
.contact-page a:focus,
.contact-page .faq-answer a {
  text-decoration: none !important;
}

/* --- Hero --- */
.contact-page .contact-hero{
  width:1170px;
  margin:16px auto;
  border-radius:20px;
  display:flex;
  align-items:center;
  gap:24px;
  padding:28px 40px 28px 20px;
  box-sizing:border-box;
  overflow:hidden;
  background:
    radial-gradient(1200px 400px at 80% 30%, rgba(108,99,255,.25) 0%, rgba(108,99,255,0) 60%),
    linear-gradient(135deg,#242a49 0%,#161b33 55%,#0d1122 100%);
}
.contact-page .contact-hero__content{ flex:1; text-align:left; }
.contact-page .contact-hero__title{ font-size:44px; font-weight:800; color:#fff; margin:0 0 10px; line-height:1.1; }
.contact-page .contact-hero__lead{ color:#c9d0e6; font-size:16px; line-height:1.6; margin:0 0 10px; }
.contact-page .contact-hero__trust{ color:#aab1c9; }
.contact-page .contact-hero__image{ flex:none; }
.contact-page .contact-hero__image img{ max-height:300px; width:auto; object-fit:contain; display:block; }

/* --- Form section --- */
.contact-page .contact-form-section{
  width:1170px;
  margin:40px auto 0;
  padding:32px 40px;
  border-radius:20px;
  background:linear-gradient(180deg,#151a2e 0%,#0b0f1a 100%);
  box-sizing:border-box;
}
.contact-page .section-heading,
.contact-page .section-lead{ color:#fff; text-align:center; }

.contact-page .contact-form-wrap{ margin-top:10px; }
.contact-page .hp-field{ position:absolute; left:-9999px; width:1px; height:1px; opacity:0; }
.contact-page .form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.contact-page .form-field{ display:flex; flex-direction:column; }
.contact-page .form-field--full{ grid-column:1 / -1; }
.contact-page .form-label{ font-weight:700; color:#fff; margin-bottom:6px; }
.contact-page .form-control,
.contact-page .form-select{
  background:#0d1122;
  border:1px solid #2b304a;
  color:#fff;
  padding:12px;
  border-radius:10px;
  font-size:14px;
}
.contact-page .form-control::placeholder{ color:#8e95b5; }

/* Focus ring */
.contact-page .form-control:focus,
.contact-page .form-select:focus{
  border-color:#6c63ff;
  box-shadow:0 0 0 3px rgba(108,99,255,.25);
  outline:none;
}

/* ------- Custom select styling (Project type / Budget range) ------- */
/* Remove native arrows and add custom chevron */
.contact-page .form-select,
.contact-page select{
  -webkit-appearance:none;
  -moz-appearance:none;
  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='%236c63ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 12px center;
  background-size:16px;
  padding-right:40px; /* space for arrow */
}
.contact-page select::-ms-expand{ display:none; }           /* old IE/Edge */
.contact-page select:focus::-ms-value{ background:transparent; color:#fff; }

/* Dropdown list colours (Chrome/Firefox/Edge) */
.contact-page .form-select option,
.contact-page select option{
  background-color:#0d1122;
  color:#ffffff;
}
.contact-page .form-select option:hover,
.contact-page select option:hover{
  background-color:#2b304a !important;
  color:#ffffff !important;
}
.contact-page .form-select option:checked,
.contact-page select option:checked{
  /* some browsers need a solid background to override system blue */
  background:#6c63ff !important;
  color:#ffffff !important;
}

/* Helper & error text */
.contact-page .helper-text{ color:#aab1c9; margin-top:6px; }
.contact-page .error-text{
  display:none;
  margin-top:6px;
  color:#ffb4b4;
  font-weight:600;
}
.contact-page .form-status{ margin-top:8px; color:#cfd6ff; min-height:1.2em; }

/* CTAs */
.contact-page .form-ctas{
  display:flex;
  gap:12px;
  margin-top:12px;
  align-items:center;
}
.contact-page .btn-primary-cta{
  background:#6c63ff;
  color:#fff;
  padding:12px 18px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  display:inline-block;
  border:0;
  box-shadow:0 6px 18px rgba(108,99,255,.25);
}
.contact-page .btn-primary-cta:hover{ background:#5a52e8; color:#fff; }
.contact-page .btn-outline-cta{
  display:inline-block;
  padding:11px 16px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  border:1px solid #6c63ff;
  color:#fff;
}
.contact-page .micro-trust{ color:#aab1c9; margin-top:8px; }

/* Consent checkbox line (ensure link not underlined due to global reset above) */
.contact-page .check-wrap{
  display:flex; gap:10px; align-items:flex-start; color:#fff;
}
.contact-page .check-wrap input[type="checkbox"]{ margin-top:3px; }

/* --- Prefer email / quick call --- */
.contact-page .contact-alt{
  width:1170px;
  margin:40px auto 0;
  padding:32px 40px;
  border-radius:20px;
  background:linear-gradient(180deg,#151a2e 0%,#0b0f1a 100%);
}
.contact-page .contact-alt__grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:8px;
}
.contact-page .contact-alt__item{
  display:flex; align-items:center; gap:10px; color:#fff;
}
.contact-page .contact-alt__item i{ color:#6c63ff; }

/* --- What happens next --- */
.contact-page .contact-steps{
  width:1170px;
  margin:40px auto 0;
  padding:32px 40px;
  border-radius:20px;
  background:linear-gradient(180deg,#151a2e 0%,#0b0f1a 100%);
}
.contact-page .steps-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:10px;
}
.contact-page .step-card{
  background:#121626;
  border-radius:14px;
  padding:16px;
  color:#fff;
  box-shadow:0 8px 18px rgba(0,0,0,.25);
}
.contact-page .step-card h3{ font-size:16px; font-weight:800; margin:0 0 6px; }

/* --- Still exploring links --- */
.contact-page .contact-links{
  width:1170px;
  margin:40px auto;
  padding:32px 40px;
  border-radius:20px;
  background:linear-gradient(180deg,#151a2e 0%,#0b0f1a 100%);
  text-align:center;
}
.contact-page .link-grid{
  list-style:none; padding:0; margin:10px auto 0;
  display:flex; flex-wrap:wrap; gap:12px; justify-content:center;
}
.contact-page .link-grid a{
  display:inline-block; padding:8px 14px; border-radius:999px;
  background:rgba(255,255,255,.08); color:#fff;
}
.contact-page .link-grid a:hover{ background:#6c63ff; }

/* --- FAQs (inherits site styles, just ensure colours) --- */
.contact-page .faq-section .faq-section__heading{ color:#fff; }
.contact-page .faq-section .faq-answer{ color:#c9d0e6; }

/* --- Responsive --- */
@media (max-width: 991.98px){
  .contact-page .contact-hero{ flex-direction:column; padding:40px 20px; width:100%; border-radius:0; }
  .contact-page .contact-hero__content{ text-align:center; }
  .contact-page .contact-hero__title{ font-size:32px; }
  .contact-page .contact-hero__image{ margin-top:16px; display:flex; justify-content:center; }
  .contact-page .contact-hero__image img{ width:90%; max-height:260px; }

  .contact-page .contact-form-section,
  .contact-page .contact-alt,
  .contact-page .contact-steps,
  .contact-page .contact-links{ width:100%; padding:32px 20px; border-radius:0; }

  .contact-page .form-grid{ grid-template-columns:1fr; }
  .contact-page .contact-alt__grid{ grid-template-columns:1fr; }
  .contact-page .steps-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 640px){
  .contact-page .steps-grid{ grid-template-columns:1fr; }
}


/* ===========================
   Pricing Page – Scoped CSS
   (safe for drop-in alongside your global styles.css)
   =========================== */

:root{
  --pp-accent:#6c63ff;
  --pp-bg:#0b0f1a;
  --pp-card:#15192d;
  --pp-text:#c9d0e6;
  --pp-white:#ffffff;
}

/* Scope everything to the pricing page wrapper */
.pricing-page{ background:transparent; color:var(--pp-white); }
.pricing-page a{ text-decoration:none; }

/* ---------- Page Hero ---------- */
.pricing-page .hero{
  width:1170px; margin:24px auto 12px; padding:40px;
  border-radius:20px;
  background:
    radial-gradient(1200px 420px at 70% 15%, rgba(108,99,255,.28) 0%, rgba(108,99,255,0) 60%),
    linear-gradient(135deg,#242a49 0%,#161b33 55%,#0d1122 100%);
  text-align:center;
  box-sizing:border-box;
}
.pricing-page .hero h1{
  margin:0 0 .5rem; font-size:48px; line-height:1.05; font-weight:900;
}
.pricing-page .hero p.lead{
  color:var(--pp-text); max-width:860px; margin:0 auto 16px;
}
.pricing-page .hero .cta-row{
  display:flex; justify-content:center; gap:12px; flex-wrap:wrap; margin-top:10px;
}
.pricing-page .btn-primary-pp{
  background:var(--pp-accent); color:#fff; border:0; border-radius:999px;
  padding:12px 18px; font-weight:800; box-shadow:0 12px 26px rgba(108,99,255,.35);
}
.pricing-page .btn-outline-pp{
  border:1px solid var(--pp-accent); color:#fff; border-radius:999px;
  padding:12px 18px; font-weight:700;
}
.pricing-page .mini-trust{ color:var(--pp-text); margin-top:10px; }

/* ---------- Generic Section Shell ---------- */
.pricing-page .section{
  width:1170px; margin:28px auto 0; padding:32px 40px;
  border-radius:20px; box-sizing:border-box; background:transparent;
}
.pricing-page .section h2{
  text-align:center; margin:0 0 .25rem; font-size:40px; font-weight:900;
}
.pricing-page .section p.section-lead{
  text-align:center; color:var(--pp-text); margin:0 auto 8px; max-width:900px;
}

/* ==========================================
   PRICING CARDS — DESIGN (unchanged)
   ========================================== */

.pp-plans { padding: 0; }
.pp-plans * { box-sizing: border-box; }
.pp-plans a { text-decoration: none; }

.pp-plans__wrap{
  max-width:1170px; margin:40px auto; padding:0 20px;
}
.pp-plans__eyebrow{
  text-align:center; margin:0 0 .35rem; font-weight:800; letter-spacing:.3px; color:#c9d0e6;
}
.pp-plans__title{
  text-align:center; margin:0; font-size:44px; line-height:1.1; font-weight:900; color:#ffffff;
}
.pp-plans__lead{
  text-align:center; color:#c9d0e6; max-width:900px; margin:8px auto 20px;
}

.pp-plans__grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:32px; margin-top:28px;
}

.pp-card{
  position:relative; display:flex; flex-direction:column;
  background:#15192d; color:#fff; border-radius:28px;
  padding:56px 28px 28px;            /* bottom padding keeps CTA breathing room */
  min-height:560px;
  box-shadow:0 24px 60px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.02);
  transition:transform .2s ease, box-shadow .2s ease;
}
.pp-card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 70px rgba(0,0,0,.55), 0 0 0 1px rgba(108,99,255,.10) inset;
}

.pp-card__title{
  text-align:center; font-size:32px; font-weight:900; line-height:1.15;
  margin:-8px 0 8px; color:#fff;
}
.pp-card__minor{
  text-align:center; color:#d7dcff; margin:0 0 18px; font-size:18px;
}
.pp-card__minor strong{ color:#fff; font-weight:900; }

.pp-card__major{
  text-align:center; font-size:52px; font-weight:900; margin:2px 0 18px;
}
.pp-card__unit{ color:#aab1c9; font-weight:700; margin-left:.4rem; }

.pp-card__list{
  list-style:none; padding:0; margin:10px 0 0; display:grid; gap:16px; color:#e8ebff;
}
.pp-card__list li{
  position:relative; padding-left:28px; line-height:1.55;
}
.pp-card__list li::before{
  content:""; position:absolute; left:0; top:2px; width:20px; height:20px; border-radius:999px;
  background:radial-gradient(circle at 30% 30%, rgba(124,120,255,.65) 0%, rgba(124,120,255,.25) 55%, rgba(124,120,255,.10) 100%);
  border:2px solid var(--pp-accent); box-shadow:0 2px 6px rgba(108,99,255,.35);
}
.pp-card__list li::after{
  content:"✔"; position:absolute; left:0; top:1px; width:20px; height:20px; display:grid; place-items:center;
  color:#fff; font-weight:900; font-size:12px;
}

/* CTA button sits at the bottom inside the card with equal spacing */
.pp-card__cta{
  margin-top:auto;                     /* pushes the button to the bottom */
  align-self:center; width:82%;
  background:var(--pp-accent); color:#fff; font-weight:800;
  border-radius:999px; padding:16px 22px; text-align:center;
  box-shadow:0 14px 30px rgba(108,99,255,.35);
}
.pp-card__cta:hover{ background:#5a52e8; }

/* Featured / Recommended card with top ribbon */
.pp-card--featured{
  background:#10152b;
  box-shadow:0 28px 80px rgba(108,99,255,.35), inset 0 0 0 1px rgba(108,99,255,.25);
  overflow:hidden;
  padding-top:96px;                    /* space for the ribbon */
}
.pp-card--featured .pp-card__ribbon{
  position:absolute; top:0; left:0; right:0; height:64px;
  background:var(--pp-accent);
  border-top-left-radius:28px; border-top-right-radius:28px;
  color:#fff; font-weight:800; letter-spacing:.2px;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 16px 34px rgba(108,99,255,.45);
  pointer-events:none;
}

/* ---------- Popular add-ons ---------- */
.pricing-page .addons{
  background:linear-gradient(180deg,#151a2e 0%,#0b0f1a 100%);
}
.pricing-page .addons-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:18px 22px; margin-top:18px;
}
.pricing-page .addon{
  background:var(--pp-card); border-radius:18px; padding:18px 20px;
  box-shadow:0 18px 40px rgba(0,0,0,.35);
}
.pricing-page .addon h3{ margin:0 0 6px; font-size:20px; }
.pricing-page .addon p{ margin:0; color:var(--pp-text); }

/* ---------- Included w/ engagement ---------- */
.pricing-page .included{
  background:linear-gradient(180deg,#151a2e 0%,#0b0f1a 100%);
}
.pricing-page .included ul{
  list-style:none; display:grid; grid-template-columns:repeat(2,1fr); gap:10px 24px;
  padding:0; margin:12px auto 0; max-width:920px;
}
.pricing-page .included li{ position:relative; padding-left:26px; }
.pricing-page .included li::before{
  content:"✔"; position:absolute; left:0; top:0; width:18px; height:18px; display:grid; place-items:center;
  background:var(--pp-accent); color:#fff; border-radius:999px; font-size:12px; font-weight:900;
  box-shadow:0 6px 14px rgba(108,99,255,.35);
}

/* ---------- Compare table ---------- */
.pricing-page .compare{ background:transparent; }
.pricing-page table.pp-table{
  width:100%; border-collapse:separate; border-spacing:0; overflow:hidden;
  background:var(--pp-card); border-radius:18px; box-shadow:0 18px 40px rgba(0,0,0,.35);
}
.pricing-page .pp-table th,
.pricing-page .pp-table td{
  padding:14px 16px; border-bottom:1px solid rgba(255,255,255,.06); text-align:left;
}
.pricing-page .pp-table thead th{
  position:sticky; top:0; background:#1b2037; color:#fff; font-weight:800;
}
.pricing-page .pp-table td.center,
.pricing-page .pp-table th.center{ text-align:center; }
.pricing-page .pp-table .tic{ color:#61d39a; font-weight:900; }
.pricing-page .pp-table .dash{ color:#9aa3c7; }

/* ---------- Legal note ---------- */
.pricing-page .fine{ color:var(--pp-text); margin-top:10px; text-align:center; }

/* ---------- How billing works ---------- */
.pricing-page .how ul{
  list-style:none; padding:0; margin:14px auto 0; max-width:900px;
}
.pricing-page .how li{
  position:relative; padding-left:26px; margin-bottom:8px; color:#e8ebff;
}
.pricing-page .how li::before{
  content:"•"; position:absolute; left:0; top:0;
  color:var(--pp-accent); font-size:28px; line-height:16px;
}

/* ---------- FAQs ---------- */
.pricing-page .faqs details{
  background:var(--pp-card); border-radius:14px; padding:14px 16px; margin:10px 0;
  box-shadow:0 14px 30px rgba(0,0,0,.35);
}
.pricing-page .faqs summary{ cursor:pointer; font-weight:800; }
.pricing-page .faqs p{ color:var(--pp-text); margin:8px 0 0; }

/* ---------- Final CTA ---------- */
.pricing-page .final{
  background:linear-gradient(180deg,#151a2e 0%,#0b0f1a 100%); text-align:center;
}
.pricing-page .final .cta-row{
  display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px){
  .pricing-page .hero,
  .pricing-page .section{
    width:100%; padding:28px 20px; border-radius:0;
  }
  .pricing-page .hero h1{ font-size:36px; }
  .pp-plans__wrap{ margin:26px auto; }
  .pp-plans__title{ font-size:34px; }
  .pp-plans__grid{ grid-template-columns:1fr; gap:24px; }
  .pp-card{ padding:58px 22px 28px; min-height:unset; }
  .pp-card--featured{ padding-top:98px; }
  .addons-grid{ grid-template-columns:1fr; }
  .included ul{ grid-template-columns:1fr; }
  .pricing-page .pp-table th,
  .pricing-page .pp-table td{ font-size:14px; }
}

@media (min-width: 992px) and (max-width: 1199.98px){
  .pp-plans__grid{ grid-template-columns:repeat(2,1fr); }
  .addons-grid{ grid-template-columns:repeat(2,1fr); }
}

/* ================================
   Services Page index (scoped styles)
   ================================ */
.services-page a { text-decoration: none; }

/* Theme tokens (use your site’s indigo theme) */
.services-page {
  --svc-accent: #594FE0;     /* primary accent (replaced from #FF4500 per site rules) */
  --svc-accent-strong: #7266FF; /* secondary glow/hilite */
  --svc-bg-card: #15192d;
  --svc-bg-deep: #0b0f1a;
  --svc-ink: #ffffff;
  --svc-ink-sub: #c9d0e6;
}

/* Hero */
.svc-hero{
  width:1170px; margin:24px auto 16px; padding:40px;
  border-radius:20px; box-sizing:border-box; text-align:center; color:var(--svc-ink);
  background:
    radial-gradient(1200px 420px at 70% 15%, rgba(114,102,255,.28) 0%, rgba(114,102,255,0) 60%),
    linear-gradient(135deg,#242a49 0%,#161b33 55%,#0d1122 100%);
}
.svc-hero h1{ margin:0 0 .5rem; font-size:44px; line-height:1.06; font-weight:900; }
.svc-hero__lead{ max-width:860px; margin:0 auto 14px; color:var(--svc-ink-sub); }
.svc-hero__ctas{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:10px; }
.svc-btn{
  display:inline-block; padding:12px 18px; border-radius:999px; font-weight:800;
  transition:transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.svc-btn--primary{
  background:var(--svc-accent); color:#fff; box-shadow:0 12px 24px rgba(89,79,224,.35);
}
.svc-btn--primary:hover{ transform:translateY(-2px); box-shadow:0 16px 32px rgba(89,79,224,.45); }
.svc-btn--outline{
  border:1px solid var(--svc-accent); color:#fff; background:transparent;
}
.svc-btn--outline:hover{ background:rgba(114,102,255,.12); }
.svc-hero__trust{ color:var(--svc-ink-sub); margin-top:10px; }

/* Generic Section Shells */
.svc-section{
  width:1170px; margin:28px auto 0; padding:32px 40px;
  border-radius:20px; box-sizing:border-box; color:var(--svc-ink);
  background:transparent;
}
.svc-section__title{ text-align:center; margin:0 0 8px; font-size:36px; font-weight:900; }
.svc-section__lead{ text-align:center; margin:0 auto 18px; color:var(--svc-ink-sub); }

/* Services grid */
.svc-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
}
.svc-card{
  background:var(--svc-bg-card); color:#fff; border-radius:18px; padding:20px;
  box-shadow:0 18px 40px rgba(0,0,0,.35);
  display:flex; flex-direction:column; gap:12px;
  transition:transform .15s ease, box-shadow .2s ease;
}
.svc-card:hover{ transform:translateY(-3px); box-shadow:0 22px 48px rgba(0,0,0,.45); }
.svc-card__title{ margin:0; font-size:20px; font-weight:900; }
.svc-card__title a{ color:#fff; }
.svc-card__blurb{ margin:0; color:var(--svc-ink-sub); }
.svc-card__list{ margin:0; padding-left:18px; color:#e8ebff; }
.svc-card__cta{
  margin-top:auto; align-self:center; padding:10px 14px; border-radius:999px; font-weight:800;
  background:var(--svc-accent); color:#fff; box-shadow:0 10px 22px rgba(89,79,224,.35);
}
.svc-card__cta:hover{ transform:translateY(-1px); box-shadow:0 14px 28px rgba(89,79,224,.45); }

/* Tips / quick paths */
.svc-section--tips{
  background:linear-gradient(180deg,#151a2e 0%, #0b0f1a 100%);
}
.svc-tips{
  display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin:10px 0 6px;
}
.svc-tips__item{
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.06);
  border-radius:14px; padding:16px;
}
.svc-tips__item h4{ margin:0 0 6px; font-weight:800; }
.svc-tips__item p{ margin:0; color:var(--svc-ink-sub); }

/* Steps */
.svc-steps{
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:8px;
}
.svc-step{
  background:var(--svc-bg-card); border-radius:14px; padding:18px;
  box-shadow:0 16px 34px rgba(0,0,0,.35);
  text-align:center;
}
.svc-step__num{
  width:44px; height:44px; border-radius:999px; margin:0 auto 10px;
  background:var(--svc-accent); color:#fff; display:grid; place-items:center;
  font-weight:900; box-shadow:0 12px 24px rgba(89,79,224,.35);
}
.svc-step__title{ margin:0 0 4px; font-size:18px; font-weight:900; }
.svc-step__text{ margin:0; color:var(--svc-ink-sub); }
.svc-inline-link{ text-align:center; margin-top:12px; color:var(--svc-ink-sub); }
.svc-inline-link a{ color:#fff; }

/* FAQ */
.svc-faq details{
  background:var(--svc-bg-card); border-radius:14px; padding:14px 16px; margin:10px 0;
  box-shadow:0 14px 30px rgba(0,0,0,.35);
}
.svc-faq summary{ cursor:pointer; font-weight:800; }
.svc-faq p{ margin:8px 0 0; color:var(--svc-ink-sub); }

/* Final CTA band */
.svc-cta-final{
  width:1170px; margin:28px auto 40px; padding:0; box-sizing:border-box;
}
.svc-cta-final__wrap{
  background:
    radial-gradient(900px 320px at 80% 20%, rgba(114,102,255,.22) 0%, rgba(114,102,255,0) 60%),
    linear-gradient(135deg,#242a49 0%,#161b33 55%,#0d1122 100%);
  border-radius:20px; padding:32px 24px; text-align:center; color:#fff;
  box-shadow:0 24px 60px rgba(0,0,0,.45);
}
.svc-cta-final__wrap h2{ margin:0 0 6px; font-size:32px; font-weight:900; }
.svc-cta-final__wrap p{ margin:0 0 12px; color:var(--svc-ink-sub); }

/* Responsive */
@media (max-width: 991.98px){
  .svc-hero,
  .svc-section,
  .svc-cta-final{ width:100%; padding:28px 20px; border-radius:0; margin-left:0; margin-right:0; }
  .svc-hero h1{ font-size:36px; }
  .svc-grid{ grid-template-columns:1fr; }
  .svc-tips{ grid-template-columns:1fr; }
  .svc-steps{ grid-template-columns:1fr; }
}
@media (min-width: 992px) and (max-width: 1199.98px){
  .svc-grid{ grid-template-columns:repeat(2,1fr); }
}

/* =========================================
   Chrome Extension Development page (scoped)
   Uses the SAME section background as index.html
   ========================================= */

.ced-page a { text-decoration: none; }

/* Unify all section containers to site section background */
.ced-hero,
.ced-section,
.ced-cta-final__wrap {
  background: linear-gradient(180deg, var(--bg-800) 0%, var(--bg-700) 100%);
  color: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}

/* Section widths/spacing consistent with site */
.ced-hero,
.ced-section {
  width: 1170px;
  margin: 24px auto 0;
  padding: 40px;
  border-radius: 20px;
  box-sizing: border-box;
}

/* Hero */
.ced-hero { text-align: center; }
.ced-hero h1 {
  margin: 0 0 .5rem;
  font-size: 44px;
  line-height: 1.06;
  font-weight: 900;
}
.ced-hero__sub {
  max-width: 860px;
  margin: 0 auto 14px;
  color: var(--text-300);
}
.ced-hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Buttons (use global accent) */
.ced-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.ced-btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(108,99,255,.35);
}
.ced-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(108,99,255,.45);
  background: var(--accent-600);
}
.ced-btn--outline {
  border: 1px solid var(--accent);
  color: #fff;
  background: transparent;
}
.ced-btn--outline:hover { background: rgba(108,99,255,.12); }

/* Section titles & body */
.ced-section__title {
  text-align: center;
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 900;
}
.ced-body { margin: 0; color: var(--text-300); text-align: center; max-width: 920px; margin-inline: auto; }

/* Lists */
.ced-list { padding: 0; margin: 6px auto 0; color: #e8ebff; max-width: 900px; }
.ced-list--bullets { list-style: disc; padding-left: 20px; }
.ced-list--checks { list-style: none; }
.ced-list--checks li {
  position: relative; padding-left: 28px; margin: 10px 0; line-height: 1.55;
}
.ced-list--checks li::before{
  content:"✔";
  position:absolute; left:0; top:0; width:18px; height:18px;
  display:grid; place-items:center; border-radius:999px;
  background: var(--accent); color:#fff; font-size:12px; font-weight:900;
  box-shadow:0 10px 20px rgba(108,99,255,.35);
}

/* Steps (cards) */
.ced-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}
.ced-step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 16px 34px rgba(0,0,0,.35);
  color: #e8ebff;
}
.ced-step__num{
  width: 44px; height: 44px; border-radius: 999px; margin: 0 auto 10px;
  background: var(--accent); color: #fff; display: grid; place-items: center;
  font-weight: 900; box-shadow: 0 12px 24px rgba(108,99,255,.35);
}
.ced-step__title { margin: 0; font-size: 16px; font-weight: 800; color:#fff; }
.ced-step__text { margin: 6px 0 0; color: var(--text-300); }

/* FAQ */
.ced-faq { max-width: 980px; margin: 6px auto 0; }
.ced-faq details{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 10px 0;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}
.ced-faq summary { cursor: pointer; font-weight: 800; color: #fff; }
.ced-faq p { margin: 8px 0 0; color: var(--text-300); }

/* Final CTA */
.ced-cta-final {
  width: 1170px;
  margin: 28px auto 40px;
  padding: 0;
  box-sizing: border-box;
}
.ced-cta-final__wrap {
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  color: #fff;
}
.ced-links { margin: 10px 0 0; color: var(--text-300); }
.ced-links a { color: #fff; }

/* Responsive */
@media (max-width: 991.98px){
  .ced-hero,
  .ced-section,
  .ced-cta-final { width:100%; padding:28px 20px; border-radius:0; }
  .ced-hero h1{ font-size:36px; }
  .ced-steps{ grid-template-columns:1fr; }
}



/* =========================================
   Manifest V3 Migration page (scoped)
   Uses the SAME section background as index.html
   ========================================= */

.mvm-page a { text-decoration: none; }

/* Unify all section containers to site section background */
.mvm-hero,
.mvm-section,
.mvm-cta-final__wrap {
  background: linear-gradient(180deg, var(--bg-800) 0%, var(--bg-700) 100%);
  color: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}

/* Section widths/spacing consistent with site */
.mvm-hero,
.mvm-section {
  width: 1170px;
  margin: 24px auto 0;
  padding: 40px;
  border-radius: 20px;
  box-sizing: border-box;
}

/* Hero */
.mvm-hero { text-align: center; }
.mvm-hero h1 {
  margin: 0 0 .5rem;
  font-size: 44px;
  line-height: 1.06;
  font-weight: 900;
}
.mvm-hero__sub {
  max-width: 860px;
  margin: 0 auto 14px;
  color: var(--text-300);
}
.mvm-hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Buttons (use global accent) */
.mvm-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.mvm-btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(108,99,255,.35);
}
.mvm-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(108,99,255,.45);
  background: var(--accent-600);
}
.mvm-btn--outline {
  border: 1px solid var(--accent);
  color: #fff;
  background: transparent;
}
.mvm-btn--outline:hover { background: rgba(108,99,255,.12); }

/* Section titles & body */
.mvm-section__title {
  text-align: center;
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 900;
}
.mvm-body { color: var(--text-300); max-width: 980px; margin: 0 auto; }

/* Lists */
.mvm-list { max-width: 980px; margin: 10px auto 0; padding: 0; }
.mvm-list li { color: #e8ebff; line-height: 1.6; }
.mvm-list--checks { list-style: none; display: grid; gap: 12px; }
.mvm-list--checks li {
  position: relative; padding-left: 28px;
}
.mvm-list--checks li::before{
  content:"✔"; position:absolute; left:0; top:0; width:18px; height:18px;
  display:grid; place-items:center; border-radius:999px;
  background: var(--accent); color:#fff; font-size:12px; font-weight:900;
  box-shadow:0 10px 20px rgba(108,99,255,.35);
}
.mvm-list--bullets { padding-left: 20px; list-style: disc; }
.mvm-list--bullets li strong { color:#fff; }

/* Steps (cards) */
.mvm-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}
.mvm-step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 16px 34px rgba(0,0,0,.35);
  color: #e8ebff;
}
.mvm-step__num{
  width: 44px; height: 44px; border-radius: 999px; margin: 0 auto 10px;
  background: var(--accent); color: #fff; display: grid; place-items: center;
  font-weight: 900; box-shadow: 0 12px 24px rgba(108,99,255,.35);
}
.mvm-step__title { margin: 0; font-size: 16px; font-weight: 800; color:#fff; }
.mvm-step__text { margin: 6px 0 0; color: var(--text-300); }

/* FAQ */
.mvm-faq { max-width: 980px; margin: 6px auto 0; }
.mvm-faq details{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 10px 0;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}
.mvm-faq summary { cursor: pointer; font-weight: 800; color: #fff; }
.mvm-faq p { margin: 8px 0 0; color: var(--text-300); }

/* Final CTA */
.mvm-cta-final {
  width: 1170px;
  margin: 28px auto 40px;
  padding: 0;
  box-sizing: border-box;
}
.mvm-cta-final__wrap {
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  color: #fff;
}
.mvm-links { margin-top: 8px; color: var(--text-300); }
.mvm-links a { color: #fff; text-decoration: none; }

/* Responsive */
@media (max-width: 991.98px){
  .mvm-hero,
  .mvm-section,
  .mvm-cta-final { width:100%; padding:28px 20px; border-radius:0; margin-left:0; margin-right:0; }
  .mvm-hero h1{ font-size:36px; }
  .mvm-steps{ grid-template-columns:1fr; }
}



/* =========================================
   Automation & Data Capture page (scoped)
   Uses the SAME section background as index.html
   ========================================= */

/* Base link style (keeps things clean) */
.ade-page a { text-decoration: none; }

/* Section shells — unify all sections to site section background */
.ade-hero,
.ade-section,
.ade-cta-final__wrap {
  background: linear-gradient(180deg, var(--bg-800) 0%, var(--bg-700) 100%);
  color: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}

/* Width / spacing consistent with site sections */
.ade-hero,
.ade-section {
  width: 1170px;
  margin: 24px auto 0;
  padding: 40px;
  border-radius: 20px;
  box-sizing: border-box;
}

/* Hero specifics */
.ade-hero { text-align: center; margin-top: 24px; }
.ade-hero h1 {
  margin: 0 0 .5rem;
  font-size: 44px;
  line-height: 1.06;
  font-weight: 900;
}
.ade-hero__sub {
  max-width: 860px;
  margin: 0 auto 14px;
  color: var(--text-300);
}
.ade-hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* CTA buttons (use site accent variables) */
.ade-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.ade-btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(108,99,255,.35);
}
.ade-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(108,99,255,.45);
  background: var(--accent-600);
}
.ade-btn--outline {
  border: 1px solid var(--accent);
  color: #fff;
  background: transparent;
}
.ade-btn--outline:hover {
  background: rgba(108,99,255,.12);
}

/* Section headings & body */
.ade-section__title {
  text-align: center;
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 900;
}
.ade-body {
  color: var(--text-300);
  max-width: 980px;
  margin: 0 auto;
}

/* Lists */
.ade-list { max-width: 980px; margin: 10px auto 0; padding: 0; }
.ade-list li { color: #e8ebff; line-height: 1.6; }

/* Checks list */
.ade-list--checks { list-style: none; display: grid; gap: 12px; }
.ade-list--checks li {
  position: relative; padding-left: 28px;
}
.ade-list--checks li::before {
  content: "✔";
  position: absolute; left: 0; top: 0;
  width: 18px; height: 18px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff; font-size: 12px; font-weight: 900;
  box-shadow: 0 10px 20px rgba(108,99,255,.35);
}

/* Bullets list */
.ade-list--bullets { padding-left: 20px; list-style: disc; }
.ade-list--bullets li { color: var(--text-300); }

/* FAQ */
.ade-faq { max-width: 980px; margin: 6px auto 0; }
.ade-faq details {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 10px 0;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}
.ade-faq summary { cursor: pointer; font-weight: 800; color: #fff; }
.ade-faq p { margin: 8px 0 0; color: var(--text-300); }

/* Final CTA container */
.ade-cta-final {
  width: 1170px;
  margin: 28px auto 40px;
  padding: 0;
  box-sizing: border-box;
}
.ade-cta-final__wrap {
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
}
.ade-cta-final__wrap h2 { margin: 0 0 6px; font-size: 30px; font-weight: 900; }
.ade-cta-final__wrap p { margin: 0 0 12px; color: var(--text-300); }
.ade-links { margin-top: 8px; color: var(--text-300); }
.ade-links a { color: #fff; }

/* Responsive */
@media (max-width: 991.98px){
  .ade-hero,
  .ade-section,
  .ade-cta-final { width:100%; padding:28px 20px; border-radius:0; margin-left:0; margin-right:0; }
  .ade-hero h1 { font-size: 36px; }
}

/* =========================================
   Publishing & Compliance page (scoped)
   Uses the SAME section background as index.html
   ========================================= */

/* Base link style */
.pc-page a { text-decoration: none; }

/* Unify all section containers to site section background */
.pc-hero,
.pc-section,
.pc-cta-final__wrap {
  background: linear-gradient(180deg, var(--bg-800) 0%, var(--bg-700) 100%);
  color: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}

/* Section widths/spacing consistent with site */
.pc-hero,
.pc-section {
  width: 1170px;
  margin: 24px auto 0;
  padding: 40px;
  border-radius: 20px;
  box-sizing: border-box;
}

/* Hero specifics */
.pc-hero { text-align: center; margin-top: 24px; }
.pc-hero h1 {
  margin: 0 0 .5rem;
  font-size: 44px;
  line-height: 1.06;
  font-weight: 900;
}
.pc-hero__sub {
  max-width: 860px;
  margin: 0 auto 14px;
  color: var(--text-300);
}
.pc-hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Buttons (use global accent colors) */
.pc-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.pc-btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(108,99,255,.35);
}
.pc-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(108,99,255,.45);
  background: var(--accent-600);
}
.pc-btn--outline {
  border: 1px solid var(--accent);
  color: #fff;
  background: transparent;
}
.pc-btn--outline:hover { background: rgba(108,99,255,.12); }

/* Section titles & body */
.pc-section__title {
  text-align: center;
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 900;
}
.pc-body { color: var(--text-300); max-width: 980px; margin: 0 auto; }

/* Lists */
.pc-list { max-width: 980px; margin: 10px auto 0; padding: 0; }
.pc-list li { color: #e8ebff; line-height: 1.6; }

/* Check list style */
.pc-list--checks { list-style: none; display: grid; gap: 12px; }
.pc-list--checks li { position: relative; padding-left: 28px; }
.pc-list--checks li::before {
  content: "✔";
  position: absolute; left: 0; top: 0;
  width: 18px; height: 18px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff; font-size: 12px; font-weight: 900;
  box-shadow: 0 10px 20px rgba(108,99,255,.35);
}

/* Steps grid */
.pc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 10px;
  max-width: 1170px;
}
.pc-step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 16px 34px rgba(0,0,0,.35);
}
.pc-step__num {
  width: 44px; height: 44px; border-radius: 999px; margin: 0 auto 10px;
  background: var(--accent); color: #fff; display: grid; place-items: center;
  font-weight: 900; box-shadow: 0 12px 24px rgba(108,99,255,.35);
}
.pc-step__title { margin: 0; font-size: 16px; font-weight: 800; }

/* Final CTA container */
.pc-cta-final {
  width: 1170px;
  margin: 28px auto 40px;
  padding: 0;
  box-sizing: border-box;
}
.pc-cta-final__wrap {
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
}
.pc-cta-final__wrap h2 { margin: 0 0 6px; font-size: 30px; font-weight: 900; }
.pc-cta-final__wrap p { margin: 0 0 12px; color: var(--text-300); }
.pc-links { margin-top: 8px; color: var(--text-300); }
.pc-links a { color: #fff; }

/* Responsive */
@media (max-width: 991.98px){
  .pc-hero,
  .pc-section,
  .pc-cta-final { width:100%; padding:28px 20px; border-radius:0; margin-left:0; margin-right:0; }
  .pc-hero h1 { font-size: 36px; }
  .pc-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575.98px){
  .pc-steps { grid-template-columns: 1fr; }
}


/* =========================================
   Maintenance & Support page (scoped)
   Uses the SAME section background as index.html
   ========================================= */

.ms-page a { text-decoration: none; }

/* Unify all section containers to site section background */
.ms-hero,
.ms-section,
.ms-cta-final__wrap {
  background: linear-gradient(180deg, var(--bg-800) 0%, var(--bg-700) 100%);
  color: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}

/* Section widths/spacing consistent with site */
.ms-hero,
.ms-section {
  width: 1170px;
  margin: 24px auto 0;
  padding: 40px;
  border-radius: 20px;
  box-sizing: border-box;
}

/* Hero specifics */
.ms-hero { text-align: center; margin-top: 24px; }
.ms-hero h1 {
  margin: 0 0 .5rem;
  font-size: 44px;
  line-height: 1.06;
  font-weight: 900;
}
.ms-hero__sub {
  max-width: 860px;
  margin: 0 auto 14px;
  color: var(--text-300);
}
.ms-hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Buttons use global accent colors */
.ms-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.ms-btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(108,99,255,.35);
}
.ms-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(108,99,255,.45);
  background: var(--accent-600);
}
.ms-btn--outline {
  border: 1px solid var(--accent);
  color: #fff;
  background: transparent;
}
.ms-btn--outline:hover { background: rgba(108,99,255,.12); }

/* Section titles & body */
.ms-section__title {
  text-align: center;
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 900;
}
.ms-body { color: var(--text-300); max-width: 980px; margin: 0 auto; }

/* Lists */
.ms-list { max-width: 980px; margin: 10px auto 0; padding: 0; }
.ms-list li { color: #e8ebff; line-height: 1.6; }

/* Check list style */
.ms-list--checks { list-style: none; display: grid; gap: 12px; }
.ms-list--checks li { position: relative; padding-left: 28px; }
.ms-list--checks li::before {
  content: "✔";
  position: absolute; left: 0; top: 0;
  width: 18px; height: 18px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff; font-size: 12px; font-weight: 900;
  box-shadow: 0 10px 20px rgba(108,99,255,.35);
}

/* FAQ */
.ms-faq { max-width: 980px; margin: 6px auto 0; }
.ms-faq details {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 10px 0;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}
.ms-faq summary { cursor: pointer; font-weight: 800; color: #fff; }
.ms-faq p { margin: 8px 0 0; color: var(--text-300); }

/* Final CTA container */
.ms-cta-final {
  width: 1170px;
  margin: 28px auto 40px;
  padding: 0;
  box-sizing: border-box;
}
.ms-cta-final__wrap {
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
}
.ms-cta-final__wrap h2 { margin: 0 0 6px; font-size: 30px; font-weight: 900; }
.ms-cta-final__wrap p { margin: 0 0 12px; color: var(--text-300); }
.ms-links { margin-top: 8px; color: var(--text-300); }
.ms-links a { color: #fff; }

/* Responsive */
@media (max-width: 991.98px){
  .ms-hero,
  .ms-section,
  .ms-cta-final { width:100%; padding:28px 20px; border-radius:0; margin-left:0; margin-right:0; }
  .ms-hero h1 { font-size: 36px; }
}

/* =========================================
   Extension ↔ Web App page (scoped)
   Uses the SAME section background as index.html
   ========================================= */
.etw-page a { text-decoration: none; }

/* Make the Services dropdown match the dark menu on index */
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"]{
  background-color:#111111!important; border:0!important;
}
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item{
  color:#FFFFFF!important; background-color:transparent!important;
}
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item:hover,
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item:focus,
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item:active,
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item.active,
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item:focus-visible{
  color:#FFFFFF!important; background-color:#1A1A1A!important;
}
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-divider{
  border-top-color:#2a2a2a!important;
}

/* Unify ALL major sections to the site gradient (from index.html) */
.etw-hero,
.etw-section,
.etw-cta-final__wrap{
  background: linear-gradient(180deg, var(--bg-800) 0%, var(--bg-700) 100%);
  color:#fff;
  box-shadow:0 24px 60px rgba(0,0,0,.45);
}

/* Shell sizing/spacing identical across sections */
.etw-hero,
.etw-section{
  width:1170px;
  margin:24px auto 0;
  padding:40px;
  border-radius:20px;
  box-sizing:border-box;
}

/* Hero */
.etw-hero{ text-align:center; }
.etw-hero h1{
  margin:0 0 .5rem; font-size:44px; line-height:1.06; font-weight:900; color:#fff;
}
.etw-hero__sub{ max-width:860px; margin:0 auto 14px; color:var(--text-300); }
.etw-hero__ctas{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:10px; }

/* Buttons (use global accent tokens) */
.etw-btn{
  display:inline-block; padding:12px 18px; border-radius:999px; font-weight:800;
  transition:transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.etw-btn--primary{
  background:var(--accent); color:#fff; box-shadow:0 12px 24px rgba(108,99,255,.35);
}
.etw-btn--primary:hover{ transform:translateY(-2px); box-shadow:0 16px 32px rgba(108,99,255,.45); background:var(--accent-600); }
.etw-btn--outline{ border:1px solid var(--accent); color:#fff; background:transparent; }
.etw-btn--outline:hover{ background:rgba(108,99,255,.12); }

/* Titles & body */
.etw-section__title{ text-align:center; margin:0 0 10px; font-size:32px; font-weight:900; color:#fff; }
.etw-body{ color:var(--text-300); max-width:980px; margin:0 auto; }

/* Lists */
.etw-list{ max-width:980px; margin:10px auto 0; padding:0; }
.etw-list li{ color:#e8ebff; line-height:1.6; }
.etw-list--checks{ list-style:none; display:grid; gap:12px; }
.etw-list--checks li{ position:relative; padding-left:28px; }
.etw-list--checks li::before{
  content:"✔"; position:absolute; left:0; top:0; width:18px; height:18px;
  display:grid; place-items:center; border-radius:999px;
  background:var(--accent); color:#fff; font-size:12px; font-weight:900;
  box-shadow:0 10px 20px rgba(108,99,255,.35);
}

/* Steps (process) */
.etw-steps{
  display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:10px; max-width:1170px;
}
.etw-step{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius:16px; padding:18px; text-align:center;
  box-shadow:0 16px 34px rgba(0,0,0,.35);
}
.etw-step__num{
  width:44px; height:44px; border-radius:999px; margin:0 auto 10px;
  background:var(--accent); color:#fff; display:grid; place-items:center;
  font-weight:900; box-shadow:0 12px 24px rgba(108,99,255,.35);
}
.etw-step__title{ margin:0; font-size:16px; font-weight:800; color:#fff; }

/* FAQ */
.etw-faq{ max-width:980px; margin:6px auto 0; }
.etw-faq details{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius:14px; padding:14px 16px; margin:10px 0;
  box-shadow:0 14px 30px rgba(0,0,0,.35);
}
.etw-faq summary{ cursor:pointer; font-weight:800; color:#fff; }
.etw-faq p{ margin:8px 0 0; color:var(--text-300); }

/* Final CTA */
.etw-cta-final{
  width:1170px; margin:28px auto 40px; padding:0; box-sizing:border-box;
}
.etw-cta-final__wrap{
  border-radius:20px; padding:28px 24px; text-align:center; color:#fff;
}
.etw-links{ margin-top:8px; color:var(--text-300); }
.etw-links a{ color:#fff; text-decoration:none; }

/* Responsive */
@media (max-width: 991.98px){
  .etw-hero,
  .etw-section,
  .etw-cta-final{
    width:100%; padding:28px 20px; border-radius:0; margin-left:0; margin-right:0;
  }
  .etw-hero h1{ font-size:36px; }
  .etw-steps{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 575.98px){
  .etw-steps{ grid-template-columns:1fr; }
}


/* =========================================
   Cross-Browser Porting page (scoped)
   Uses the SAME section background as index.html
   ========================================= */
.cbp-page a { text-decoration: none; }

/* Make dropdown look identical to index.html (dark menu) */
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"]{
  background-color:#111111!important; border:0!important;
}
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item{
  color:#FFFFFF!important; background-color:transparent!important;
}
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item:hover,
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item:focus,
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item:active,
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item.active,
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item:focus-visible{
  color:#FFFFFF!important; background-color:#1A1A1A!important;
}
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-divider{
  border-top-color:#2a2a2a!important;
}

/* Unify ALL sections to site section background */
.cbp-hero,
.cbp-section,
.cbp-cta-final__wrap{
  background: linear-gradient(180deg, var(--bg-800) 0%, var(--bg-700) 100%);
  color:#fff;
  box-shadow:0 24px 60px rgba(0,0,0,.45);
}

/* Section shell (match site width/spacing) */
.cbp-hero,
.cbp-section{
  width:1170px;
  margin:24px auto 0;
  padding:40px;
  border-radius:20px;
  box-sizing:border-box;
}

/* Hero */
.cbp-hero{ text-align:center; }
.cbp-hero h1{
  margin:0 0 .5rem; font-size:44px; line-height:1.06; font-weight:900; color:#fff;
}
.cbp-hero__sub{ max-width:860px; margin:0 auto 14px; color:var(--text-300); }
.cbp-hero__ctas{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:10px; }

/* Buttons (use global accent tokens) */
.cbp-btn{
  display:inline-block; padding:12px 18px; border-radius:999px; font-weight:800;
  transition:transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.cbp-btn--primary{
  background:var(--accent); color:#fff; box-shadow:0 12px 24px rgba(108,99,255,.35);
}
.cbp-btn--primary:hover{ transform:translateY(-2px); box-shadow:0 16px 32px rgba(108,99,255,.45); background:var(--accent-600); }
.cbp-btn--outline{ border:1px solid var(--accent); color:#fff; background:transparent; }
.cbp-btn--outline:hover{ background:rgba(108,99,255,.12); }

/* Titles & body */
.cbp-section__title{ text-align:center; margin:0 0 10px; font-size:32px; font-weight:900; color:#fff; }
.cbp-body{ color:var(--text-300); max-width:980px; margin:0 auto; }

/* Lists */
.cbp-list{ max-width:980px; margin:10px auto 0; padding:0; }
.cbp-list li{ color:#e8ebff; line-height:1.6; }
.cbp-list--checks{ list-style:none; display:grid; gap:12px; }
.cbp-list--checks li{ position:relative; padding-left:28px; }
.cbp-list--checks li::before{
  content:"✔"; position:absolute; left:0; top:0; width:18px; height:18px;
  display:grid; place-items:center; border-radius:999px;
  background:var(--accent); color:#fff; font-size:12px; font-weight:900;
  box-shadow:0 10px 20px rgba(108,99,255,.35);
}

/* FAQ */
.cbp-faq{ max-width:980px; margin:6px auto 0; }
.cbp-faq details{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius:14px; padding:14px 16px; margin:10px 0;
  box-shadow:0 14px 30px rgba(0,0,0,.35);
}
.cbp-faq summary{ cursor:pointer; font-weight:800; color:#fff; }
.cbp-faq p{ margin:8px 0 0; color:var(--text-300); }

/* Final CTA */
.cbp-cta-final{
  width:1170px; margin:28px auto 40px; padding:0; box-sizing:border-box;
}
.cbp-cta-final__wrap{
  border-radius:20px; padding:28px 24px; text-align:center; color:#fff;
}
.cbp-links{ margin-top:8px; color:var(--text-300); }
.cbp-links a{ color:#fff; text-decoration:none; }

/* Responsive */
@media (max-width: 991.98px){
  .cbp-hero,
  .cbp-section,
  .cbp-cta-final{
    width:100%; padding:28px 20px; border-radius:0; margin-left:0; margin-right:0;
  }
  .cbp-hero h1{ font-size:36px; }
}

/* =========================================
   Performance & Security page (scoped)
   Uses the SAME section background as index.html
   ========================================= */
.psh-page a { text-decoration: none; }

/* Make the Services dropdown match the dark menu on index */
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"]{
  background-color:#111111!important; border:0!important;
}
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item{
  color:#FFFFFF!important; background-color:transparent!important;
}
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item:hover,
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item:focus,
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item:active,
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item.active,
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item:focus-visible{
  color:#FFFFFF!important; background-color:#1A1A1A!important;
}
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-divider{
  border-top-color:#2a2a2a!important;
}

/* Unify ALL major sections to the site gradient */
.psh-hero,
.psh-section,
.psh-cta-final__wrap{
  background: linear-gradient(180deg, var(--bg-800) 0%, var(--bg-700) 100%);
  color:#fff;
  box-shadow:0 24px 60px rgba(0,0,0,.45);
}

/* Section shell (width/spacing match) */
.psh-hero,
.psh-section{
  width:1170px;
  margin:24px auto 0;
  padding:40px;
  border-radius:20px;
  box-sizing:border-box;
}

/* Hero */
.psh-hero{ text-align:center; }
.psh-hero h1{
  margin:0 0 .5rem; font-size:44px; line-height:1.06; font-weight:900; color:#fff;
}
.psh-hero__sub{ max-width:860px; margin:0 auto 14px; color:var(--text-300); }
.psh-hero__ctas{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:10px; }

/* Buttons (use global accent tokens) */
.psh-btn{
  display:inline-block; padding:12px 18px; border-radius:999px; font-weight:800;
  transition:transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.psh-btn--primary{
  background:var(--accent); color:#fff; box-shadow:0 12px 24px rgba(108,99,255,.35);
}
.psh-btn--primary:hover{ transform:translateY(-2px); box-shadow:0 16px 32px rgba(108,99,255,.45); background:var(--accent-600); }
.psh-btn--outline{ border:1px solid var(--accent); color:#fff; background:transparent; }
.psh-btn--outline:hover{ background:rgba(108,99,255,.12); }

/* Titles & body */
.psh-section__title{ text-align:center; margin:0 0 10px; font-size:32px; font-weight:900; color:#fff; }
.psh-body{ color:var(--text-300); max-width:980px; margin:0 auto; }

/* Lists */
.psh-list{ max-width:980px; margin:10px auto 0; padding:0; }
.psh-list li{ color:#e8ebff; line-height:1.6; }
.psh-list--checks{ list-style:none; display:grid; gap:12px; }
.psh-list--checks li{ position:relative; padding-left:28px; }
.psh-list--checks li::before{
  content:"✔"; position:absolute; left:0; top:0; width:18px; height:18px;
  display:grid; place-items:center; border-radius:999px;
  background:var(--accent); color:#fff; font-size:12px; font-weight:900;
  box-shadow:0 10px 20px rgba(108,99,255,.35);
}

/* FAQ */
.psh-faq{ max-width:980px; margin:6px auto 0; }
.psh-faq details{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius:14px; padding:14px 16px; margin:10px 0;
  box-shadow:0 14px 30px rgba(0,0,0,.35);
}
.psh-faq summary{ cursor:pointer; font-weight:800; color:#fff; }
.psh-faq p{ margin:8px 0 0; color:var(--text-300); }

/* Final CTA wrapper uses same gradient; outer section keeps width spacing */
.psh-cta-final{
  width:1170px; margin:28px auto 40px; padding:0; box-sizing:border-box;
}
.psh-cta-final__wrap{
  border-radius:20px; padding:28px 24px; text-align:center; color:#fff;
}
.psh-links{ margin-top:8px; color:var(--text-300); }
.psh-links a{ color:#fff; text-decoration:none; }

/* Responsive */
@media (max-width: 991.98px){
  .psh-hero,
  .psh-section,
  .psh-cta-final{
    width:100%; padding:28px 20px; border-radius:0; margin-left:0; margin-right:0;
  }
  .psh-hero h1{ font-size:36px; }
}



/* =========================================
   Industries page (scoped, solid #14192C everywhere)
   ========================================= */
.inds-page a{ text-decoration:none; }

/* Single source of truth */
:root{
  --inds-solid:#14192C;
  --inds-accent:#594FE0;
  --inds-accent-2:#7266FF;
  --inds-text:#ffffff;
  --inds-sub:#c9d0e6;
}

/* Body: solid background */
body{
  background: var(--inds-solid);
  color: var(--inds-text);
}

/* Services dropdown: match the same solid background */
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"]{
  background-color: var(--inds-solid) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
}
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item{
  color:#FFFFFF!important; background-color:transparent!important;
}
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item:hover,
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item:focus{
  background-color: rgba(255,255,255,.06)!important;
}
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-divider{
  border-top-color: rgba(255,255,255,.08)!important;
}

/* Apply the SAME #14192C to all page sections */
.inds-hero,
.inds-section,
.inds-cta-final .inds-cta-final__wrap{
  background: var(--inds-solid);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  box-shadow: none; /* keep color looking uniform and “clean” */
}

/* Hero */
.inds-hero{
  width:1170px; margin:24px auto 16px; padding:40px;
  box-sizing:border-box; text-align:center;
}
.inds-hero h1{ margin:0 0 .5rem; font-size:44px; line-height:1.06; font-weight:900; color:#fff; }
.inds-hero__sub{ max-width:900px; margin:0 auto 14px; color:var(--inds-sub); }
.inds-hero__ctas{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:10px; }
.inds-trust{ margin:10px 0 0; color:var(--inds-sub); font-size:.95rem; }

/* Buttons */
.inds-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 18px; border-radius:999px; font-weight:800;
  transition:transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.inds-btn--primary{
  background:var(--inds-accent); color:#fff; box-shadow:0 12px 24px rgba(89,79,224,.35);
}
.inds-btn--primary:hover{ transform:translateY(-2px); box-shadow:0 16px 32px rgba(89,79,224,.45); }
.inds-btn--outline{ border:1px solid var(--inds-accent); color:#fff; background:transparent; }
.inds-btn--outline:hover{ background:rgba(114,102,255,.12); }

/* Sections */
.inds-section{
  width:1170px; margin:28px auto 0; padding:28px 40px;
  box-sizing:border-box;
}
.inds-section__title{ text-align:center; margin:0 0 16px; font-size:32px; font-weight:900; color:#fff; }

/* Grid of industry cards — also use same solid background */
.inds-grid{
  display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:22px;
}
@media (max-width: 991.98px){
  .inds-grid{ grid-template-columns: 1fr; }
}

.inds-card{
  background: var(--inds-solid);
  border: 1px solid rgba(255,255,255,.06);
  border-radius:20px; display:flex; flex-direction:column;
  padding:20px;
}
.inds-card header h3{ margin:0 0 4px; color:#fff; font-size:20px; font-weight:800; }
.inds-card__url a{ color:var(--inds-sub); }
.inds-card__content{ margin-top:10px; display:flex; flex-direction:column; gap:8px; color:#e8ebff; }
.inds-card__content h4{ margin:4px 0; font-size:16px; color:#fff; font-weight:800; }
.inds-card__note{ margin:6px 0 0; color:var(--inds-sub); }
.inds-card footer{ margin-top:auto; display:flex; justify-content:center; padding-top:12px; }

/* Lists */
.inds-list{ margin:0; padding-left:0; list-style:none; }
.inds-list--checks{ display:grid; gap:10px; }
.inds-list--checks li{
  position:relative; padding-left:28px; line-height:1.6; color:#e8ebff;
}
.inds-list--checks li::before{
  content:"✔"; position:absolute; left:0; top:0; width:18px; height:18px;
  display:grid; place-items:center; border-radius:999px;
  background:var(--inds-accent); color:#fff; font-size:12px; font-weight:900;
  box-shadow:0 10px 20px rgba(89,79,224,.35);
}
.inds-bullets{ max-width:980px; margin:0 auto; padding-left:18px; color:#e8ebff; }
.inds-bullets li{ margin:6px 0; }

/* Two-column checklist */
.inds-two-col{
  display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:20px; max-width:980px; margin:0 auto;
}
@media (max-width: 991.98px){
  .inds-two-col{ grid-template-columns: 1fr; }
}
.inds-inline-cta{ text-align:center; margin-top:14px; }

/* FAQ — same solid background */
.inds-faq{ max-width:980px; margin:6px auto 0; }
.inds-faq details{
  background: var(--inds-solid);
  border: 1px solid rgba(255,255,255,.06);
  border-radius:14px; padding:14px 16px; margin:10px 0;
}
.inds-faq summary{ cursor:pointer; font-weight:800; color:#fff; }
.inds-faq p{ margin:8px 0 0; color:var(--inds-sub); }

/* Final CTA */
.inds-cta-final{
  width:1170px; margin:28px auto 40px; padding:0; box-sizing:border-box;
}
.inds-cta-final__wrap{
  padding:28px 24px; text-align:center; color:#fff;
}
.inds-cta-final__wrap h2{ margin:0 0 6px; font-size:30px; font-weight:900; color:#fff; }
.inds-cta-final__wrap p{ margin:0 0 12px; color:var(--inds-sub); }
.inds-links{ margin-top:8px; color:var(--inds-sub); }
.inds-links a{ color:#fff; }

/* Responsive container behavior (match site) */
@media (max-width: 991.98px){
  .inds-hero,
  .inds-section,
  .inds-cta-final{
    width:100%; padding:28px 20px; border-radius:0; margin-left:0; margin-right:0;
  }
  .inds-hero h1{ font-size:36px; }
}


/* File: /industries/ecommerce/ecommerce.css
   Force SAME solid #14192C background on ALL sections, without changing body background. */

.indsd-page a{ text-decoration:none; }

/* Tokens (no body background here) */
:root{
  --indc-section:#14192C;
  --indc-accent:#594FE0;
  --indc-accent-2:#7266FF;
  --indc-text:#ffffff;
  --indc-sub:#c9d0e6;
}

/* =============== Layout =============== */
.indsd-hero,
.indsd-section,
.indsd-cta{
  width:1170px;
  margin:24px auto 0;
  padding:28px 40px;
  box-sizing:border-box;
}

/* Hero spacing tweak */
.indsd-hero{ padding:40px; margin-top:24px; }

/* Section headings */
.indsd-hero h1{
  margin:0 0 .5rem;
  font-size:42px;
  line-height:1.06;
  font-weight:900;
  color:#fff;
}
.indsd-sub{ max-width:900px; margin:0 auto 10px; color:var(--indc-sub); text-align:center; }
.indsd-section h2{
  margin:0 auto 12px; font-size:28px; font-weight:900; color:#fff; text-align:center;
}

/* Buttons */
.indsd-ctas{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:12px; }
.indsd-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 18px; border-radius:999px; font-weight:800; color:#fff;
  transition:transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.indsd-btn--primary{ background:var(--indc-accent); box-shadow:0 12px 24px rgba(89,79,224,.35); }
.indsd-btn--primary:hover{ transform:translateY(-2px); box-shadow:0 16px 32px rgba(89,79,224,.45); }
.indsd-btn--outline{ border:1px solid var(--indc-accent); background:transparent; }
.indsd-btn--outline:hover{ background:rgba(114,102,255,.12); }

/* Lists */
.indsd-list{ margin:0; padding-left:0; list-style:none; }
.indsd-list--checks{ display:grid; gap:10px; }
.indsd-list--checks li{
  position:relative; padding-left:28px; line-height:1.6; color:#e8ebff;
}
.indsd-list--checks li::before{
  content:"✔"; position:absolute; left:0; top:0; width:18px; height:18px;
  display:grid; place-items:center; border-radius:999px;
  background:var(--indc-accent); color:#fff; font-size:12px; font-weight:900;
  box-shadow:0 10px 20px rgba(89,79,224,.35);
}
.indsd-list--bullets{ margin-left:18px; color:#e8ebff; }
.indsd-links{ display:grid; gap:8px; }
.indsd-links a{ color:#fff; }

/* FAQ cards */
.indsd-faq details{
  border-radius:14px; padding:14px 16px; margin:10px 0; color:#e8ebff;
}
.indsd-faq summary{ cursor:pointer; font-weight:800; color:#fff; }

/* Final CTA */
.indsd-cta__wrap{ text-align:center; color:#fff; }
.indsd-inline-links{ margin-top:10px; color:var(--indc-sub); }
.indsd-inline-links a{ color:#fff; }

/* =============== CRITICAL OVERRIDES ===============
   Wipe any gradients/images & enforce solid #14192C on ALL sections */
.indsd-page section{
  background: var(--indc-section) !important;   /* resets background-image too */
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  box-shadow: none;
}

/* The CTA has an inner wrapper; give it the same solid background too */
.indsd-cta__wrap,
.indsd-faq details{
  background: var(--indc-section) !important;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: none;
}

/* Responsive */
@media (max-width: 991.98px){
  .indsd-hero,
  .indsd-section,
  .indsd-cta{
    width:100%;
    padding:28px 20px;
    border-radius:0;
    margin-left:0;
    margin-right:0;
  }
  .indsd-hero h1{ font-size:34px; }
}

/* File: /industries/saas/saas.css
   Force SAME solid #14192C background on ALL sections, without changing body background. */

.indsd-page a{ text-decoration:none; }

/* Tokens (no body background here) */
:root{
  --indc-section:#14192C;
  --indc-accent:#594FE0;
  --indc-accent-2:#7266FF;
  --indc-text:#ffffff;
  --indc-sub:#c9d0e6;
}

/* ===== Base section layout (width matches site) ===== */
.indsd-hero,
.indsd-section,
.indsd-cta{
  width:1170px;
  margin:24px auto 0;
  padding:28px 40px;
  box-sizing:border-box;
}

/* Hero spacing */
.indsd-hero{ padding:40px; }

/* Headings & text */
.indsd-hero h1{
  margin:0 0 .5rem;
  font-size:42px;
  line-height:1.06;
  font-weight:900;
  color:#fff;
}
.indsd-sub{ max-width:900px; margin:0 auto 10px; color:var(--indc-sub); text-align:center; }
.indsd-section h2{
  margin:0 auto 12px; font-size:28px; font-weight:900; color:#fff; text-align:center;
}

/* Buttons */
.indsd-ctas{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:12px; }
.indsd-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 18px; border-radius:999px; font-weight:800; color:#fff;
  transition:transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.indsd-btn--primary{ background:var(--indc-accent); box-shadow:0 12px 24px rgba(89,79,224,.35); }
.indsd-btn--primary:hover{ transform:translateY(-2px); box-shadow:0 16px 32px rgba(89,79,224,.45); }
.indsd-btn--outline{ border:1px solid var(--indc-accent); background:transparent; }
.indsd-btn--outline:hover{ background:rgba(114,102,255,.12); }

/* Lists */
.indsd-list{ margin:0; padding-left:0; list-style:none; }
.indsd-list--checks{ display:grid; gap:10px; }
.indsd-list--checks li{
  position:relative; padding-left:28px; line-height:1.6; color:#e8ebff;
}
.indsd-list--checks li::before{
  content:"✔"; position:absolute; left:0; top:0; width:18px; height:18px;
  display:grid; place-items:center; border-radius:999px;
  background:var(--indc-accent); color:#fff; font-size:12px; font-weight:900;
  box-shadow:0 10px 20px rgba(89,79,224,.35);
}
.indsd-list--bullets{ margin-left:18px; color:#e8ebff; }
.indsd-links{ display:grid; gap:8px; }
.indsd-links a{ color:#fff; }

/* FAQ */
.indsd-faq details{
  border-radius:14px; padding:14px 16px; margin:10px 0; color:#e8ebff;
}
.indsd-faq summary{ cursor:pointer; font-weight:800; color:#fff; }

/* Final CTA */
.indsd-cta__wrap{ text-align:center; color:#fff; }
.indsd-inline-links{ margin-top:10px; color:var(--indc-sub); }
.indsd-inline-links a{ color:#fff; }

/* ===== CRITICAL OVERRIDES =====
   Wipe any gradients/images & enforce solid #14192C on ALL sections */
.indsd-page section{
  background: var(--indc-section) !important;    /* clears background-image too */
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  box-shadow: none;
}

/* Inner wrappers/cards must match the same color */
.indsd-cta__wrap,
.indsd-faq details{
  background: var(--indc-section) !important;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: none;
}

/* Responsive */
@media (max-width: 991.98px){
  .indsd-hero,
  .indsd-section,
  .indsd-cta{
    width:100%;
    padding:28px 20px;
    border-radius:0;
    margin-left:0;
    margin-right:0;
  }
  .indsd-hero h1{ font-size:34px; }
}

/* File: /industries/marketing-agencies/marketing-agencies.css
   Enforce SAME solid #14192C background on ALL sections (hero + sections + FAQs + CTA),
   without changing the body background. Keep header/footer untouched. */

.indsd-page a{ text-decoration:none; }

/* Tokens (no body background here) */
:root{
  --indc-section:#14192C;
  --indc-accent:#594FE0;
  --indc-accent-2:#7266FF;
  --indc-text:#ffffff;
  --indc-sub:#c9d0e6;
}

/* ===== Base section layout (width matches site) ===== */
.indsd-hero,
.indsd-section,
.indsd-cta{
  width:1170px;
  margin:24px auto 0;
  padding:28px 40px;
  box-sizing:border-box;
}

/* Hero spacing */
.indsd-hero{ padding:40px; }

/* Headings & text */
.indsd-hero h1{
  margin:0 0 .5rem;
  font-size:42px;
  line-height:1.06;
  font-weight:900;
  color:#fff;
}
.indsd-sub{ max-width:900px; margin:0 auto 10px; color:var(--indc-sub); text-align:center; }
.indsd-section h2{
  margin:0 auto 12px; font-size:28px; font-weight:900; color:#fff; text-align:center;
}

/* Buttons */
.indsd-ctas{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:12px; }
.indsd-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 18px; border-radius:999px; font-weight:800; color:#fff;
  transition:transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.indsd-btn--primary{ background:var(--indc-accent); box-shadow:0 12px 24px rgba(89,79,224,.35); }
.indsd-btn--primary:hover{ transform:translateY(-2px); box-shadow:0 16px 32px rgba(89,79,224,.45); }
.indsd-btn--outline{ border:1px solid var(--indc-accent); background:transparent; }
.indsd-btn--outline:hover{ background:rgba(114,102,255,.12); }

/* Lists */
.indsd-list{ margin:0; padding-left:0; list-style:none; }
.indsd-list--checks{ display:grid; gap:10px; }
.indsd-list--checks li{
  position:relative; padding-left:28px; line-height:1.6; color:#e8ebff;
}
.indsd-list--checks li::before{
  content:"✔"; position:absolute; left:0; top:0; width:18px; height:18px;
  display:grid; place-items:center; border-radius:999px;
  background:var(--indc-accent); color:#fff; font-size:12px; font-weight:900;
  box-shadow:0 10px 20px rgba(89,79,224,.35);
}
.indsd-list--bullets{ margin-left:18px; color:#e8ebff; }
.indsd-links{ display:grid; gap:8px; }
.indsd-links a{ color:#fff; }

/* FAQ */
.indsd-faq details{
  border-radius:14px; padding:14px 16px; margin:10px 0; color:#e8ebff;
}
.indsd-faq summary{ cursor:pointer; font-weight:800; color:#fff; }

/* Final CTA */
.indsd-cta__wrap{ text-align:center; color:#fff; }
.indsd-inline-links{ margin-top:10px; color:var(--indc-sub); }
.indsd-inline-links a{ color:#fff; }

/* ===== CRITICAL OVERRIDES =====
   Wipe any gradients/images & enforce solid #14192C on ALL sections */
.indsd-page section{
  background: var(--indc-section) !important;    /* clears background-image too */
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  box-shadow: none;
}

/* Inner wrappers/cards must match the same color */
.indsd-cta__wrap,
.indsd-faq details{
  background: var(--indc-section) !important;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: none;
}

/* Responsive */
@media (max-width: 991.98px){
  .indsd-hero,
  .indsd-section,
  .indsd-cta{
    width:100%;
    padding:28px 20px;
    border-radius:0;
    margin-left:0;
    margin-right:0;
  }
  .indsd-hero h1{ font-size:34px; }
}


/* File: /industries/enterprise-internal-tools/enterprise-internal-tools.css */
/* ================================
   Industries Detail Pages (scoped)
   ================================ */
.indsd-page a{ text-decoration:none; }

.indsd-page{
  --indc-accent:#594FE0;
  --indc-accent-2:#7266FF;
  --indc-card:#15192d;
  --indc-ink:#ffffff;
  --indc-ink-sub:#c9d0e6;
}

/* Hero */
.indsd-hero{
  width:1170px; margin:24px auto 16px; padding:40px;
  border-radius:20px; box-sizing:border-box; text-align:center; color:var(--indc-ink);
  background:
    radial-gradient(1100px 380px at 75% 15%, rgba(114,102,255,.26) 0%, rgba(114,102,255,0) 60%),
    linear-gradient(135deg,#242a49 0%,#161b33 55%,#0d1122 100%);
  box-shadow:0 24px 60px rgba(0,0,0,.45);
}
.indsd-hero h1{ margin:0 0 .5rem; font-size:42px; line-height:1.06; font-weight:900; color:#fff; }
.indsd-sub{ max-width:900px; margin:0 auto 10px; color:var(--indc-ink-sub); }

/* Buttons */
.indsd-ctas{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:12px; }
.indsd-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 18px; border-radius:999px; font-weight:800; color:#fff;
  transition:transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.indsd-btn--primary{ background:var(--indc-accent); box-shadow:0 12px 24px rgba(89,79,224,.35); }
.indsd-btn--primary:hover{ transform:translateY(-2px); box-shadow:0 16px 32px rgba(89,79,224,.45); }
.indsd-btn--outline{ border:1px solid var(--indc-accent); background:transparent; }
.indsd-btn--outline:hover{ background:rgba(114,102,255,.12); }

/* Sections */
.indsd-section{
  width:1170px; margin:28px auto 0; padding:28px 40px;
  border-radius:20px; box-sizing:border-box; color:#fff; background:transparent;
}
.indsd-section h2{
  margin:0 auto 12px;
  font-size:28px;
  font-weight:900;
  color:#fff;
  text-align:center;
}


/* Lists */
.indsd-list{ margin:0; padding-left:0; list-style:none; }
.indsd-list--checks{ display:grid; gap:10px; }
.indsd-list--checks li{
  position:relative; padding-left:28px; line-height:1.6; color:#e8ebff;
}
.indsd-list--checks li::before{
  content:"✔"; position:absolute; left:0; top:0; width:18px; height:18px;
  display:grid; place-items:center; border-radius:999px;
  background:var(--indc-accent); color:#fff; font-size:12px; font-weight:900;
  box-shadow:0 10px 20px rgba(89,79,224,.35);
}
.indsd-list--bullets{ margin-left:18px; color:#e8ebff; }
.indsd-links{ display:grid; gap:8px; }
.indsd-links a{ color:#fff; }

/* FAQ */
.indsd-faq details{
  background:var(--indc-card); border-radius:14px; padding:14px 16px; margin:10px 0;
  box-shadow:0 14px 30px rgba(0,0,0,.35); color:#e8ebff;
}
.indsd-faq summary{ cursor:pointer; font-weight:800; color:#fff; }

/* Final CTA */
.indsd-cta{ width:1170px; margin:28px auto 40px; padding:0; box-sizing:border-box; }
.indsd-cta__wrap{
  background:
    radial-gradient(900px 320px at 80% 20%, rgba(114,102,255,.22) 0%, rgba(114,102,255,0) 60%),
    linear-gradient(135deg,#242a49 0%,#161b33 55%,#0d1122 100%);
  border-radius:20px; padding:28px 24px; text-align:center; color:#fff;
  box-shadow:0 24px 60px rgba(0,0,0,.45);
}
.indsd-inline-links{ margin-top:10px; color:#c9d0e6; }
.indsd-inline-links a{ color:#fff; }

/* Responsive */
@media (max-width: 991.98px){
  .indsd-hero,
  .indsd-section,
  .indsd-cta{ width:100%; padding:28px 20px; border-radius:0; margin-left:0; margin-right:0; }
  .indsd-hero h1{ font-size:34px; }
}

/* =========================
   Case Studies Page Styles
   - Unified with index.html background
   ========================= */

/* Accent + tokens (page-local) */
:root {
  --cs-accent: #594FE0;   /* primary */
  --cs-accent-2: #7266FF; /* hover/focus */
  --cs-card-bg: #15192d;  /* index-like card */
  --cs-soft: #1a1a1a;
  --cs-border: #222;
  --cs-text: #ffffff;
  --cs-text-dim: #cfcfe6;
}

/* Body uses same gradient as index.html (with safe fallbacks) */
body {
  background: linear-gradient(
    180deg,
    var(--bg-800, #13131b) 0%,
    var(--bg-700, #000000) 100%
  );
}

a { text-decoration: none; }

/* Make the Services dropdown match the dark menu on index */
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"]{
  background-color:#111111!important; border:0!important;
}
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item{
  color:#FFFFFF!important; background-color:transparent!important;
}
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item:hover,
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item:focus,
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item:active,
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item.active,
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item:focus-visible{
  color:#FFFFFF!important; background-color:#1A1A1A!important;
}
.site-header .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-divider{
  border-top-color:#2a2a2a!important;
}

/* Shared wrapper width to match header/footer (1170px) */
.cs-wrap {
  width: 1170px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Section titles */
.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin: 0 0 24px;
}

/* ---------- Apply the SAME background to ALL sections ---------- */
.cs-hero .cs-wrap,
.cs-filter .cs-wrap,
.cs-cards .cs-wrap,
.cs-measure .cs-wrap,
.cs-playbook .cs-wrap,
.cs-faqs .cs-wrap,
.cs-finalcta .cs-wrap {
  background: linear-gradient(
    180deg,
    var(--bg-800, #13131b) 0%,
    var(--bg-700, #000000) 100%
  );
  border-radius: 20px;
  border: 1px solid var(--cs-border);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}

/* ================ Hero ================ */
.cs-hero { padding: 36px 0 0; }
.cs-hero .cs-wrap { padding: 40px; }
.cs-hero__title {
  font-size: 44px; font-weight: 900; color: var(--cs-text);
  margin: 0 0 12px; text-align: center;
}
.cs-hero__sub {
  color: var(--cs-text-dim); font-size: 18px; line-height: 1.55;
  margin: 0 auto 20px; max-width: 860px; text-align: center;
}
.cs-hero__ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px;
}
.cs-btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 18px; border-radius: 999px; font-weight: 700;
  border: 1px solid transparent; color: #fff;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .05s ease;
  box-shadow: 0 6px 18px rgba(89,79,224,.25);
}
.cs-btn--primary { background: var(--cs-accent); }
.cs-btn--primary:hover,
.cs-btn--primary:focus { background: var(--cs-accent-2); }
.cs-btn--ghost { background: transparent; border-color: rgba(255,255,255,.18); }
.cs-btn--ghost:hover,
.cs-btn--ghost:focus { border-color: var(--cs-accent-2); box-shadow: 0 6px 18px rgba(114,102,255,.25); }
.cs-trust {
  display: flex; gap: 8px; justify-content: center; color: #c9c9de; font-size: 14px; margin-top: 6px;
}
.cs-trust .dot { opacity: .6; }

/* ================ Filter ================ */
.cs-filter { padding: 28px 0 0; }
.cs-filter .cs-wrap { padding: 28px 40px 8px; }
.cs-filter__group { margin-bottom: 20px; }
.cs-filter__label { display: block; font-weight: 800; color: #fff; margin-bottom: 6px; }
.cs-filter__help { margin: 0 0 10px; color: #a8a8c9; font-size: 14px; }
.cs-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  background: var(--cs-soft); color: #e9e9ff; border: 1px solid var(--cs-border);
  border-radius: 999px; padding: 8px 14px; line-height: 1; font-size: 14px; cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, transform .05s ease;
}
.chip:hover { border-color: var(--cs-accent-2); }
.chip--active { background: var(--cs-accent); border-color: transparent; }

/* ================ Cards ================ */
.cs-cards { padding: 28px 0 0; }
.cs-cards .cs-wrap { padding: 32px 40px 36px; }
.cs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cs-card {
  background: var(--cs-card-bg); border: 1px solid var(--cs-border);
  border-radius: 18px; padding: 18px; display: flex; flex-direction: column; min-height: 100%;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}
.cs-thumb {
  width: 100%; aspect-ratio: 16/9; background: #0d0d12; border: 1px solid #191926;
  border-radius: 12px; overflow: hidden; margin-bottom: 14px;
}
.cs-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cs-card__title { color: #fff; font-size: 20px; font-weight: 800; margin: 2px 0 6px; }
.cs-card__metric { color: #d9d9ff; margin: 0 0 8px; font-size: 15px; }
.cs-card__desc { color: #d3d3eb; font-size: 14px; line-height: 1.55; margin: 0 0 12px; }
.cs-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 14px; padding: 0; list-style: none; }
.cs-tags li {
  background: rgba(89,79,224,.12); color: #e7e5ff; border: 1px solid rgba(114,102,255,.25);
  border-radius: 999px; padding: 6px 10px; font-size: 12px;
}
.cs-card__cta {
  margin-top: auto; display: inline-flex; align-items: center; justify-content: center;
  height: 40px; padding: 0 14px; border-radius: 999px; background: var(--cs-accent); color: #fff;
  font-weight: 700; border: 1px solid transparent; box-shadow: 0 6px 18px rgba(89,79,224,.25);
  transition: background-color .2s ease, transform .05s ease;
}
.cs-card__cta:hover,
.cs-card__cta:focus { background: var(--cs-accent-2); }

/* ================ Measure ================ */
.cs-measure { padding: 28px 0 0; }
.cs-measure .cs-wrap { padding: 32px 40px; }
.cs-list { margin: 0; padding-left: 18px; color: #e5e5fe; line-height: 1.7; }
.cs-list li + li { margin-top: 6px; }

/* ================ Playbook ================ */
.cs-playbook { padding: 28px 0 0; }
.cs-playbook .cs-wrap { padding: 32px 40px; }
.cs-steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 10px;
}
.cs-steps .step {
  background: var(--cs-soft); border: 1px solid var(--cs-border); color: #f1f1ff;
  border-radius: 14px; padding: 12px 14px; font-weight: 700; display: flex; align-items: center; gap: 10px;
}
.cs-steps .step span {
  display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 999px;
  background: var(--cs-accent); font-weight: 800;
}
.cs-note { color: #bdbde0; margin: 0; text-align: center; }

/* ================ FAQs (index-style cards) ================ */
.cs-faqs { padding: 28px 0 0; }
.cs-faqs .cs-wrap { padding: 24px 40px; }
.cs-faqs__items {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px;
}
.cs-faq {
  background: var(--cs-card-bg);
  border: 1px solid #22283d;        /* subtle indigo-tinted border */
  border-radius: 14px;
  padding: 14px 16px;
  color: #e9e9ff;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}
.cs-faq > summary {
  cursor: pointer;
  font-weight: 800;
  color: #fff;
  outline: none;
}
.cs-faq[open] > summary { color: #e6e6ff; }
.cs-faq > p {
  margin: 8px 0 0;
  color: #d3d3eb;
  font-size: 14px;
  line-height: 1.6;
}

/* ================ Final CTA ================ */
.cs-finalcta { padding: 28px 0 40px; }
.cs-finalcta .cs-wrap { padding: 32px 40px 36px; text-align: center; }
.cs-finalcta__sub { color: #cfcfe6; margin: -4px 0 16px; }
.cs-finalcta__ctas {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 10px;
}
.cs-xlinks { color: #bdbde0; display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.cs-xlinks a { color: #e7e7ff; }
.cs-xlinks .dot { opacity: .6; }

/* ================ Responsive ================ */
@media (max-width: 1199.98px) {
  .cs-wrap { width: 100%; padding-left: 16px; padding-right: 16px; }
  .cs-filter .cs-wrap,
  .cs-cards .cs-wrap,
  .cs-measure .cs-wrap,
  .cs-playbook .cs-wrap,
  .cs-faqs .cs-wrap,
  .cs-finalcta .cs-wrap { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 991.98px) {
  .cs-steps { grid-template-columns: repeat(3, 1fr); }
  .cs-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-faqs__items { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575.98px) {
  .cs-hero__title { font-size: 34px; }
  .cs-grid { grid-template-columns: 1fr; }
  .cs-steps { grid-template-columns: repeat(2, 1fr); }
  .cs-faqs__items { grid-template-columns: 1fr; }
  .cs-btn { width: 100%; }
}

/* ===========================
   Resources Page (MV3 theme)
   =========================== */

:root{
  --rs-accent: #594FE0;
  --rs-accent-2: #7266FF;
  --rs-card: #111111;
  --rs-soft: #1a1a1a;
  --rs-border: #222;
  --rs-text: #ffffff;
  --rs-dim: #cfcfe6;
}

html,body{background:#000;}
a{color:#e7e7ff;text-decoration:none;}
a:hover{color:#fff}

/* Shared wrapper width (match site sections/header/footer) */
.rs-wrap{
  width:1170px;
  margin:0 auto;
  box-sizing:border-box;
}

/* Centered section labels globally (hero has its own) */
.section-title{
  color:#fff;
  font-weight:800;
  font-size:32px;
  text-align:center;
  margin:0 0 22px;
}

/* ===== Hero ===== */
.rs-hero{padding:36px 0 0;}
.rs-hero .rs-wrap{
  background:linear-gradient(180deg, rgba(19,19,27,1) 0%, rgba(0,0,0,1) 100%);
  border:1px solid var(--rs-border);
  border-radius:20px;
  padding:40px;
}
.rs-hero__title{
  color:var(--rs-text);
  font-size:44px;
  font-weight:900;
  text-align:center;
  margin:0 0 10px;
}
.rs-hero__sub{
  color:var(--rs-dim);
  text-align:center;
  max-width:860px;
  margin:0 auto 18px;
  font-size:18px;
  line-height:1.55;
}
.rs-hero__ctas{
  display:flex;gap:12px;justify-content:center;flex-wrap:wrap;
}

/* Buttons */
.rs-btn{
  display:inline-flex;align-items:center;justify-content:center;
  height:44px;padding:0 18px;border-radius:999px;font-weight:800;
  border:1px solid transparent;color:#fff;
  box-shadow:0 6px 18px rgba(89,79,224,.25);
  transition:background-color .2s, border-color .2s, box-shadow .2s, transform .05s;
}
.rs-btn--primary{background:var(--rs-accent);}
.rs-btn--primary:hover,.rs-btn--primary:focus{background:var(--rs-accent-2);}
.rs-btn--ghost{background:transparent;border-color:rgba(255,255,255,.18)}
.rs-btn--ghost:hover,.rs-btn--ghost:focus{border-color:var(--rs-accent-2);box-shadow:0 6px 18px rgba(114,102,255,.25)}

/* ===== Explore ===== */
.rs-explore{padding:28px 0 0;}
.rs-block + .rs-block{margin-top:22px;}
.rs-block .rs-block__title{
  color:#fff;font-weight:900;font-size:22px;margin:0 0 14px;text-align:center;
}

/* Grids */
.rs-grid{
  display:grid;gap:20px;
}
.rs-grid--guides{grid-template-columns:repeat(3,1fr);}
.rs-grid--two{grid-template-columns:1.2fr .8fr;align-items:stretch;}
.rs-grid--tools{grid-template-columns:repeat(3,1fr);}
.rs-grid--articles{grid-template-columns:repeat(3,1fr);}

/* Guide Cards */
.rs-card{
  background:var(--rs-card);
  border:1px solid var(--rs-border);
  border-radius:18px;
  padding:18px;
  display:flex;flex-direction:column;min-height:100%;
  box-shadow:0 10px 28px rgba(0,0,0,.35);
}
.rs-card__icon{
  width:42px;height:42px;border-radius:10px;
  display:grid;place-items:center;
  background:rgba(89,79,224,.18);color:#fff;margin-bottom:10px;
}
.rs-card__title{color:#fff;font-weight:800;font-size:18px;margin:0 0 6px;}
.rs-card__desc{color:#d3d3eb;font-size:14px;line-height:1.6;margin:0 0 12px;}
.rs-card__cta{
  margin-top:auto;display:inline-flex;align-items:center;justify-content:center;
  height:40px;padding:0 14px;border-radius:999px;background:var(--rs-accent);color:#fff;font-weight:800;
  box-shadow:0 6px 18px rgba(89,79,224,.25);transition:background-color .2s;
}
.rs-card__cta:hover,.rs-card__cta:focus{background:var(--rs-accent-2);}

/* Lists + Illustration */
.rs-listcard{
  background:#000;border:1px solid var(--rs-border);border-radius:18px;padding:18px;
}
.rs-list{list-style:none;padding:0;margin:0;display:grid;gap:10px;}
.rs-list a{display:flex;align-items:center;gap:10px;color:#e7e7ff;}
.rs-list a i{color:var(--rs-accent);}
.rs-list a:hover{color:#fff;}
.rs-illustration{
  background:linear-gradient(180deg, rgba(19,19,27,1) 0%, rgba(0,0,0,1) 100%);
  border:1px solid var(--rs-border);border-radius:18px;padding:10px;display:flex;align-items:center;justify-content:center;
}
.rs-illustration img{max-width:100%;height:auto;display:block;border-radius:12px}

/* Tools */
.rs-tool{
  background:var(--rs-card);border:1px solid var(--rs-border);border-radius:18px;padding:18px;display:flex;flex-direction:column;
}
.rs-tool__title{color:#fff;font-weight:800;font-size:18px;margin:0 0 6px;}
.rs-tool__title i{color:var(--rs-accent);margin-right:8px;}
.rs-tool__desc{color:#d3d3eb;font-size:14px;line-height:1.6;margin:0 0 10px;}
.rs-tool__cta{
  margin-top:auto;display:inline-flex;align-items:center;justify-content:center;height:40px;
  padding:0 14px;border-radius:999px;background:var(--rs-accent);color:#fff;font-weight:800;box-shadow:0 6px 18px rgba(89,79,224,.25);
}
.rs-tool__cta:hover{background:var(--rs-accent-2)}

/* Articles */
.rs-article{
  background:#0e0e14;border:1px solid var(--rs-border);border-radius:16px;padding:16px;
}
.rs-article__title{margin:0 0 6px;font-size:18px;font-weight:800}
.rs-article__title a{color:#fff}
.rs-article__title a:hover{color:#fff}
.rs-article__meta{color:#bdbde0;margin:0}

/* ===== How to use ===== */
.rs-how{padding:28px 0 40px;}
.rs-how .rs-wrap{
  background:linear-gradient(180deg, rgba(19,19,27,1) 0%, rgba(0,0,0,1) 100%);
  border:1px solid var(--rs-border);border-radius:20px;padding:32px 40px;text-align:center;
}
.rs-how__text{color:#cfcfe6;margin:0 0 14px}
.rs-how__ctas{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;margin-bottom:10px}
.rs-xlinks{color:#bdbde0;display:flex;justify-content:center;gap:8px;flex-wrap:wrap}
.rs-xlinks a{color:#e7e7ff}
.rs-xlinks .dot{opacity:.6}

/* ===== Responsive ===== */
@media (max-width:1199.98px){
  .rs-wrap{width:100%;padding-left:16px;padding-right:16px}
}
@media (max-width:991.98px){
  .rs-grid--guides{grid-template-columns:repeat(2,1fr)}
  .rs-grid--two{grid-template-columns:1fr}
  .rs-grid--tools{grid-template-columns:repeat(2,1fr)}
  .rs-grid--articles{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:575.98px){
  .rs-hero__title{font-size:34px}
  .rs-btn{width:100%}
  .rs-grid--guides,
  .rs-grid--tools,
  .rs-grid--articles{grid-template-columns:1fr}
}
/* =========================
   Resources Page Styles
   Scoped with .res-*
   ========================= */

:root {
  --res-accent: #594FE0;   /* primary purple */
  --res-accent-2: #7266FF; /* hover */
  --res-text: #ffffff;
  --res-dim: #cfcfe6;
  --res-soft: #121218;
  --res-card: #111111;
  --res-border: #22232d;
}

body { background: #000; }
a { text-decoration: none; }

/* Shared wrapper width to match site */
.res-wrap {
  width: 1170px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Center all section labels on this page */
.section-title {
  color: var(--res-text);
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 22px;
}

/* ================= Hero ================= */
.res-hero { padding: 36px 0 0; }
.res-hero .res-wrap {
  background: linear-gradient(180deg, rgba(19,19,27,1) 0%, rgba(0,0,0,1) 100%);
  border: 1px solid var(--res-border);
  border-radius: 20px;
  padding: 40px;
}
.res-hero__title {
  color: var(--res-text);
  font-size: 44px;
  font-weight: 900;
  text-align: center;
  margin: 0 0 12px;
}
.res-hero__sub {
  color: var(--res-dim);
  font-size: 18px;
  line-height: 1.55;
  text-align: center;
  margin: 0 auto 18px;
  max-width: 860px;
}
.res-hero__ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.res-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 6px 18px rgba(89,79,224,.25);
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.res-btn--primary { background: var(--res-accent); }
.res-btn--primary:hover,
.res-btn--primary:focus { background: var(--res-accent-2); }
.res-btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,.18);
}
.res-btn--ghost:hover,
.res-btn--ghost:focus {
  border-color: var(--res-accent-2);
  box-shadow: 0 6px 18px rgba(114,102,255,.25);
}
.res-trust {
  display: flex;
  gap: 8px;
  justify-content: center;
  color: #c9c9de;
  font-size: 14px;
  margin-top: 8px;
}
.res-trust .dot { opacity: .6; }

/* ================= Cards Grid ================= */
.res-cards { padding: 28px 0 0; }
.res-cards .res-wrap {
  background: #000;
  border: 1px solid var(--res-border);
  border-radius: 20px;
  padding: 28px 40px 34px;
}
.res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.res-card {
  background: var(--res-card);
  border: 1px solid var(--res-border);
  border-radius: 18px;
  padding: 18px 18px 16px;
  color: var(--res-text);
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  display: flex;
  flex-direction: column;
}
.res-card__title {
  font-size: 20px;
  font-weight: 800;
  margin: 2px 0 10px;
}
.res-list,
.res-links {
  margin: 0;
  padding-left: 18px;
  color: #e3e3ff;
  line-height: 1.7;
}
.res-links {
  padding-left: 0;
  list-style: none;
}
.res-links li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255,255,255,.08);
}
.res-links li:last-child { border-bottom: 0; }
.res-links a { color: #e9e7ff; }
.res-links a:hover { color: var(--res-accent-2); }
.arrow { opacity: .6; }

/* Wide card */
.res-card--wide {
  grid-column: span 3;
}
.res-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.res-link-more {
  color: #e9e7ff;
  font-weight: 700;
}
.res-link-more:hover { color: var(--res-accent-2); }

/* Article list */
.res-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.res-article {
  display: block;
  background: var(--res-soft);
  border: 1px solid var(--res-border);
  border-radius: 14px;
  padding: 12px 14px;
}
.res-article__tag {
  display: inline-block;
  background: rgba(89,79,224,.15);
  border: 1px solid rgba(114,102,255,.35);
  color: #efeefe;
  font-size: 12px;
  border-radius: 999px;
  padding: 4px 8px;
  margin-bottom: 8px;
}
.res-article__title {
  display: block;
  color: #ffffff;
  line-height: 1.45;
}

/* ================= How to use ================= */
.res-howto { padding: 28px 0 40px; }
.res-howto .res-wrap {
  background: linear-gradient(180deg, rgba(19,19,27,1) 0%, rgba(0,0,0,1) 100%);
  border: 1px solid var(--res-border);
  border-radius: 20px;
  padding: 28px 40px 34px;
  text-align: center;
}
.res-howto__lead {
  color: var(--res-dim);
  margin: -4px 0 16px;
}
.res-howto__ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.res-xlinks {
  color: #bdbde0;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.res-xlinks a { color: #e7e7ff; }
.res-xlinks .dot { opacity: .6; }

/* ================= Responsive ================= */
@media (max-width: 1199.98px) {
  .res-wrap { width: 100%; padding-left: 16px; padding-right: 16px; }
  .res-cards .res-wrap,
  .res-howto .res-wrap { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 991.98px) {
  .res-grid { grid-template-columns: 1fr 1fr; }
  .res-card--wide { grid-column: span 2; }
  .res-articles { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575.98px) {
  .res-hero__title { font-size: 34px; }
  .res-articles { grid-template-columns: 1fr; }
  .res-btn { width: 100%; }
}




/* ─── Privacy Policy Page Styles ─────────────────────────── */
.policy-page {
  width: 1170px;
  margin: 20px auto 0;            
  padding: 20px 40px 40px 20px;
  background: linear-gradient(180deg, rgba(68, 18, 2, 1) 0%, rgba(0, 0, 0, 1) 100%);
  border-radius: 20px;
  box-sizing: border-box;
  color: #fff;
}
.policy-page__container { max-width: 900px; margin: 0 auto; padding: 0; }
.policy-page__heading {
  font-size: 42px; font-weight: 700; margin: 0 0 16px; color: #FF4500; text-align: center;
}
.policy-page__container h3 {
  font-size: 1.25rem; font-weight: 700; margin: 24px 0 12px; color: #fff; text-align: center;
}
.policy-page__container p {
  font-size: 0.9rem; line-height: 1.6; margin: 0 0 16px; color: #ddd;
}
.policy-page__container ul { margin: 0 0 16px 20px; padding: 0; }
.policy-page__container ul li { font-size: 0.9rem; line-height: 1.6; color: #ddd; margin: 0 0 8px; }
.policy-page__container a { color: #FF4500; text-decoration: none; }
.policy-page__container a:hover { text-decoration: underline; }

/* ─── Terms & Conditions Page Styles ────────────────────── */
.terms-page {
  width: 1170px;
  margin: 20px auto 0;
  padding: 20px 40px 40px 20px;
  background: linear-gradient(180deg, rgba(68, 18, 2, 1) 0%, rgba(0, 0, 0, 1) 100%);
  border-radius: 20px;
  box-sizing: border-box;
  color: #fff;
}
.terms-page__container { max-width: 900px; margin: 0 auto; padding: 0; }
.terms-page__heading {
  font-size: 42px; font-weight: 700; margin: 0 0 16px; text-align: center; color: #FF4500;
}
.terms-page__container h3 {
  font-size: 1.25rem; font-weight: 700; margin: 24px 0 12px; color: #fff; text-align: center;
}
.terms-page__container p { font-size: 0.9rem; line-height: 1.6; margin: 0 0 16px; color: #ddd; }
.terms-page__container ul { margin: 0 0 16px 20px; padding: 0; }
.terms-page__container ul li { font-size: 0.9rem; line-height: 1.6; color: #ddd; margin: 0 0 8px; }
.terms-page__container a { color: #FF4500; text-decoration: none; }
.terms-page__container a:hover { text-decoration: underline; }

/* ─── Disclaimers Page Styles ───────────────────────────── */
.disclaimers-page {
  width: 1170px;
  margin: 20px auto 0;
  padding: 20px 40px 40px 20px;
  background: linear-gradient(180deg, rgba(68, 18, 2, 1) 0%, rgba(0, 0, 0, 1) 100%);
  border-radius: 20px;
  box-sizing: border-box;
  color: #fff;
}
.disclaimers-page__container { max-width: 900px; margin: 0 auto; padding: 0; }
.disclaimers-page__heading {
  font-size: 42px; font-weight: 700; margin: 0 0 16px; text-align: center; color: #FF4500;
}
.disclaimers-page__container h3 {
  font-size: 1.25rem; font-weight: 700; margin: 24px 0 12px; color: #fff; text-align: center;
}
.disclaimers-page__container p {
  font-size: 0.9rem; line-height: 1.6; margin: 0 0 16px; color: #ddd;
}
.disclaimers-page__container ul { margin: 0 0 16px 20px; padding: 0; }
.disclaimers-page__container ul li { font-size: 0.9rem; line-height: 1.6; color: #ddd; margin: 0 0 8px; }
.disclaimers-page__container a { color: #FF4500; text-decoration: none; }
.disclaimers-page__container a:hover { text-decoration: underline; }
