/* =========================================================
   HOME PAGE ONLY — UI (Manychat-inspired)
   Fix: Reveal animations are progressive-enhancement
   (no JS = content visible)
   ========================================================= */

   :root {
    --home-accent: #6d28ff;
    --home-accent-2: #4f46e5;
    --home-teal: #2dd4bf;
  
    --home-bg: #ffffff;
    --home-surface: #f6f7fb;
    --home-surface-2: #f1f3f9;
  
    --home-text: #0b1220;
    --home-muted: rgba(11, 18, 32, 0.72);
  
    --home-border: rgba(15, 23, 42, 0.10);
    --home-border-2: rgba(15, 23, 42, 0.16);
  
    --home-shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.06);
    --home-shadow-sm: 0 8px 18px rgba(15, 23, 42, 0.08);
    --home-shadow-md: 0 14px 34px rgba(15, 23, 42, 0.12);
    --home-shadow-lg: 0 22px 56px rgba(15, 23, 42, 0.16);
  
    --home-r-sm: 12px;
    --home-r-md: 16px;
    --home-r-lg: 20px;
    --home-r-xl: 28px;
    --home-r-full: 9999px;
  
    --home-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --home-fast: 140ms var(--home-ease);
    --home-base: 240ms var(--home-ease);
  
    --home-header-height: 80px;
  }
  
  html, body {
    background: var(--home-bg);
    color: var(--home-text);
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* -------------------------
     Header / Menu (sticky + animated)
  -------------------------- */
  .rs-header {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--home-header-height);
    z-index: 1200;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--home-border);
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    transition: background var(--home-base), box-shadow var(--home-base), border-color var(--home-base);
  }

  /* Bootstrap navbar tweaks so mobile menu feels intentional */
  .navbar {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-toggler {
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,0.14);
    background: rgba(255,255,255,0.9);
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--home-shadow-xs);
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(109,40,255,0.25);
    outline: none;
  }

  .navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: rgba(15,23,42,0.9);
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: rgba(15,23,42,0.9);
  }

  .navbar-toggler-icon::before {
    top: -6px;
  }

  .navbar-toggler-icon::after {
    top: 6px;
  }
  
  .rs-header.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: var(--home-border-2);
    box-shadow: var(--home-shadow-sm);
  }
  
  .rs-header__inner {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 1rem;
    align-items: center;
  }
  
  .rs-brand {
    font-weight: 900;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: var(--home-text);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .rs-brand__dot {
    width: 10px;
    height: 10px;
    border-radius: var(--home-r-full);
    background: var(--home-accent);
    box-shadow: 0 0 0 4px rgba(109, 40, 255, 0.14);
  }
  
  .rs-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
  }
  
  .rs-nav__link {
    appearance: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
  
    font-weight: 850;
    font-size: 0.95rem;
    color: rgba(11, 18, 32, 0.72);
    padding: 0.55rem 0.95rem;
    border-radius: 14px;
    transition: background var(--home-base), transform var(--home-base), color var(--home-base);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
  }
  
  .rs-nav__link:hover {
    color: var(--home-text);
    background: rgba(109, 40, 255, 0.08);
    transform: translateY(-1px);
  }
  
  .rs-nav__link[aria-current="page"] {
    color: #fff;
    background: linear-gradient(135deg, var(--home-accent) 0%, var(--home-accent-2) 100%);
  }
  
  .rs-header__cta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  
  .rs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1.2rem;
    border-radius: 18px;
    font-weight: 900;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform var(--home-base), box-shadow var(--home-base), background var(--home-base),
      border-color var(--home-base);
    white-space: nowrap;
  }
  
  .rs-btn:hover { transform: translateY(-2px); }
  
  .rs-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--home-accent) 0%, var(--home-accent-2) 100%);
    box-shadow: 0 14px 30px rgba(109, 40, 255, 0.22);
  }
  
  .rs-btn--primary:hover {
    box-shadow: 0 18px 44px rgba(109, 40, 255, 0.26);
    color: #fff !important;
  }
  
  .rs-btn--outline {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(15, 23, 42, 0.16);
    color: var(--home-text);
    box-shadow: var(--home-shadow-xs);
  }
  
  .rs-btn--outline:hover {
    border-color: rgba(109, 40, 255, 0.28);
    box-shadow: var(--home-shadow-sm);
  }
  
  /* Dropdown */
  .rs-dropdown { position: relative; }
  
  .rs-dropdown__panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 280px;
    padding: 0.75rem;
    border-radius: var(--home-r-lg);
    border: 1px solid var(--home-border);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--home-shadow-md);
    transform-origin: top left;
    transform: translateY(-6px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--home-fast), transform var(--home-fast);
  }
  
  .rs-dropdown.is-open .rs-dropdown__panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  
  .rs-dropdown__item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.75rem;
    border-radius: 14px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background var(--home-fast), transform var(--home-fast), border-color var(--home-fast);
  }
  
  .rs-dropdown__item:hover {
    background: rgba(109, 40, 255, 0.08);
    transform: translateX(2px);
    border-color: rgba(109, 40, 255, 0.14);
  }
  
  .rs-dropdown__icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(109, 40, 255, 0.10);
    border: 1px solid rgba(109, 40, 255, 0.20);
    font-weight: 900;
  }
  
  .rs-dropdown__title {
    margin: 0;
    font-weight: 900;
    color: rgba(11, 18, 32, 0.92);
    font-size: 0.95rem;
  }
  
  .rs-dropdown__desc {
    margin: 0.25rem 0 0;
    color: rgba(11, 18, 32, 0.70);
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* Burger + drawer */
  .rs-burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: var(--home-shadow-xs);
    cursor: pointer;
    transition: transform var(--home-base), box-shadow var(--home-base), border-color var(--home-base);
  }
  
  .rs-burger:hover {
    transform: translateY(-1px);
    box-shadow: var(--home-shadow-sm);
    border-color: rgba(109, 40, 255, 0.18);
  }
  
  .rs-burger__lines {
    display: grid;
    gap: 6px;
    place-content: center;
  }
  
  .rs-burger__lines span {
    width: 18px;
    height: 2px;
    background: rgba(11, 18, 32, 0.80);
    border-radius: 2px;
    transition: transform var(--home-base), opacity var(--home-base);
  }
  
  .rs-burger[aria-expanded="true"] .rs-burger__lines span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .rs-burger[aria-expanded="true"] .rs-burger__lines span:nth-child(2) { opacity: 0; }
  .rs-burger[aria-expanded="true"] .rs-burger__lines span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .rs-drawer {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: grid;
    grid-template-columns: 1fr min(420px, 92vw);
    background: rgba(11, 18, 32, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  
  .rs-drawer[hidden] { display: none; }
  
  .rs-drawer__panel {
    background: rgba(255, 255, 255, 0.96);
    border-left: 1px solid rgba(15, 23, 42, 0.12);
    height: 100%;
    padding: 1rem 1rem 1.25rem;
    box-shadow: var(--home-shadow-lg);
    transform: translateX(12px);
    opacity: 0;
    transition: transform var(--home-base), opacity var(--home-base);
  }
  
  .rs-drawer.is-open .rs-drawer__panel {
    transform: translateX(0);
    opacity: 1;
  }
  
  .rs-drawer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.4rem 0.2rem 0.9rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }
  
  .rs-drawer__title {
    font-weight: 950;
    letter-spacing: -0.02em;
  }
  
  .rs-drawer__close {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(246, 247, 251, 0.8);
    cursor: pointer;
    font-weight: 900;
  }
  
  .rs-drawer__nav {
    padding: 0.9rem 0.2rem 0.4rem;
    display: grid;
    gap: 0.35rem;
  }
  
  .rs-drawer__link {
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 900;
    color: rgba(11, 18, 32, 0.84);
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255, 255, 255, 0.75);
    transition: background var(--home-fast), transform var(--home-fast), border-color var(--home-fast);
  }
  
  .rs-drawer__link:hover {
    background: rgba(109, 40, 255, 0.08);
    border-color: rgba(109, 40, 255, 0.16);
    transform: translateY(-1px);
  }
  
  .rs-drawer__cta {
    margin-top: 0.75rem;
    display: grid;
    gap: 0.6rem;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .rs-header__inner { grid-template-columns: auto 1fr auto; }
    .rs-nav, .rs-header__cta { display: none; }
    .rs-burger {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      justify-self: end;
    }
  }
  
  /* Disable body scroll when drawer open */
  body.rs-lock { overflow: hidden; }
  
  /* -------------------------
     Hero (blobs + layout)
  -------------------------- */
  .home-hero {
    padding: 7rem 0 4.5rem;
    background: #fff;
    position: relative;
    overflow: hidden;
  }
  
  .home-hero::before,
  .home-hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
    filter: blur(60px);
    opacity: 0.9;
    transform: translateZ(0);
  }
  
  .home-hero::before {
    width: 560px;
    height: 560px;
    left: -120px;
    top: -180px;
    background: radial-gradient(circle at 30% 30%, rgba(109, 40, 255, 0.36), transparent 60%),
      radial-gradient(circle at 70% 70%, rgba(79, 70, 229, 0.26), transparent 62%);
    animation: blobFloatA 12s var(--home-ease) infinite alternate;
  }
  
  .home-hero::after {
    width: 640px;
    height: 640px;
    right: -180px;
    top: -160px;
    background: radial-gradient(circle at 30% 30%, rgba(45, 212, 191, 0.22), transparent 60%),
      radial-gradient(circle at 70% 70%, rgba(109, 40, 255, 0.18), transparent 62%);
    animation: blobFloatB 14s var(--home-ease) infinite alternate;
  }
  
  @keyframes blobFloatA {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(24px, 18px, 0) scale(1.05); }
  }
  @keyframes blobFloatB {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(-22px, 20px, 0) scale(1.04); }
  }
  
  .home-hero__grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  
  @media (max-width: 992px) {
    .home-hero { padding: 6rem 0 3.5rem; }
    .home-hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  }
  
  .home-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(11, 18, 32, 0.65);
  }
  
  .home-hero__kicker::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: var(--home-r-full);
    background: var(--home-accent);
    box-shadow: 0 0 0 4px rgba(109, 40, 255, 0.14);
  }
  
  .home-hero__title {
    font-size: clamp(2.6rem, 5.4vw, 4.3rem);
    letter-spacing: -0.05em;
    line-height: 1.02;
    margin: 0.9rem 0 1.1rem;
  }
  
  .home-grad {
    background: linear-gradient(135deg, var(--home-accent) 0%, var(--home-teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .home-hero__lead {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.7;
    color: var(--home-muted);
    margin: 0;
    max-width: 60ch;
  }
  
  .home-hero__actions {
    margin-top: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
  }
  
  .home-hero__meta {
    margin-top: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.2rem;
    align-items: center;
    color: rgba(11, 18, 32, 0.66);
    font-weight: 850;
    font-size: 0.95rem;
  }
  
  .home-hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
  }
  
  /* Preview card */
  .home-preview {
    border: 1px solid var(--home-border);
    border-radius: var(--home-r-xl);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--home-shadow-md);
    overflow: hidden;
    position: relative;
  }
  
  .home-preview__top {
    padding: 1.1rem 1.1rem 0.9rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  
  .home-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.85rem;
    border-radius: var(--home-r-full);
    background: rgba(109, 40, 255, 0.10);
    border: 1px solid rgba(109, 40, 255, 0.22);
    color: rgba(11, 18, 32, 0.86);
    font-weight: 950;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  
  .home-preview__meta {
    font-weight: 900;
    color: rgba(11, 18, 32, 0.70);
    font-size: 0.9rem;
  }
  
  .home-preview__body { padding: 1.1rem; }
  
  .home-shot {
    border-radius: calc(var(--home-r-xl) - 8px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
    box-shadow: var(--home-shadow-sm);
  }
  
  .home-shot img { width: 100%; height: auto; display: block; }
  
  .home-preview__cta {
    margin-top: 0.9rem;
    display: grid;
    gap: 0.6rem;
  }
  
  /* -------------------------
     Trust strip + marquee
  -------------------------- */
  .home-trust {
    padding: 1.1rem 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.7);
  }
  
  .home-trust__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.2rem;
    align-items: center;
    justify-content: space-between;
  }
  
  .home-trust__label {
    font-weight: 950;
    color: rgba(11, 18, 32, 0.70);
  }
  
  .home-marquee {
    position: relative;
    overflow: hidden;
    max-width: 720px;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  }
  
  .home-marquee__track {
    display: inline-flex;
    gap: 0.7rem;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 18s linear infinite;
  }
  
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  
  .home-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.75rem;
    border-radius: var(--home-r-full);
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(246, 247, 251, 0.85);
    font-weight: 950;
    font-size: 0.9rem;
    color: rgba(11, 18, 32, 0.70);
  }
  
  /* -------------------------
     Sections / cards
  -------------------------- */
  .home-section { padding: 6rem 0; }
  @media (max-width: 768px) { .home-section { padding: 4.5rem 0; } }
  .home-section--soft { background: var(--home-surface); }
  
  .home-head { max-width: 860px; }
  
  .home-head__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(11, 18, 32, 0.65);
  }
  
  .home-head__kicker::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: var(--home-r-full);
    background: var(--home-accent);
    box-shadow: 0 0 0 4px rgba(109, 40, 255, 0.14);
  }
  
  .home-head__title {
    font-size: clamp(1.95rem, 3.2vw, 2.7rem);
    letter-spacing: -0.035em;
    line-height: 1.14;
    margin: 0.85rem 0 0.95rem;
  }
  
  .home-head__lead {
    font-size: clamp(1.02rem, 1.35vw, 1.18rem);
    line-height: 1.7;
    color: var(--home-muted);
    margin: 0;
  }
  
  .home-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  
  @media (max-width: 992px) {
    .home-grid-3 { grid-template-columns: 1fr; }
  }
  
  .home-card {
    border: 1px solid var(--home-border);
    border-radius: var(--home-r-xl);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--home-shadow-sm);
    transition: transform var(--home-base), box-shadow var(--home-base), border-color var(--home-base);
    overflow: hidden;
  }
  
  .home-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--home-shadow-md);
    border-color: rgba(109, 40, 255, 0.22);
  }
  
  .home-card__pad { padding: 1.45rem; }
  
  .home-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(109, 40, 255, 0.10);
    border: 1px solid rgba(109, 40, 255, 0.20);
    font-weight: 950;
    margin-bottom: 0.9rem;
  }
  
  .home-card h3 {
    margin: 0 0 0.55rem;
    font-size: 1.18rem;
    letter-spacing: -0.02em;
  }
  
  .home-card p {
    margin: 0;
    color: rgba(11, 18, 32, 0.72);
    line-height: 1.65;
    font-weight: 650;
  }
  
  /* -------------------------
     Scroll reveal (PROGRESSIVE ENHANCEMENT)
     Default: visible
     When JS runs, html gets .js and we animate.
  -------------------------- */
  .rs-reveal {
    opacity: 1;
    transform: none;
  }
  
  html.js .rs-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 700ms var(--home-ease), transform 700ms var(--home-ease);
    will-change: opacity, transform;
  }
  
  html.js .rs-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* -------------------------
     Reduced motion
  -------------------------- */
  @media (prefers-reduced-motion: reduce) {
    .home-hero::before,
    .home-hero::after { animation: none !important; }
    .home-marquee__track { animation: none !important; transform: none !important; }
  
    html.js .rs-reveal {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
  }
/* New helper: full-width buttons inside drawer & cards */
.rs-btn--block { width: 100%; justify-content: center; }

/* Make details look consistent on all pages */
details { margin-bottom: 0.9rem; }
details summary { font-weight: 650; }
/* =========================================================
   MISSING STYLES (ADD-ON)
   Fixes: footer, FAQ, CTA, container, link defaults
   Paste at END of /assets/css/home.css
   ========================================================= */

/* 1) Container used in header + sections */
.container-rs{
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Make sure sections don’t hide behind fixed header */
main{ padding-top: var(--home-header-height, 80px); }

/* Base text rhythm (keeps spacing premium) */
h1, h2, h3 { color: var(--home-text); }
p { color: var(--home-muted); }

/* Kill default blue link look inside sections/footer */
a{ color: inherit; }

/* 2) FAQ block — premium accordion (overrides default details look) */
details{
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--home-border);
  border-radius: var(--home-r-lg);
  padding: 1.1rem 1.1rem;
  box-shadow: var(--home-shadow-xs);
  transition: transform var(--home-base), box-shadow var(--home-base), border-color var(--home-base);
}

details:hover{
  transform: translateY(-2px);
  box-shadow: var(--home-shadow-sm);
  border-color: rgba(109, 40, 255, 0.18);
}

details + details{ margin-top: 0.85rem; }

details summary{
  list-style: none;
  cursor: pointer;
  font-weight: 900;
  color: rgba(11,18,32,0.92);
  padding-right: 2.5rem;
  position: relative;
}

details summary::-webkit-details-marker{ display:none; }

details summary::after{
  content:"+";
  position:absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  color: rgba(11,18,32,0.72);
  background: rgba(109,40,255,0.08);
  border: 1px solid rgba(109,40,255,0.16);
  transition: transform var(--home-base), background var(--home-base);
}

details[open] summary::after{
  content:"−";
}

details p{
  margin: 0.85rem 0 0;
  color: var(--home-muted);
  line-height: 1.7;
}

/* 3) Final CTA section — match premium style even if global cta-section differs */
.cta-section{
  padding: 5.5rem 0;
  border-top: 1px solid rgba(15,23,42,0.08);
  background: radial-gradient(circle at top left, rgba(109,40,255,0.40), transparent 55%),
              radial-gradient(circle at bottom right, rgba(45,212,191,0.32), transparent 55%),
              #0b1120;
  color: #f9fafb;
}

.cta-section h2,
.cta-section .hero-title{
  color: #f9fafb;
}

.cta-section .lead{
  color: rgba(249,250,251,0.9);
}

.cta-section .btn-outline-white{
  border-color: rgba(249,250,251,0.75);
  color: #f9fafb;
}

/* 4) Footer — fix layout + remove blue links + proper hierarchy */
.footer{
  padding: 4.5rem 0 2.5rem;
  margin-top: 0;
  border-top: 1px solid rgba(15,23,42,0.08);
  background: #fff;
}

.footer-title{
  font-weight: 950;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11,18,32,0.78);
  margin-bottom: 0.9rem;
}

.footer a{
  color: rgba(11,18,32,0.70);
  text-decoration: none;
  font-weight: 800;
  transition: color var(--home-base), transform var(--home-base);
  display: inline-flex;
  padding: 0.25rem 0;
}

.footer a:hover{
  color: rgba(11,18,32,0.95);
  transform: translateX(2px);
}

.footer-brand{
  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(11,18,32,0.92);
  margin-bottom: 0.35rem;
}

.footer .small-muted{
  color: rgba(11,18,32,0.68);
}

/* 5) Small helper so the bottom copyright line looks clean */
.footer hr{
  border-color: rgba(15,23,42,0.10);
  opacity: 1;
}
/* ===== Last 4 sections polish (Work/Testimonial/FAQ/CTA/Footer) ===== */

.rs-btn--block { width: 100%; justify-content: center; }

/* Work case metrics */
.home-case__top{
  display:flex; align-items:center; justify-content:space-between; gap:.75rem;
  margin-bottom: .75rem;
}
.home-case__title{ margin: .35rem 0 .35rem; font-size: 1.15rem; letter-spacing:-0.02em; }
.home-case__desc{ margin: 0; color: var(--home-muted); font-weight: 650; line-height: 1.65; }

.home-metrics{
  margin-top: 1rem;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
}
.home-metric{
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 16px;
  padding: .75rem;
  background: rgba(246,247,251,0.75);
}
.home-metric__num{ font-weight: 950; font-size: 1.1rem; color: rgba(11,18,32,0.92); line-height: 1; }
.home-metric__label{ margin-top: .2rem; font-weight: 800; font-size: .82rem; color: rgba(11,18,32,0.64); }

.home-cta-row{
  display:flex; gap:.75rem; justify-content:center; flex-wrap:wrap;
}

/* Testimonials */
.home-stars{
  letter-spacing: .12em;
  font-weight: 900;
  color: rgba(109,40,255,0.9);
  margin-bottom: .75rem;
}
.home-quote__text{ margin: 0; color: rgba(11,18,32,0.78); font-weight: 700; line-height: 1.7; }
.home-quote__person{ display:flex; align-items:center; gap:.75rem; margin-top: 1rem; }
.home-avatar{
  width: 42px; height: 42px; border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(109,40,255,0.10);
  border: 1px solid rgba(109,40,255,0.18);
  font-weight: 950;
}
.home-quote__name{ font-weight: 950; color: rgba(11,18,32,0.92); }
.home-quote__meta{ font-weight: 800; color: rgba(11,18,32,0.62); font-size: .9rem; }

.home-proofbar{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.6rem;
}
.home-proofbar__item{
  padding:.5rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(246,247,251,0.85);
  font-weight: 900;
  color: rgba(11,18,32,0.72);
  font-size: .92rem;
}

/* Final CTA card */
.home-final{
  border-radius: 28px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(15,23,42,0.10);
  background: linear-gradient(135deg, rgba(109,40,255,0.10), rgba(45,212,191,0.08), rgba(255,255,255,1));
  box-shadow: 0 22px 56px rgba(15,23,42,0.10);
  overflow:hidden;
}
.home-final__title{
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  letter-spacing: -0.04em;
  margin: .65rem 0 .6rem;
}
.home-final__lead{ margin: 0; color: rgba(11,18,32,0.72); font-weight: 700; line-height: 1.7; max-width: 70ch; }

.home-final__bullets{
  margin-top: 1.1rem;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem .9rem;
}
.home-bullet{
  padding: .6rem .75rem;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.72);
  font-weight: 900;
  color: rgba(11,18,32,0.74);
}
.home-final__cta{ margin-top: 1.2rem; display:flex; gap:.75rem; flex-wrap:wrap; }
.home-final__note{ margin-top: .85rem; font-weight: 800; color: rgba(11,18,32,0.60); }

@media (max-width: 768px){
  .home-metrics{ grid-template-columns: 1fr; }
  .home-final__bullets{ grid-template-columns: 1fr; }
}

/* Footer */
.home-footer{
  background: #fff;
  border-top: 1px solid rgba(15,23,42,0.08);
  padding: 3.25rem 0 2rem;
}
.home-footer__grid{
  display:grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 1.25rem;
  align-items:start;
}
@media (max-width: 992px){
  .home-footer__grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px){
  .home-footer__grid{ grid-template-columns: 1fr; }
}
.home-footer__brand{ font-weight: 950; letter-spacing:-0.02em; color: rgba(11,18,32,0.92); }
.home-footer__desc{ margin:.5rem 0 0; color: rgba(11,18,32,0.66); font-weight: 650; }
.home-footer__pills{ margin-top: .85rem; display:flex; gap:.5rem; flex-wrap:wrap; }

.home-footer__title{
  font-weight: 950;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(11,18,32,0.72);
  margin-bottom: .75rem;
}
.home-footer__link{
  display:block;
  padding: .35rem 0;
  text-decoration: none;
  font-weight: 900;
  color: rgba(11,18,32,0.70);
  transition: transform var(--home-base), color var(--home-base);
}
.home-footer__link:hover{
  color: rgba(11,18,32,0.95);
  transform: translateX(2px);
}
.home-footer__bottom{
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15,23,42,0.08);
  display:flex;
  gap:.75rem;
  flex-wrap:wrap;
  justify-content:space-between;
  color: rgba(11,18,32,0.62);
  font-weight: 800;
}

/* Ensure primary CTA text always white (fixes your button bug) */
.rs-btn--primary,
.btn-accent,
.btn-primary { color:#fff !important; }

/* Override Bootstrap buttons to match brand */
.btn-primary,
.btn-accent{
  background: linear-gradient(135deg, var(--home-accent) 0%, var(--home-accent-2) 100%);
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(109, 40, 255, 0.22);
}

.btn-primary:hover,
.btn-accent:hover{
  background: linear-gradient(135deg, var(--home-accent-2) 0%, var(--home-accent) 100%);
  box-shadow: 0 18px 44px rgba(109, 40, 255, 0.26);
}

.btn-outline-primary{
  border-color: rgba(109,40,255,0.7);
  color: rgba(55,48,163,1);
}

.btn-outline-primary:hover{
  background: linear-gradient(135deg, var(--home-accent) 0%, var(--home-accent-2) 100%);
  color:#fff;
  border-color: transparent;
}

/* =========================================================
   INTERNAL PAGES — Modern layout (shared)
   Brings service/contact/case-study pages in line with home
   ========================================================= */

/* Generic section spacing + soft background */
.section {
  padding: 4.5rem 0;
}
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
}

.section--soft {
  background: var(--home-surface);
}

/* Hero sections on internal pages */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.7;
  transform: translateZ(0);
}

.hero-section::before {
  width: 420px;
  height: 420px;
  left: -140px;
  top: -160px;
  background: radial-gradient(circle at 30% 30%, rgba(109, 40, 255, 0.30), transparent 60%);
}

.hero-section::after {
  width: 520px;
  height: 520px;
  right: -180px;
  top: -120px;
  background: radial-gradient(circle at 70% 70%, rgba(45, 212, 191, 0.20), transparent 62%);
}

.hero-section > .container,
.hero-section > .container-rs {
  position: relative;
  z-index: 1;
}

/* Outline buttons in light hero sections should stay visible */
.hero-section .btn-outline-white{
  border-color: rgba(15,23,42,0.18);
  color: var(--home-text);
}

/* Kicker label (matches home page) */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(11, 18, 32, 0.65);
}

.kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: var(--home-r-full);
  background: var(--home-accent);
  box-shadow: 0 0 0 4px rgba(109, 40, 255, 0.14);
}

/* Hero titles on internal pages */
.hero-title {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-top: 0.9rem;
  margin-bottom: 1rem;
}

/* Lead / muted copy */
.lead {
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.7;
  color: var(--home-muted);
}

.small-muted {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(11, 18, 32, 0.68);
}

/* Lightweight badge chip */
.badge-lite {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(246, 247, 251, 0.85);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 18, 32, 0.70);
}

/* Modern cards used across internal pages */
.card-lite {
  border-radius: var(--home-r-xl);
  border: 1px solid var(--home-border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--home-shadow-xs);
  transition: transform var(--home-base), box-shadow var(--home-base), border-color var(--home-base);
}

.card-lite:hover {
  transform: translateY(-4px);
  box-shadow: var(--home-shadow-md);
  border-color: rgba(109, 40, 255, 0.22);
}

/* Image frames */
.img-frame {
  border-radius: var(--home-r-lg);
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: var(--home-shadow-sm);
  overflow: hidden;
  background: #fff;
}

.img-frame img,
.stock-image {
  display: block;
  width: 100%;
  height: auto;
}

/* Checkmark lists */
.list-check {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.list-check li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.55rem;
  font-weight: 700;
  color: var(--home-muted);
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--home-accent), var(--home-accent-2));
  box-shadow: 0 0 0 3px rgba(109, 40, 255, 0.16);
}

/* Trust badges (Angular/internal pages) */
.trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(246, 247, 251, 0.9);
  font-weight: 900;
  font-size: 0.86rem;
  color: rgba(11, 18, 32, 0.70);
}

/* Maintenance page spacing helper */
.section-padding {
  padding: 4.5rem 0;
}
@media (max-width: 768px) {
  .section-padding { padding: 3.5rem 0; }
}

.mp-hero {
  background: radial-gradient(circle at top left, rgba(109, 40, 255, 0.16), transparent 55%),
              radial-gradient(circle at bottom right, rgba(45, 212, 191, 0.16), transparent 55%),
              #ffffff;
}

/* Offcanvas mobile menu branding */
.offcanvas{
  z-index: 1400;
}

.offcanvas.offcanvas-end{
  border-left: 1px solid rgba(15,23,42,0.12);
}

.offcanvas-header{
  border-bottom: 1px solid rgba(15,23,42,0.08);
}

.offcanvas-title{
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* =========================================================
   Case studies page
   ========================================================= */

.cs-hero-meta{
  margin-top: 1.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.cs-hero-kpi{
  padding: 0.75rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(246,247,251,0.9);
  min-width: 210px;
  text-align: left;
  box-shadow: var(--home-shadow-xs);
}

.cs-hero-kpi__value{
  font-weight: 900;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  color: rgba(11,18,32,0.95);
}

.cs-hero-kpi__label{
  margin-top: 0.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(11,18,32,0.62);
}

.cs-filter-chips{
  margin-top: 1.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.cs-filter-chip{
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.6);
  padding: 0.4rem 0.95rem;
  background: rgba(255,255,255,0.9);
  font-size: 0.86rem;
  font-weight: 800;
  color: rgba(15,23,42,0.76);
  cursor: default;
}

.cs-filter-chip.is-active{
  border-color: rgba(109,40,255,0.85);
  background: rgba(109,40,255,0.10);
  color: rgba(67,56,202,1);
  box-shadow: 0 0 0 1px rgba(109,40,255,0.08);
}

.cs-section .card-lite{
  border-radius: 22px;
}

.cs-section .card-lite .badge-lite{
  background: rgba(109,40,255,0.08);
  border-color: rgba(109,40,255,0.20);
}
