/* ==========================================================
   DotStarkCom AI Pages — shared base styles
   Page-specific styles are added per-page via @section Styles
   ========================================================== */

/* =========================================================
   GLOBAL RESET & BASE STYLES
   Shared across Instacall, Aurexa and RAG365
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}


/* =========================================================
   SHARED LAYOUT HELPERS
========================================================= */



.section {
    padding: 6rem 0;
}


/* =========================================================
   SHARED TYPOGRAPHY HELPERS
========================================================= */

.eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.lead {
    margin-top: 1.25rem;
}


/* =========================================================
   SHARED GRID BASE
========================================================= */

.grid {
    display: grid;
}


/* =========================================================
   SHARED ACCORDION / FAQ BEHAVIOR
   Visual styling will remain page-specific
========================================================= */

.faq-item.open .faq-a {
    display: block;
}

.faq-item.open .chev {
    transform: rotate(180deg);
}


/* =========================================================
   SHARED RESPONSIVE RULES
========================================================= */

@media (min-width: 1024px) {
    .section {
        padding: 6rem 0;
    }
}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

.floating {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 40;
    opacity: 0;
    background-color: var(--gold);
    padding:0.75rem ;
    border-radius: 999px;
    color: #ffff;
    font-weight: 600;
    transform: translateY(24px);
    pointer-events: none;
    transition: all .3s ease;
}
.floating.show {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

    /* =========================================================
   DEMO -video-SECTION
   ========================================================= */

/* ---------- Section / Container ---------- */

section.pad {
  padding-block: 5rem;
  scroll-margin-top: 6rem;
}

@media (min-width: 640px) {
  section.pad {
    padding-block: 7rem;
  }
}

.wrap {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
      margin: 0 auto;
  padding-inline: 1.25rem;
}

@media (min-width: 640px) {
  .wrap {
    padding-inline: 2rem;
  }
}


/* ---------- Demo Shell ---------- */

.demo-shell {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--gradient-warm);
}

@media (min-width: 640px) {
  .demo-shell {
    padding: 3rem;
  }
}


/* ---------- Demo Grid ---------- */

.demo-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}


@media (min-width: 1024px) {
  .demo-grid {
    grid-template-columns: 1.05fr 1fr;

  }
}

.demo-grid h2 {
  margin-top: 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--foreground);
}

.demo-grid > div > p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}


/* ---------- Kicker ---------- */

.kicker {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
}


/* ---------- Form Panel ---------- */

.panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 640px) {
  .panel {
    padding: 2rem;
  }
}


/* ---------- Form Layout ---------- */

.stack {
  display: grid;
  gap: 1.25rem;
}


/* ---------- Form Label ---------- */

.lbl {
  margin-bottom: 0.375rem;
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}


/* ---------- Input ---------- */

.fld {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 0.125rem);
  background: var(--background);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: var(--foreground);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.fld::placeholder {
  color: var(--muted-foreground);
  opacity: 0.7;
}

.fld:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(129, 159, 167, 0.18);
}


/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: calc(var(--radius) - 0.375rem);
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-sans);
  transition: all 0.3s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.btn-accent {
  background: var(--espresso);
  color: var(--espresso-fg);
  box-shadow: var(--shadow-lift);
}

.btn-accent:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

.btn-block {
  width: 100%;
}


/* ---------- Fine Print ---------- */

.fineprint {
  font-size: 12px;
  color: var(--muted-foreground);
}

.center {
  text-align: center;
}


/* ---------- Hidden State ---------- */

.demo-hidden {
  display: none !important;
}


/* =========================================================
   VIDEO
   ========================================================= */

.video-unlocked {
  position: absolute;
  inset: 0;
  background: #000;
}

.video-unlocked.hidden {
  display: none;
}

.video-unlocked-text {
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--foreground);
  transition: opacity 0.5s ease;
}


/* ---------- Video Frame ---------- */

.video-frame {
  position: relative;
  margin-top: 1.5rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #000;
}

.demo-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ---------- Play Overlay ---------- */

.demo-play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(13, 13, 13, 0.35);
  border: none;
  cursor: pointer;
}

.demo-play-overlay .play {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: calc(var(--radius) - 0.375rem);
  background: var(--espresso);
  color: var(--espresso-fg);
  font-size: 1.25rem;
}


/* ---------- Close Button ---------- */

.video-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: calc(var(--radius) - 0.375rem);
  background: rgba(13, 13, 13, 0.6);
  color: var(--espresso-fg);
  border: none;
  cursor: pointer;
}

.video-close:hover {
  background: rgba(13, 13, 13, 0.8);
}


/* ---------- YouTube Link ---------- */

.youtube-link {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 20;
  padding: 0.4rem 0.85rem;
  border-radius: calc(var(--radius) - 0.375rem);
  background: rgba(13, 13, 13, 0.7);
  color: var(--espresso-fg);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
}

.youtube-link:hover {
  background: rgba(13, 13, 13, 0.85);
}

/* contact form for the page - */
.contact-form-section{
      font-family:var(--font-sans);
      color:var(--foreground);
      max-width:1180px;
      margin:0 auto;
      display:flex;
      justify-content: center;
      gap:64px;
      align-items:center;
    }

    .contact-form-section *{
      box-sizing:border-box;
    }



    /* Right column - form card */
.contact-form-section .cfs-card{
      background:var(--card);
      border:1px solid var(--border);
      border-radius:var(--radius);
      box-shadow:var(--shadow-lift);
      padding:40px;
    }

    .contact-form-section .cfs-card h2{
      font-family:var(--font-display);
      font-weight:700;
      font-size:1.5rem;
      margin:0 0 6px;
      color:var(--foreground);
    }

    .contact-form-section .cfs-subtext{
      font-size:.875rem;
      color:var(--muted-foreground);
      margin:0 0 28px;
    }

    .contact-form-section .cfs-subtext .cfs-req{
      color:#c25a3f;
    }

    .contact-form-section .cfs-form{
      display:flex;
      flex-direction:column;
      gap:20px;
    }

    .contact-form-section .cfs-row{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:20px;
    }

    .contact-form-section .cfs-field{
      display:flex;
      flex-direction:column;
      gap:8px;
    }

    .contact-form-section .cfs-field label{
      font-size:.72rem;
      font-weight:700;
      letter-spacing:.07em;
      text-transform:uppercase;
      color:var(--foreground);
    }

    .contact-form-section .cfs-field label .cfs-req{
      color:#c25a3f;
      margin-left:2px;
    }

    .contact-form-section .cfs-field input,
    .contact-form-section .cfs-field textarea{
      font-family:var(--font-sans);
      font-size:.95rem;
      color:var(--foreground);
      background:#f8fbff;
      border:1px solid var(--border);
      border-radius:calc(var(--radius) - .35rem);
      padding:12px 14px;
      outline:none;
      transition:border-color .15s ease, box-shadow .15s ease, background .15s ease;
      width:100%;
    }

    .contact-form-section .cfs-field input::placeholder,
    .contact-form-section .cfs-field textarea::placeholder{
      color:#9aa5ab;
    }

    .contact-form-section .cfs-field textarea{
      resize:vertical;
      min-height:110px;
      font-family:var(--font-sans);
    }

    .contact-form-section .cfs-field input:focus,
    .contact-form-section .cfs-field textarea:focus{
      background:var(--card);
      border-color:var(--gold);
      box-shadow:0 0 0 3px rgba(129,159,167,.2);
    }

    .contact-form-section .cfs-field.cfs-invalid input,
    .contact-form-section .cfs-field.cfs-invalid textarea{
      border-color:#c25a3f;
      background:#fbf2ef;
    }

    .contact-form-section .cfs-field.cfs-invalid input:focus,
    .contact-form-section .cfs-field.cfs-invalid textarea:focus{
      box-shadow:0 0 0 3px rgba(194,90,63,.15);
    }

    .contact-form-section .cfs-error-msg{
      font-size:.78rem;
      color:#c25a3f;
      min-height:0;
      display:none;
    }

    .contact-form-section .cfs-field.cfs-invalid .cfs-error-msg{
      display:block;
    }

    .contact-form-section .cfs-submit-btn{
      margin-top:4px;
      background:var(--gold);
      color:var(--espresso-fg);
      border:none;
      border-radius:999px;
      padding:15px 24px;
      font-family:var(--font-sans);
      font-size:1rem;
      font-weight:700;
      letter-spacing:.01em;
      cursor:pointer;
      box-shadow:var(--shadow-soft);
      transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
    }

    .contact-form-section .cfs-submit-btn:hover{
      background:#000;
      box-shadow:var(--shadow-lift);
      transform:translateY(-1px);
    }

    .contact-form-section .cfs-submit-btn:active{
      transform:translateY(0);
    }

    .contact-form-section .cfs-submit-btn:disabled{
      opacity:.6;
      cursor:not-allowed;
      transform:none;
    }

    .contact-form-section .cfs-form-status{
      font-size:.875rem;
      font-weight:600;
      text-align:center;
      padding:12px 14px;
      border-radius:calc(var(--radius) - .35rem);
      display:none;
    }

    .contact-form-section .cfs-form-status.cfs-success{
      display:block;
      background:#eef4f1;
      color:#3f6a52;
      border:1px solid #cfe3d8;
    }

    @media (max-width:860px){
      .contact-form-section{
        grid-template-columns:1fr;
        gap:40px;
        padding: 2rem;
      }
      .contact-form-section .cfs-intro h1{
        font-size:2rem;
      }
      .contact-form-section .cfs-card{
        padding:28px;
      }
      .contact-form-section .cfs-row{
        grid-template-columns:1fr;
        gap:20px;
      }
    }

/* =========================================================
   INSTACALL PAGE STYLES
========================================================= */


/* =========================
   PAGE BASE
========================= */

.instacall-page {
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
}

.instacall-page h1,
.instacall-page h2,
.instacall-page h3,
.instacall-page h4 {
    font-family: var(--font-display);
}

.instacall-page em {
    font-style: italic;
    color: var(--clay);
}


/* =========================
   PAGE LAYOUT HELPERS
========================= */

.instacall-page .wrap-sm {
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.instacall-page .surface-warm {
    background-image: var(--gradient-warm);
}

.instacall-page .bordered {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.instacall-page .dark-band {
    background: var(--espresso);
    color: var(--espresso-fg);
}

.instacall-page .dark-band h2,
.instacall-page .dark-band h3 {
    color: var(--espresso-fg);
}

.instacall-page .eyebrow {
    color: var(--clay);
    display: block;
}

.instacall-page .eyebrow.on-dark {
    color: rgba(129, 159, 167, 0.9);
}

.instacall-page .h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-top: 1rem;
}

.instacall-page .lead {
    font-size: 1.05rem;
    color: var(--muted-foreground);
}

.instacall-page .dark-band .lead {
    color: rgba(243, 245, 249, 0.7);
}

.instacall-page .grid {
    gap: 1.25rem;
}

.instacall-page .muted {
    color: var(--muted-foreground);
}

.instacall-page .gold {
    color: var(--gold);
}

@media (min-width: 640px) {
    .instacall-page .sm2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .instacall-page .lg2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .instacall-page .lg3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .instacall-page .lg4 {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* =========================
   BUTTONS
========================= */

.instacall-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.2s;
}

.instacall-page .btn-hero {
    background: var(--gold);
    color: var(--espresso);
}

.instacall-page .btn-hero:hover {
    filter: brightness(1.08);
}

.instacall-page .btn-solid {
    background: var(--espresso);
    color: var(--espresso-fg);
}

.instacall-page .btn-solid:hover {
    opacity: 0.9;
}

.instacall-page .btn-outline {
    border-color: var(--border);
    background: var(--card);
    color: var(--foreground);
}

.instacall-page .btn-outline:hover {
    background: var(--secondary);
}

.instacall-page .btn-outline-dark {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--espresso-fg);
}

.instacall-page .btn-outline-dark:hover {
    background: rgba(255, 255, 255, 0.1);
}

.instacall-page .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.instacall-page .btn-block {
    width: 100%;
}


/* =========================
   CARDS
========================= */

.instacall-page .card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: var(--shadow-soft);
}

.instacall-page .card-hover {
    transition: box-shadow 0.25s;
}

.instacall-page .card-hover:hover {
    box-shadow: var(--shadow-lift);
}

.instacall-page .pill {
    display: inline-block;
    border: 1px solid var(--border);
    background: var(--secondary);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--clay);
}





/* =========================
   HERO
========================= */

.instacall-page .hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    height: 100vh;
    background: var(--espresso);
    text-align: center;
}

.instacall-page .hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
     transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

.instacall-page .hero .veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 13, 13, 0.85),
        rgba(13, 13, 13, 0.6),
        #0d0d0d
    );
}

.instacall-page .hero-inner {
    position: relative;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 64rem;
    margin: 0 auto;
    padding: 7rem 1.25rem 5rem;
    z-index: 4;
}

.instacall-page .hero h1 {
    margin-top: 1.5rem;
    font-size: clamp(2.25rem, 6vw, 4.25rem);
    line-height: 1.05;
    color: var(--espresso-fg);
}

.instacall-page .hero h1 em {
    font-style: normal;
    color: var(--gold);
}

.instacall-page .hero p {
    margin-top: 1.5rem;
    max-width: 42rem;
    color: rgba(243, 245, 249, 0.7);
    font-size: 1.05rem;
}

.instacall-page .hero-actions {
    margin-top: 2.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.instacall-page .proof {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 2rem;
    justify-content: center;
    font-size: 0.78rem;
    color: rgba(243, 245, 249, 0.55);
}

.instacall-page .proof li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.instacall-page .proof i {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 999px;
    background: var(--gold);
}


/* =========================
   LIVE CALL CARD
========================= */

.instacall-page .callwrap {
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 1.5rem;
}

.instacall-page .cup {
    margin: 0 auto 1.5rem;
    width: 4rem;
    height: 3rem;
    border: 2px solid rgba(91, 110, 116, 0.5);
    border-top: 0;
    border-radius: 0 0 2rem 2rem;
}

.instacall-page .callcard {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-lift);
}

.instacall-page .callhead {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.instacall-page .badge-dark {
    background: var(--espresso);
    color: var(--espresso-fg);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.15em;
}

@media (max-width:431px){
    .instacall-page .badge-dark{
        width: 7.5rem;
    }
}

.instacall-page .callrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border: 1px solid var(--border);
    background: var(--background);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    margin-top: 0.6rem;
}

.instacall-page .callrow b {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
}

.instacall-page .callrow small {
    display: block;
    font-size: 0.7rem;
    color: var(--muted-foreground);
}

.instacall-page .st {
    border-radius: 999px;
    padding: 0.25rem 0.7rem;
    font-size: 0.62rem;
    font-weight: 600;
    white-space: nowrap;
}

.instacall-page .st.live {
    background: var(--secondary);
    color: var(--clay);
}

.instacall-page .st.done {
    background: var(--espresso);
    color: var(--espresso-fg);
}

.instacall-page .st.fail {
    background: var(--muted);
    color: var(--muted-foreground);
}

.instacall-page .callfoot {
    margin-top: 1.5rem;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}


/* =========================
   VOICE DEMO
========================= */

.instacall-page .tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.instacall-page .tab {
    border: 0;
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(243, 245, 249, 0.7);
    font-family: var(--font-sans);
    transition: 0.2s;
}

.instacall-page .tab:hover {
    background: rgba(255, 255, 255, 0.15);
}

.instacall-page .tab.active {
    background: var(--gold);
    color: var(--espresso);
}

.instacall-page .demo-panel {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 1.5rem;
}

.instacall-page .player {
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
}

.instacall-page .play {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    border-radius: 999px;
    background: var(--gold);
    color: var(--espresso);
    flex-shrink: 0;
}

.instacall-page .eq {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 2rem;
    flex: 1;
}

.instacall-page .eq span {
    flex: 1;
    border-radius: 999px;
    background: rgba(129, 159, 167, 0.6);
    transform-origin: bottom;
}

.instacall-page .eq.playing span {
    animation: instacall-bar 1.1s ease-in-out infinite;
}

@keyframes instacall-bar {
    0%,
    100% {
        transform: scaleY(0.5);
    }

    50% {
        transform: scaleY(1);
    }
}

.instacall-page .script {
    margin-top: 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    line-height: 2;
    color: rgba(243, 245, 249, 0.85);
}

.instacall-page .demo-meta {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(243, 245, 249, 0.6);
}

.instacall-page .check-list {
    margin-top: 2rem;
    display: grid;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(243, 245, 249, 0.7);
}

.instacall-page .check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.instacall-page .check-list i {
    display: grid;
    place-items: center;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    background: rgba(129, 159, 167, 0.2);
    color: var(--gold);
    font-size: 0.62rem;
    font-style: normal;
}


/* =========================
   PANTRY / PROVIDERS
========================= */

.instacall-page .pantry {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .instacall-page .pantry {
        grid-template-columns: 220px 1fr;
    }
}

.instacall-page .cats {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 0.5rem;
    box-shadow: var(--shadow-soft);
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 1024px) {
    .instacall-page .cats {
        flex-direction: column;
        overflow: visible;
        height: fit-content;
    }
}

.instacall-page .cat {
    white-space: nowrap;
    border: 0;
    border-radius: 999px;
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.875rem;
    background: transparent;
    color: var(--muted-foreground);
    cursor: pointer;
    font-family: var(--font-sans);
}

.instacall-page .cat:hover {
    background: var(--secondary);
}

.instacall-page .cat.active {
    background: var(--espresso);
    color: var(--espresso-fg);
}

.instacall-page .provider-grid {
    display: grid;
    gap: 1.25rem;
    /* grid-template-columns: repeat(3, 1fr); */
}

@media (min-width: 640px) {
    .instacall-page .provider-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .instacall-page .provider-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.instacall-page .avatar {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: var(--secondary);
    color: var(--clay);
    font-size: 0.7rem;
    font-family: var(--font-display);
}


/* =========================
   STEPS / STATUS
========================= */

.instacall-page .stepnum {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: var(--secondary);
    color: var(--clay);
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.instacall-page .statusbox {
    margin-top: 3.5rem;
    border: 1px solid var(--border);
    background: var(--card);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.instacall-page .statuslist {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .instacall-page .statuslist {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .instacall-page .statuslist {
        grid-template-columns: repeat(3, 1fr);
    }
}

.instacall-page .statuslist li {
    border: 1px solid var(--border);
    background: var(--background);
    border-radius: 1rem;
    padding: 1.25rem;
}


/* =========================
   PRICING
========================= */

/* .instacall-page .plan {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    background: var(--card);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.instacall-page .plan.featured {
    background: var(--espresso);
    color: var(--espresso-fg);
    border-color: var(--espresso);
    box-shadow: var(--shadow-lift);
}

.instacall-page .plan.featured h3 {
    color: var(--espresso-fg);
}

.instacall-page .plan .price {
    font-family: var(--font-display);
    font-size: 2.25rem;
    margin-top: 1.75rem;
}

.instacall-page .plan ul {
    margin-top: 2rem;
    display: grid;
    gap: 0.75rem;
    font-size: 0.9rem;
    flex: 1;
}

.instacall-page .plan li {
    display: flex;
    gap: 0.75rem;
}

.instacall-page .tag-featured {
    width: fit-content;
    margin-bottom: 1rem;
    background: var(--gold);
    color: var(--espresso);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.15em;
} */

.instacall-page .instacall-cta {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 5rem 1.5rem;
  font-family: var(--font-sans);
}
 
.instacall-page .instacall-cta__container {
  background: var(--muted);
  max-width: 72rem;
  margin: 0 auto;
  border-radius: 20px;
  text-align: center;
  padding:50px 30px;
}
 
.instacall-page .instacall-cta__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: .75rem;
}
 
.instacall-page .instacall-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
}
 
.instacall-page .instacall-cta__heading em {
  font-style: normal;
  color: var(--clay);
}
 
.instacall-page .instacall-cta__lead {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}
 
.instacall-page .instacall-cta__points {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: .75rem;
  column-gap: 2rem;
}
 
.instacall-page .instacall-cta__points li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9375rem;
  color: var(--foreground);
  white-space: nowrap;
}
 
.instacall-page .instacall-cta__tick {
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 600;
}
 
.instacall-page .instacall-cta__actions {
  margin-top: 2.5rem;
}
 
.instacall-page .instacall-cta__button {
  display: inline-block;
  background: var(--espresso);
  color: var(--espresso-fg);
  padding: .875rem 2.25rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .9375rem;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: box-shadow .2s ease, transform .2s ease;
}
 
.instacall-page .instacall-cta__button:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-1px);
}
 
.instacall-page .instacall-cta__note {
  margin-top: .875rem;
  font-size: .8125rem;
  color: var(--muted-foreground);
}
 
@media (max-width: 640px) {
  .instacall-page .instacall-cta {
    padding: 3.5rem 1.25rem;
  }
  .instacall-page .instacall-cta__points {
    flex-direction: column;
    row-gap: .65rem;
  }
}



/* =========================
   FAQ
========================= */

.instacall-page .faq-item {
    border-bottom: 1px solid var(--border);
}

.instacall-page .faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    background: none;
    border: 0;
    padding: 1.25rem 0;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-sans);
    color: var(--foreground);
    cursor: pointer;
}

.instacall-page .faq-q .chev {
    transition: transform 0.25s;
    color: var(--clay);
}

.instacall-page .faq-a {
    display: none;
    padding-bottom: 1.25rem;
    font-size: 0.9rem;
    color: var(--muted-foreground);
}


/* =========================
   FINAL CTA / FOOTER
========================= */

.instacall-page .final {
    background: var(--espresso);
    color: var(--espresso-fg);
    text-align: center;
}

.instacall-page .final h2 {
    color: var(--espresso-fg);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-top: 1.25rem;
}

.instacall-page .final p {
    margin-top: 1.5rem;
    color: rgba(243, 245, 249, 0.7);
}

.instacall-page footer {
    background: var(--espresso);
    color: rgba(243, 245, 249, 0.6);
}

.instacall-page .foot-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 2rem;
    font-size: 0.75rem;
    text-align: center;
}

@media (min-width: 640px) {
    .instacall-page .foot-inner {
        flex-direction: row;
        text-align: left;
    }
}


/* =========================================================
   AUREXA PAGE STYLES
   Wrapper: <body class="aurexa-page">
========================================================= */


/* =========================
   PAGE BASE / UNIQUE HELPERS
========================= */

.aurexa-page {
    background: var(--background);
    color: var(--foreground);
    font-family: "Open Sans", system-ui, sans-serif;
}

.aurexa-page h1,
.aurexa-page h2,
.aurexa-page h3,
.aurexa-page h4 {
    font-family: "Montserrat", system-ui, sans-serif;
}

.aurexa-page em {
    font-style: normal;
    color: var(--clay);
}

.aurexa-page .h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.aurexa-page .surface-warm {
    background: linear-gradient(135deg, #f7f9fc 0%, #e7ebf2 100%);
}

.aurexa-page .surface-amber {
    background: linear-gradient(
        135deg,
        var(--gold-soft) 0%,
        #f5a545 100%
    );
}

.aurexa-page .bordered-y {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}


/* =========================
   BUTTONS
========================= */

.aurexa-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.85rem 1.5rem;
    font-size: 0.92rem;
    font-weight: 600;
    width:12rem;
    height: 3rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    font-family: "Open Sans", sans-serif;
}


.aurexa-page .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
}

.aurexa-page .btn-primary {
    background: var(--espresso);
    color: var(--espresso-fg);
}

.aurexa-page .btn-primary:hover {
    background: var(--slate);
}

.aurexa-page .btn-hero {
    background: var(--gold);
    color: var(--ink);
}

.aurexa-page .btn-hero:hover {
    background: var(--gold-soft);
}

.aurexa-page .btn-outline {
    border-color: var(--btn-border);
    background: transparent;
    color: var(--foreground);
}

.aurexa-page .btn-outline:hover {
    border-color: var(--espresso);
}

.aurexa-page .btn-outline-dark {
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--espresso-fg);
    background: transparent;
}

.aurexa-page .btn-outline-dark:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.aurexa-page .btn-full {
    width: 100%;
}



/* =========================
   HERO
========================= */

.aurexa-page .hero {
    position: relative;
    overflow: hidden;
    background: var(--espresso);
    isolation: isolate;
}

.aurexa-page .hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.aurexa-page .hero-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(35, 47, 62, 0.85),
        rgba(35, 47, 62, 0.7) 50%,
        var(--espresso)
    );
}

.aurexa-page .hero-inner {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 7rem 1.25rem 4rem;
}

.aurexa-page .hero h1 {
    margin-top: 1.5rem;
    font-size: clamp(2.25rem, 6vw, 4.25rem);
    color: var(--espresso-fg);
}

.aurexa-page .hero h1 em {
    color: var(--gold);
}

.aurexa-page .hero p.sub {
    margin-top: 1.5rem;
    max-width: 42rem;
    color: rgba(243, 245, 249, 0.72);
    font-size: 1.06rem;
}

.aurexa-page .hero-eyebrow {
    color: rgba(254, 189, 105, 0.8);
}

.aurexa-page .hero-cta {
    margin-top: 2.25rem;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 0.75rem;
    justify-content: center;
}

.aurexa-page .hero-ticks {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    justify-content: center;
    font-size: 0.78rem;
    color: rgba(243, 245, 249, 0.5);
}

.aurexa-page .marquee {
    margin-top: 4rem;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        #000 12%,
        #000 88%,
        transparent
    );
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 12%,
        #000 88%,
        transparent
    );
}

.aurexa-page .marquee-track {
    display: flex;
    width: max-content;
    gap: 3rem;
    will-change: transform;
    animation: aurexa-marquee 34s linear infinite;
}

.aurexa-page .marquee-track span {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(243, 245, 249, 0.4);
    white-space: nowrap;
}


@keyframes aurexa-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Translate by exactly the width of ONE set (10 spans + 10 gaps) */
    /* If you use 50%, you MUST ensure the total width is exactly 2x one set */
    transform: translateX(calc(-50% - 24px)); /* Adjusting for the missing half-gap at the seam */
  }
}


/* =========================
   GRIDS
========================= */

.aurexa-page .grid {
    display: grid;
    gap: 1.25rem;
}

.aurexa-page .g2,
.aurexa-page .g3,
.aurexa-page .g4 {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .aurexa-page .g2,
    .aurexa-page .g4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .aurexa-page .g3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .aurexa-page .g4 {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* =========================
   GENERIC CARDS
========================= */

.aurexa-page .card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.1rem;
    padding: 1.75rem;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.2s;
}

.aurexa-page .card:hover {
    box-shadow: var(--shadow-lift);
}

.aurexa-page .card h3 {
    font-size: 1.2rem;
    margin-top: 0.75rem;
}

.aurexa-page .card p {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

.aurexa-page .card .num {
    font-family: "Montserrat", sans-serif;
    font-size: 0.85rem;
    color: rgba(77, 91, 109, 0.6);
}


/* =========================
   WHAT IT IS / CHAT SECTION
========================= */

.aurexa-page .about {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .aurexa-page .about {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.aurexa-page .chatshell {
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 1.5rem;
}

@media (min-width: 640px) {
    .aurexa-page .chatshell {
        padding: 2.5rem;
    }
}

.aurexa-page .chatcard {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-lift);
}

.aurexa-page .chathead {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aurexa-page .chathead .who {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    font-weight: 600;
}

.aurexa-page .avatar {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.7rem;
    background: rgba(254, 189, 105, 0.28);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--espresso);
}

.aurexa-page .livepill {
    border-radius: 999px;
    background: var(--espresso);
    color: var(--espresso-fg);
    padding: 0.25rem 0.75rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.aurexa-page .bubbles {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.aurexa-page .bubble {
    max-width: 85%;
    border-radius: 1.1rem;
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
}

.aurexa-page .bubble.user {
    margin-left: auto;
    background: var(--espresso);
    color: var(--espresso-fg);
}

.aurexa-page .bubble.bot {
    background: var(--secondary);
}

.aurexa-page .tickrow {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.aurexa-page .tick {
    border: 1px solid var(--border);
    background: var(--background);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    color: var(--muted-foreground);
}


/* =========================
   DEMO
========================= */

.aurexa-page .tabs {
    margin-top: 2.5rem;
    display: inline-flex;
    gap: 0.25rem;
    padding: 0.25rem;
    border: 1px solid var(--border);
    background: var(--card);
    border-radius: 999px;
}

.aurexa-page .tab {
    border: 0;
    background: transparent;
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted-foreground);
    cursor: pointer;
}

.aurexa-page .tab.active {
    background: var(--espresso);
    color: var(--espresso-fg);
}

.aurexa-page .demo-grid {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .aurexa-page .demo-grid {
        grid-template-columns: 0.8fr 1.2fr;
    }
}

.aurexa-page .steps {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 1.75rem;
    box-shadow: var(--shadow-soft);
}

.aurexa-page .step {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}

.aurexa-page .step:last-child {
    border-bottom: 0;
}

.aurexa-page .step .top {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.aurexa-page .step .n {
    font-family: "Montserrat", sans-serif;
    font-size: 0.75rem;
    color: rgba(77, 91, 109, 0.6);
}

.aurexa-page .step .t {
    font-size: 1.05rem;
}

.aurexa-page .step .note {
    margin-top: 0.25rem;
    padding-left: 2.25rem;
    font-size: 0.76rem;
    color: var(--muted-foreground);
}

.aurexa-page .transcript {
    background: var(--espresso);
    border-radius: 1.5rem;
    padding: 1.75rem;
    box-shadow: var(--shadow-lift);
}

.aurexa-page .transcript .thead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(243, 245, 249, 0.6);
}

.aurexa-page .transcript .thead .lbl {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
}

.aurexa-page .respond {
    border-radius: 999px;
    background: rgba(254, 189, 105, 0.18);
    color: var(--gold);
    padding: 0.25rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
}

.aurexa-page .turns {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.aurexa-page .turn .tag {
    display: inline-block;
    margin-bottom: 0.35rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 0.1rem 0.6rem;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    color: var(--gold);
}

.aurexa-page .turn .msg {
    border-radius: 1.1rem;
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
}

.aurexa-page .turn.customer .msg {
    margin-left: auto;
    max-width: 80%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--espresso-fg);
}

.aurexa-page .turn.agent .msg {
    max-width: 85%;
    background: rgba(243, 245, 249, 0.95);
    color: var(--espresso);
}

.aurexa-page .turn.system .msg {
    border: 1px solid rgba(254, 189, 105, 0.4);
    background: rgba(254, 189, 105, 0.1);
    color: var(--gold);
}


/* =========================
   HOW IT WORKS
========================= */

.aurexa-page .howrow {
    display: grid;
    gap: 2rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

@media (min-width: 1024px) {
    .aurexa-page .howrow {
        grid-template-columns: 1fr 1fr;
        padding: 3rem;
    }
}

.aurexa-page .howrow h3 {
    margin-top: 1rem;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.aurexa-page .howrow .body {
    margin-top: 1.25rem;
    max-width: 28rem;
    color: var(--muted-foreground);
}

.aurexa-page .panelwrap {
    background: var(--espresso);
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-lift);
}

.aurexa-page .panel {
    background: var(--card);
    border-radius: 0.85rem;
    padding: 1.25rem;
}

.aurexa-page .panel .phead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.aurexa-page .autopill {
    border-radius: 999px;
    background: rgba(254, 189, 105, 0.28);
    color: var(--espresso);
    padding: 0.1rem 0.6rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.aurexa-page .panel dl {
    margin: 0.75rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.aurexa-page .panel .prow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.aurexa-page .panel dt {
    font-size: 0.74rem;
    color: var(--muted-foreground);
}

.aurexa-page .panel dd {
    margin: 0;
    font-size: 0.74rem;
    font-weight: 600;
}


/* =========================
   VALUE CARDS
========================= */

.aurexa-page .valuecard {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 19rem;
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
    background: linear-gradient(
        to bottom,
        var(--secondary),
        rgba(254, 189, 105, 0.28)
    );
    box-shadow: var(--shadow-soft);
}



.aurexa-page .valuecard h3 {
    font-size: 1.5rem;
}

.aurexa-page .valuecard p {
    font-size: 0.9rem;
    color: rgba(35, 47, 62, 0.72);
}


/* =========================
   WHY DIFFERENT
========================= */

.aurexa-page .whyhead {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.aurexa-page .whycard {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 16rem;
    border-radius: 1.5rem;
    padding: 2rem;
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.aurexa-page .whycard.hi {
    background: var(--espresso);
    color: var(--espresso-fg);
    border-color: var(--espresso);
    box-shadow: var(--shadow-lift);
}

.aurexa-page .whycard .lbl {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--muted-foreground);
}

.aurexa-page .whycard.hi .lbl {
    color: var(--gold);
}

.aurexa-page .whycard p {
    margin-top: 1.5rem;
    font-size: 0.96rem;
    color: var(--muted-foreground);
}

.aurexa-page .whycard.hi p {
    color: rgba(243, 245, 249, 0.85);
}

.aurexa-page .pillrow {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.aurexa-page .pill {
    border: 1px solid var(--border);
    background: var(--card);
    border-radius: 999px;
    padding: 0.35rem 1rem;
    font-size: 0.76rem;
    color: var(--muted-foreground);
}

@media (max-width:600px){
    .aurexa-page .valuecard{
        min-height: 10rem;
        gap: 2rem;
    }
    .aurexa-page .whycard{
        min-height: 10rem;
    }
}


/* =========================
   PRICING
========================= */

/* .aurexa-page .plans {
    margin-top: 3.5rem;
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .aurexa-page .plans {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aurexa-page .plan {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    background: var(--card);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.aurexa-page .plan.featured {
    background: var(--espresso);
    color: var(--espresso-fg);
    border-color: var(--espresso);
    box-shadow: var(--shadow-lift);
}

.aurexa-page .plan .badge {
    width: fit-content;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: var(--gold);
    color: var(--ink);
    padding: 0.25rem 0.75rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.aurexa-page .plan h3 {
    font-size: 1.5rem;
}

.aurexa-page .plan .tag {
    margin-top: 0.25rem;
    font-size: 0.86rem;
    color: var(--muted-foreground);
}

.aurexa-page .plan.featured .tag,
.aurexa-page .plan.featured .unit {
    color: rgba(243, 245, 249, 0.6);
}

.aurexa-page .plan .price {
    margin-top: 1.75rem;
    font-family: "Montserrat", sans-serif;
    font-size: 2.25rem;
    font-weight: 600;
}

.aurexa-page .plan .unit {
    margin-top: 0.5rem;
    font-size: 0.74rem;
    color: var(--muted-foreground);
}

.aurexa-page .plan ul {
    margin-top: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.88rem;
}

.aurexa-page .plan li {
    display: flex;
    gap: 0.75rem;
}

.aurexa-page .plan li span.mark {
    color: var(--clay);
}

.aurexa-page .plan.featured li span.mark {
    color: var(--gold);
}

.aurexa-page .plan .btnwrap {
    margin-top: 2rem;
} */

.aurexa-page.aurexa-cta {
  background: var(--gradient-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 5rem 1.5rem;
  font-family: var(--font-sans);
}
 
.aurexa-page .aurexa-cta__container {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}
 
.aurexa-page .aurexa-cta__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: .75rem;
}
 
.aurexa-page .aurexa-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
}
 
.aurexa-page .aurexa-cta__heading em {
  font-style: normal;
  color: var(--clay);
}
 
.aurexa-page .aurexa-cta__lead {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}
 
.aurexa-page .aurexa-cta__points {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: .75rem;
  column-gap: 2rem;
}
 
.aurexa-page .aurexa-cta__points li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9375rem;
  color: var(--foreground);
  white-space: nowrap;
}
 
.aurexa-page .aurexa-cta__tick {
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 600;
}
 
.aurexa-page .aurexa-cta__actions {
  margin-top: 2.5rem;
}
 
.aurexa-page .aurexa-cta__button {
  display: inline-block;
  background: var(--espresso);
  color: var(--espresso-fg);
  padding: .875rem 2.25rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .9375rem;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: box-shadow .2s ease, transform .2s ease;
}
 
.aurexa-page .aurexa-cta__button:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-1px);
}
 
.aurexa-page .aurexa-cta__note {
  margin-top: .875rem;
  font-size: .8125rem;
  color: var(--muted-foreground);
}
 
@media (max-width: 640px) {
  .aurexa-page .aurexa-cta {
    padding: 3.5rem 1.25rem;
  }
  .aurexa-page .aurexa-cta__points {
    flex-direction: column;
    row-gap: .65rem;
  }
}



/* =========================
   FAQ
========================= */

.aurexa-page .faq {
    max-width: 48rem;
    margin: 0 auto;
}

.aurexa-page .faq-item {
    border-bottom: 1px solid var(--border);
}

.aurexa-page .faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: 0;
    cursor: pointer;
    text-align: left;
    padding: 1.15rem 0;
    font-size: 1rem;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    color: var(--foreground);
}

.aurexa-page .faq-q .chev {
    transition: transform 0.25s;
    color: var(--clay);
}

.aurexa-page .faq-item.open .chev {
    transform: rotate(180deg);
}

.aurexa-page .faq-a {
    display: none;
    padding-bottom: 1.15rem;
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

.aurexa-page .faq-item.open .faq-a {
    display: block;
}


/* =========================
   FINAL CTA
========================= */


/* =========================
   FOOTER
========================= */

.aurexa-page .footer {
    background: var(--espresso);
    color: rgba(243, 245, 249, 0.6);
}

.aurexa-page .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 2rem;
    font-size: 0.76rem;
}

@media (min-width: 640px) {
    .aurexa-page .footer-inner {
        flex-direction: row;
    }
}

.aurexa-page .footer strong {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: var(--espresso-fg);
}


/* =========================
   ACCESSIBILITY
========================= */

@media (prefers-reduced-motion: reduce) {
    .aurexa-page .marquee-track {
        animation: none;
    }
}

/* =========================================================
   RAG365 PAGE STYLES
   Wrapper: <body class="rag365-page">
========================================================= */


/* =========================
   PAGE BASE / UNIQUE HELPERS
========================= */

.rag365-page {
    font-family: var(--font-sans);
    background: var(--mist);
    color: var(--foreground);
}

.rag365-page h1,
.rag365-page h2,
.rag365-page h3 {
    font-family: var(--font-display);
}

.rag365-page em {
    font-style: italic;
    color: var(--navy);
}

.rag365-page .eyebrow {
    color: var(--navy);
}

.rag365-page .eyebrow.light {
    color: var(--gold-soft);
    text-align: center;
}

.rag365-page .lead {
    color: var(--muted);
}

.rag365-page h2.title {
    margin-top: 16px;
    font-size: clamp(1.9rem, 4vw, 3rem);
}

.rag365-page .rdark {
    background: var(--ink);
    color: var(--cream);
}

.rag365-page .rdark h2,
.rag365-page .rdark h3 {
    color: #C0CAC7;
}

.rag365-page .rdark em {
    color: var(--gold-soft);
}

.rag365-page .rwarm {
    background: linear-gradient(135deg, #fbfcf8, #eef1e6);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}


/* =========================
   BUTTONS
========================= */

.rag365-page .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.75rem 1.4rem;
    font-weight: 600;
    width: 12rem;
    font-size: 0.9rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.25s;
}

.rag365-page .btn-primary {
    background: var(--gold);
    color: #fff;
}

.rag365-page .btn-primary:hover {
    background: var(--olive);
    transform: translateY(-2px);
}

.rag365-page .btn-outline {
    border-color: var(--border);
    background: #fff;
    color: var(--foreground);
}

.rag365-page .btn-outline:hover {
    border-color: var(--gold);
}

.rag365-page .btn-outline-dark {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--cream);
}

.rag365-page .btn-outline-dark:hover {
    border-color: var(--gold-soft);
    background: rgba(255, 255, 255, 0.06);
}

.rag365-page .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
}
.rag365-page .btn-hero {
    background: var(--gold);
    color: #fff;
}

/* =========================
   HERO
========================= */

.rag365-page .hero {
    position: relative;
    overflow: hidden;
    padding: 0rem 4rem;
    background: var(--ink);
}

.rag365-page .hero img.bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.rag365-page .hero .veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 31, 56, 0.8),
        rgba(10, 31, 56, 0.65),
        var(--ink)
    );
}

.rag365-page .hero-grid {
    position: relative;
    display: grid;
    gap: 56px;
    align-items: center;
    padding: 80px 0 64px;
    min-height: 92vh;
}

@media (min-width: 1024px) {
    .rag365-page .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.rag365-page .hero h1 {
    margin-top: 24px;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--cream);
}

.rag365-page .hero h1 em {
    color: var(--gold-soft);
    font-style: normal;
}

.rag365-page .hero p.sub {
    margin-top: 22px;
    max-width: 34rem;
    color: rgba(233, 237, 222, 0.72);
    font-size: 1.05rem;
}

.rag365-page .hero .cta {
    margin-top: 34px;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
}



.rag365-page .hero .ticks {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    font-size: 0.78rem;
    color: rgba(233, 237, 222, 0.5);
}


/* =========================
   HERO GLASS CARD
========================= */

.rag365-page .card-glass {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow-lift);
    animation: rag365-floatY 7s ease-in-out infinite;
}

.rag365-page .card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
    font-size: 0.88rem;
    color: var(--cream);
}

.rag365-page .badge-live {
    border-radius: 999px;
    background: rgba(125, 154, 69, 0.25);
    color: var(--gold-soft);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    padding: 3px 10px;
}

.rag365-page .bubble-q {
    margin: 16px 0 12px auto;
    max-width: 85%;
    border-radius: 18px;
    background: rgba(125, 154, 69, 0.22);
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--cream);
}

.rag365-page .bubble-a {
    max-width: 92%;
    border-radius: 18px;
    background: rgba(5, 47, 95, 0.7);
    padding: 12px 16px;
    font-size: 0.9rem;
    color: rgba(233, 237, 222, 0.86);
}

.rag365-page .chips {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rag365-page .chip {
    border: 1px solid rgba(199, 214, 171, 0.4);
    background: rgba(125, 154, 69, 0.12);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.7rem;
    color: var(--gold-soft);
}

.rag365-page .meta {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    color: rgba(233, 237, 222, 0.5);
}

.rag365-page .eq {
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
}

.rag365-page .eq i {
    width: 3px;
    background: var(--gold-soft);
    border-radius: 2px;
    display: block;
    animation: rag365-eq 1.1s ease-in-out infinite;
}

.rag365-page .eq i:nth-child(2) {
    animation-delay: 0.2s;
}

.rag365-page .eq i:nth-child(3) {
    animation-delay: 0.4s;
}


/* =========================
   MARQUEE
========================= */

.rag365-page .marquee {
    grid-column: 1 / -1;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        #000 12%,
        #000 88%,
        transparent
    );
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 12%,
        #000 88%,
        transparent
    );
}

.rag365-page .marquee-track {
    display: flex;
    width: max-content;
    gap: 48px;
    will-change:transform;
    animation: rag365-marquee 50s linear infinite;
}

.rag365-page .marquee-track span {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(237, 243, 233, 0.725);
    white-space: nowrap;
}


@media (max-width: 1024px) {

    .rag365-page .hero h1 {
        text-align: center;
    }
    .rag365-page .hero{
        padding: 0rem 2rem;
    }
    .rag365-page .hero .cta{
        justify-content: center;
    }

    .rag365-page .hero p.sub {
        text-align: center;
    }

    .rag365-page .hero-mob {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .rag365-page .hero .ticks {
        align-items: center;
        justify-content: center;
    }

}


/* =========================
   PROBLEM SPLIT SECTION
========================= */

.rag365-page .split {
    margin-top: 56px;
    display: grid;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-lift);
}

@media (min-width: 1024px) {
    .rag365-page .split {
        grid-template-columns: 1fr 1fr;
    }
}

.rag365-page .split .pane {
    padding: 40px;
}

.rag365-page .split .pane.a {
    background: #fff;
}

.rag365-page .split .pane.b {
    background: var(--ink);
    color: var(--cream);
}

.rag365-page .pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.rag365-page .pill.no {
    background: rgba(5, 47, 95, 0.1);
    color: var(--navy);
}

.rag365-page .pill.yes {
    background: rgba(125, 154, 69, 0.25);
    color: var(--gold-soft);
}

.rag365-page .split ul {
    margin-top: 24px;
}

.rag365-page .split li {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    font-size: 0.9rem;
    border-top: 1px solid var(--border);
}

.rag365-page .split .pane.b li {
    border-top-color: rgba(255, 255, 255, 0.1);
    color: rgba(233, 237, 222, 0.8);
}

.rag365-page .split .pane.a li {
    color: var(--muted);
}

.rag365-page .split li:first-child {
    border-top: 0;
}


/* =========================
   STATS
========================= */

.rag365-page .grid-3 {
    display: grid;
    gap: 24px;
    margin-top: 56px;
}

@media (min-width: 900px) {
    .rag365-page .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rag365-page .stat {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    transition: 0.3s;
}

.rag365-page .stat:hover {
    border-color: rgba(199, 214, 171, 0.4);
}

.rag365-page .stat .fig {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-soft);
    letter-spacing: -0.03em;
}

.rag365-page .stat .unit {
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cream);
}

.rag365-page .stat .body {
    margin-top: 18px;
    flex: 1;
    font-size: 0.88rem;
    color: rgba(233, 237, 222, 0.65);
}

.rag365-page .stat .src {
    margin-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 14px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(233, 237, 222, 0.45);
}


/* =========================
   GENERIC FEATURE CARDS
========================= */

.rag365-page .grid-4 {
    display: grid;
    gap: 20px;
    margin-top: 48px;
}

@media (min-width: 700px) {
    .rag365-page .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .rag365-page .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.rag365-page .card {
    height: 100%;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #fff;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: 0.3s;
}

.rag365-page .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
}

.rag365-page .card .icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: rgba(125, 154, 69, 0.2);
    font-size: 1.1rem;
    color: var(--navy);
    transition: 0.5s;
}

.rag365-page .card:hover .icon {
    transform: rotate(12deg);
}

.rag365-page .card h3 {
    margin-top: 20px;
    font-size: 1.1rem;
}

.rag365-page .card p {
    margin-top: 12px;
    font-size: 0.87rem;
    color: var(--muted);
}


/* =========================
   STEPS
========================= */

.rag365-page .step {
    position: relative;
    height: 100%;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: #fff;
    padding: 32px;
    box-shadow: var(--shadow-soft);
}

.rag365-page .step .num {
    position: absolute;
    right: 28px;
    top: 28px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 16px;
    background: rgba(125, 154, 69, 0.2);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--navy);
    animation: rag365-floatY 7s ease-in-out infinite;
}

.rag365-page .step h3 {
    margin-top: 14px;
    font-size: 1.4rem;
}

.rag365-page .step p {
    margin-top: 14px;
    font-size: 0.88rem;
    color: var(--muted);
}


/* =========================
   USE CASES
========================= */

.rag365-page .grid-2 {
    display: grid;
    gap: 20px;
    margin-top: 48px;
}

@media (min-width: 800px) {
    .rag365-page .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.rag365-page .uc {
    display: flex;
    gap: 22px;
    height: 100%;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #fff;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: 0.3s;
}

.rag365-page .uc:hover {
    box-shadow: var(--shadow-lift);
}

.rag365-page .uc .n {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
}

.rag365-page .uc h3 {
    font-size: 1.1rem;
}

.rag365-page .uc p {
    margin-top: 12px;
    font-size: 0.87rem;
    color: var(--muted);
}

.rag365-page .tags {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.rag365-page .tags li {
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.75rem;
    color: var(--muted);
}


/* =========================
   EDITIONS
========================= */

.rag365-page .ed {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: #fff;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    transition: 0.3s;
}

.rag365-page .ed:hover {
    transform: translateY(-4px);
}

.rag365-page .ed.featured {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
    box-shadow: var(--shadow-lift);
}

.rag365-page .ed .tag {
    width: fit-content;
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: rgba(125, 154, 69, 0.2);
    color: var(--navy);
}

.rag365-page .ed.featured .tag {
    background: var(--gold-soft);
    color: var(--ink);
}

.rag365-page .ed h3 {
    margin-top: 24px;
    font-size: 1.3rem;
}

.rag365-page .ed p {
    margin-top: 16px;
    flex: 1;
    font-size: 0.87rem;
    color: var(--muted);
}

.rag365-page .ed.featured p {
    color: rgba(233, 237, 222, 0.7);
}

.rag365-page .ed .btn {
    margin-top: 28px;
    justify-content: center;
    width: 100%;
}


/* =========================
   FAQ
========================= */

.rag365-page .faq {
    max-width: 760px;
    margin: 0 auto;
}

.rag365-page .acc {
    margin-top: 44px;
    border-top: 1px solid var(--border);
}

.rag365-page .acc-item {
    border-bottom: 1px solid var(--border);
}

.rag365-page .acc-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    background: none;
    border: 0;
    padding: 20px 0;
    text-align: left;
    font: 600 1rem/1.4 var(--font-sans);
    color: var(--foreground);
    cursor: pointer;
}

.rag365-page .acc-btn .ic {
    transition: 0.3s;
    color: var(--gold);
    font-size: 1.1rem;
}

.rag365-page .acc-item.open .acc-btn .ic {
    transform: rotate(45deg);
}

.rag365-page .acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.rag365-page .acc-panel p {
    padding: 0 0 20px;
    font-size: 0.9rem;
    color: var(--muted);
}


/* =========================
   FINAL CTA
========================= */

    
/* =========================
   FOOTER
========================= */

.rag365-page footer {
    background: var(--ink);
    color: rgba(233, 237, 222, 0.6);
}

.rag365-page .foot {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 4rem;
    font-size: 0.75rem;
}

.rag365-page .foot .fb {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--cream);
}

@media (max-width:640px){
    .rag365-page .foot{
        justify-content: center;
    }
}


/* =========================
   ANIMATIONS
========================= */

.rag365-page .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.rag365-page .reveal.in {
    opacity: 1;
    transform: none;
}

.rag365-page .pulse {
    animation: rag365-pulse 2s ease-in-out infinite;
}

@keyframes rag365-pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }
}

@keyframes rag365-floatY {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes rag365-floatSlow {
    0%,
    100% {
        transform: translateY(0) rotate(12deg);
    }

    50% {
        transform: translateY(-18px) rotate(14deg);
    }
}

@keyframes rag365-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Translate by exactly the width of ONE set (10 spans + 10 gaps) */
    /* If you use 50%, you MUST ensure the total width is exactly 2x one set */
    transform: translateX(calc(-50% - 24px)); /* Adjusting for the missing half-gap at the seam */
  }
}


@keyframes rag365-eq {
    0%,
    100% {
        height: 35%;
    }

    50% {
        height: 100%;
    }
}


/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {
    .rag365-page .reveal {
        opacity: 1;
        transform: none;
    }

    .rag365-page .card-glass,
    .rag365-page .step .num,
    .rag365-page .cta-box .b1,
    .rag365-page .cta-box .b2,
    .rag365-page .pulse,
    .rag365-page .eq i,
    .rag365-page .marquee-track {
        animation: none !important;
        transition: none !important;
    }
}



/* =========================================================
   DOTRANKER PAGE STYLES
   Wrapper: <body class="dotranker-page">
========================================================= */


/* =========================
   PAGE LAYOUT
========================= */

.dotranker-page .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dotranker-page .narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem 2rem;
}

.dotranker-page .section {
    padding: 96px 0;
}

.dotranker-page .eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clay);
}

.dotranker-page .lead {
    margin-top: 20px;
    color: var(--muted-foreground);
}

.dotranker-page .surface-warm {
    background: var(--gradient-warm);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.dotranker-page .surface-amber {
    background: var(--gradient-amber);
}


/* =========================
   BUTTONS
========================= */

.dotranker-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 22px;
    width: 10rem;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition:
        transform 0.2s,
        background 0.2s,
        color 0.2s;
    font-family: var(--font-sans);
}

.dotranker-page .btn:hover {
    transform: translateY(-1px);
}

.dotranker-page .btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
}

.dotranker-page .btn-hero {
    background: var(--gold);
    color: var(--espresso);
}

.dotranker-page .btn-outline {
    border-color: var(--border-out);
    background: var(--card);
    color: var(--foreground);
}

.dotranker-page .btn-outline-dark {
    border-color: var(--border-out);
    color: var(--espresso-fg);
    background: transparent;
}

.dotranker-page .btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}



/* =========================
   HERO
========================= */

.dotranker-page .hero {
    position: relative;
    overflow: hidden;
    background: var(--espresso);
    isolation: isolate;
}

.dotranker-page .hero img.bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.dotranker-page .hero .veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(18, 48, 51, 0.85),
        rgba(18, 48, 51, 0.7),
        var(--espresso)
    );
}

.dotranker-page .hero-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    min-height: 92vh;
    max-width: 900px;
    margin: 0 auto;
    padding: 112px 20px 64px;
    text-align: center;
}

.dotranker-page .pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    font-size: 12px;
    color: rgba(246, 246, 242, 0.75);
}

.dotranker-page .pill b {
    background: var(--gold);
    color: var(--espresso);
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dotranker-page .pill i {
    font-style: normal;
    color: var(--gold);
}

.dotranker-page .hero h1 {
    font-size: clamp(40px, 7vw, 72px);
    color: var(--espresso-fg);
}

.dotranker-page .hero h1 em {
    color: var(--gold);
}

.dotranker-page .hero p.sub {
    max-width: 620px;
    color: rgba(246, 246, 242, 0.7);
    font-size: 17px;
}

.dotranker-page .hero-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 580px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
}

.dotranker-page .hero-form input {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 12px 16px;
    font: inherit;
    font-size: 14px;
    color: var(--espresso-fg);
    outline: none;
}

.dotranker-page .hero-form input::placeholder {
    color: rgba(246, 246, 242, 0.45);
}

@media (min-width: 640px) {
    .dotranker-page .hero-form {
        flex-direction: row;
    }
}

.dotranker-page .scores {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 32px;
    color: rgba(246, 246, 242, 0.5);
}

.dotranker-page .scores .lbl {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.dotranker-page .scores b {
    font-family: var(--font-display);
    font-size: 14px;
    color: rgba(246, 246, 242, 0.7);
}

.dotranker-page .marquee-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(246, 246, 242, 0.45);
}

.dotranker-page .marquee {
    margin-top: 20px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        #000 12%,
        #000 88%,
        transparent
    );
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 12%,
        #000 88%,
        transparent
    );
}

.dotranker-page .marquee-track {
    display: flex;
    width: max-content;
    gap: 48px;
    will-change: transform;
    animation: dotranker-marquee 26s linear infinite;
}

.dotranker-page .marquee-track span {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: rgba(246, 246, 242, 0.4);
}


/* =========================
   REVEAL
========================= */

.dotranker-page .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.dotranker-page .reveal.in {
    opacity: 1;
    transform: none;
}


/* =========================
   HOW IT WORKS
========================= */

.dotranker-page .grid2 {
    display: grid;
    gap: 32px;
    align-items: stretch; /* was: center */
}
@media (min-width: 1024px) {
    .dotranker-page .grid2 {
        grid-template-columns: 1fr 1fr;
    }
}

.dotranker-page .step {
    display: flex;
    gap: 16px;
    width: 100%;
    text-align: left;
    padding: 24px;
    border-radius: 18px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    font: inherit;
    color: inherit;
    transition:
        background 0.25s,
        border-color 0.25s,
        box-shadow 0.25s;
}



.dotranker-page .step.active {
    border-color: rgba(56, 128, 135, 0.4);
    background: var(--card);
    box-shadow: var(--shadow-lift);
}

.dotranker-page .step .ico {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    flex: none;
    border-radius: 12px;
    background: rgba(186, 223, 231, 0.6);
    color: var(--espresso);
}

.dotranker-page .step .t {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
}

/* .dotranker-page .step .b {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: var(--muted-foreground);
} */

.dotranker-page .chartwrap {
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow-lift);
}

.dotranker-page .chartcard {
    background: var(--card);
    border-radius: 18px;
    padding: 20px;
}

.dotranker-page .chart-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--muted-foreground);
    margin-top: 12px;
}

.dotranker-page .legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    font-size: 11px;
    color: var(--muted-foreground);
}

.dotranker-page .legend i {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    margin-right: 6px;
}




/* new wrapper — matches the chart card's height exactly */
.dotranker-page .steps-frame {
    height: 100%;
}

/* distribute the 4 buttons across that full height */
.dotranker-page #steps {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.dotranker-page .step + .step {
    margin-top: 0; /* space-between now owns the gaps */
}

/* hover highlight — gold at low opacity, distinct from .active */
.dotranker-page .step:hover:not(.active) {
    border-color: color-mix(in srgb, var(--gold) 45%, transparent);
    background: color-mix(in srgb, var(--gold) 14%, transparent);
    box-shadow: var(--shadow-lift);
}


/* body copy: truncated to 1 line by default */
.dotranker-page .step .b {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin-top: 8px;
    max-height: none;
    opacity: 1;
    font-size: 14px;
    color: var(--muted-foreground);
    transition: -webkit-line-clamp 0.01s, max-height 0.3s ease;
}

/* full text on hover/active — same reveal as before */
.dotranker-page .step:hover .b,
.dotranker-page .step.active .b {
    -webkit-line-clamp: unset;
    max-height: 160px;
}



/* =========================
   STATS
========================= */

.dotranker-page .dark-section {
    background: var(--espresso);
    color: var(--espresso-fg);
}

.dotranker-page .dark-section h2 {
    color: var(--espresso-fg);
    font-size: clamp(26px, 4vw, 46px);
}

.dotranker-page .stat-grid {
    display: grid;
    gap: 24px;
    margin-top: 56px;
}

@media (min-width: 1024px) {
    .dotranker-page .stat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dotranker-page .stat {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: border-color 0.3s;
}

.dotranker-page .stat:hover {
    border-color: rgba(111, 179, 184, 0.4);
}

.dotranker-page .stat .fig {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 600;
    color: var(--gold);
}

.dotranker-page .stat .unit {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
}

.dotranker-page em {
    color: var(--clay);
}

.dotranker-page .stat .body {
    margin-top: 18px;
    flex: 1;
    font-size: 14px;
    color: rgba(246, 246, 242, 0.65);
}

.dotranker-page .stat .src {
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(246, 246, 242, 0.45);
}


/* =========================
   TOOLKIT
========================= */

.dotranker-page .panel {
    background: rgba(194, 237, 206, 0.5);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow-lift);
}

.dotranker-page .panel .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dotranker-page .tag {
    border-radius: 999px;
    background: var(--card);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--clay);
}

.dotranker-page .rows {
    margin-top: 16px;
    font-size: 14px;
}

.dotranker-page .rows li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--border);
}

.dotranker-page .rows li:first-child {
    border-top: 0;
}

.dotranker-page .rows .n {
    width: 16px;
    font-size: 12px;
    color: var(--muted-foreground);
}

.dotranker-page .rows .sc {
    margin-left: auto;
    font-size: 12px;
    color: var(--muted-foreground);
}

.dotranker-page .rows .d {
    border-radius: 6px;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 700;
    background: var(--secondary);
    color: #17383a;
}

.dotranker-page .rows .d.down {
    background: #e9efec;
    color: var(--muted-foreground);
}

.dotranker-page .ticks li {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 12px;
}

.dotranker-page .ticks li::before {
    content: "✓";
    color: var(--clay);
}


/* =========================
   FEATURES
========================= */

.dotranker-page .cards {
    display: grid;
    gap: 20px;
    margin-top: 48px;
}

@media (min-width: 700px) {
    .dotranker-page .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .dotranker-page .cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dotranker-page .card {
    height: 100%;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--card);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition:
        transform 0.25s,
        box-shadow 0.25s;
}

.dotranker-page .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
}

.dotranker-page .card .ico {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: rgba(186, 223, 231, 0.6);
    font-size: 18px;
    color: var(--espresso);
    transition: transform 0.5s;
}

.dotranker-page .card:hover .ico {
    transform: rotate(12deg);
}

.dotranker-page .card h3 {
    margin-top: 20px;
    font-size: 19px;
}

.dotranker-page .card p {
    margin-top: 12px;
    font-size: 14px;
    color: var(--muted-foreground);
}


/* =========================
   USE CASES
========================= */

.dotranker-page .cases {
    display: grid;
    gap: 20px;
    margin-top: 48px;
}

@media (min-width: 700px) {
    .dotranker-page .cases {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .dotranker-page .cases {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dotranker-page .case {
    display: flex;
    gap: 24px;
    height: 100%;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--card);
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.dotranker-page .case:hover {
    box-shadow: var(--shadow-lift);
}

.dotranker-page .case .n {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--clay);
}

.dotranker-page .case h3 {
    font-size: 19px;
}

.dotranker-page .case p {
    margin-top: 12px;
    font-size: 14px;
    color: var(--muted-foreground);
}

.dotranker-page .chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.dotranker-page .chips li {
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--card);
    padding: 8px 16px;
    font-size: 12px;
    color: var(--muted-foreground);
}


/* =========================
   PRICING
========================= */

.dotranker-page .plans {
    display: grid;
    gap: 20px;
    margin-top: 56px;
}

@media (min-width: 700px) {
    .dotranker-page .plans {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .dotranker-page .plans {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dotranker-page .plan {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--card);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s;
}

.dotranker-page .plan:hover {
    transform: translateY(-4px);
}

.dotranker-page .plan.featured {
    background: var(--espresso);
    color: var(--espresso-fg);
    border-color: var(--espresso);
    box-shadow: var(--shadow-lift);
}

.dotranker-page .plan .tg {
    width: fit-content;
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(186, 223, 231, 0.6);
    color: var(--espresso);
}

.dotranker-page .plan.featured .tg {
    background: var(--gold);
    color: var(--espresso);
}

.dotranker-page .plan h3 {
    margin-top: 24px;
    font-size: 24px;
}

.dotranker-page .plan .price {
    margin-top: 8px;
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 600;
    color: var(--clay);
}

.dotranker-page .plan.featured .price {
    color: var(--gold);
}

.dotranker-page .plan .price small {
    font-size: 14px;
    font-weight: 400;
    color: var(--muted-foreground);
}

.dotranker-page .plan .body {
    margin-top: 16px;
    font-size: 14px;
    color: var(--muted-foreground);
}

.dotranker-page .plan.featured .body {
    color: rgba(246, 246, 242, 0.7);
}

.dotranker-page .plan ul {
    margin-top: 20px;
    flex: 1;
    font-size: 14px;
    color: var(--muted-foreground);
}

.dotranker-page .plan.featured ul {
    color: rgba(246, 246, 242, 0.8);
}

.dotranker-page .plan ul li {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.dotranker-page .plan ul li::before {
    content: "✓";
    color: var(--clay);
}

.dotranker-page .plan.featured ul li::before {
    color: var(--gold);
}

.dotranker-page .plan .btn {
    margin-top: 32px;
    width: 100%;
}


/* =========================
   FAQ
========================= */

.dotranker-page .faq {
    border-top: 1px solid var(--border);
}

.dotranker-page .faq button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: 0;
    padding: 18px 0;
    font: inherit;
    font-weight: 600;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    color: inherit;
}

.dotranker-page .faq button .chev {
    transition: transform 0.3s;
    color: var(--clay);
}

.dotranker-page .faq.open button .chev {
    transform: rotate(180deg);
}

.dotranker-page .faq .ans {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.dotranker-page .faq .ans p {
    padding-bottom: 18px;
    font-size: 14px;
    color: var(--muted-foreground);
}


/* =========================
   FINAL CTA
========================= */

.dotranker-page .cta-outer {
    background: var(--espresso);
    padding: 80px 0;
}

.dotranker-page .cta-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #f6f6f2;
    padding: 64px 40px;
}

.dotranker-page .cta-card .blob1 {
    position: absolute;
    right: -64px;
    top: -64px;
    width: 280px;
    height: 280px;
    border-radius: 48px;
    transform: rotate(12deg);
    background: var(--gradient-amber);
    opacity: 0.7;
    animation: dotranker-float 9s ease-in-out infinite;
}

.dotranker-page .cta-card .blob2 {
    position: absolute;
    bottom: -96px;
    right: 96px;
    width: 256px;
    height: 256px;
    border-radius: 48px;
    transform: rotate(45deg);
    background: rgba(56, 128, 135, 0.2);
    animation: dotranker-float 7s ease-in-out infinite;
}

.dotranker-page .cta-card .inner {
    position: relative;
    max-width: 560px;
}

.dotranker-page .cta-card h2 {
    font-size: clamp(32px, 5vw, 48px);
}

.dotranker-page .cta-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 32px;
}

@media (min-width: 640px) {
    .dotranker-page .cta-form {
        flex-direction: row;
    }
}

.dotranker-page .cta-form input {
    flex: 1;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--card);
    padding: 12px 16px;
    font: inherit;
    font-size: 14px;
    outline: none;
}

.dotranker-page .cta-form input:focus {
    box-shadow: 0 0 0 2px var(--primary);
}


/* =========================
   FOOTER
========================= */

.dotranker-page footer.site {
    background: var(--espresso);
    color: rgba(246, 246, 242, 0.6);
}

.dotranker-page footer.site .dr-row {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 3rem;
    font-size: 12px;
}

@media (min-width: 640px) {
    .dotranker-page footer.site .dr-row {
        flex-direction: row;
        width: 100%;
        align-items: center;
    }
}

.dotranker-page footer.site b {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--espresso-fg);
}


/* =========================
   SCREEN READER
========================= */

.dotranker-page .sr {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}


/* =========================
   ANIMATIONS
========================= */

@keyframes dotranker-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 24px));
    }
}

@keyframes dotranker-float {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -18px;
    }
}


/* =========================
   NAVIGATION
========================= */
 header.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    transition: background 0.3s, border-color 0.3s;
}
 header.nav.solid {
    background: var(--foreground);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
 .nav-inner {
    display: flex;
    height: 4rem;
    align-items: center;
    justify-content: space-between;
}
 .brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-weight: 600;
    width: 9em;
    height: 4em;
    font-size: 1.1rem;
    color: var(--espresso-fg);
}
 .brand-dot {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: rgba(129, 159, 167, 0.2);
    box-shadow: inset 0 0 0 1px rgba(129, 159, 167, 0.5);
}
 .brand-dot span {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 999px;
    background: var(--gold);
}
 .nav-links {
    display: none;
    gap: 1.75rem;
}
 .nav-links a {
    font-size: 0.85rem;
    color: rgba(243, 245, 249, 0.7);
}
 .nav-links a:hover {
    color: var(--gold);
}

@media (min-width: 1024px) {
 .nav-links {
        display: flex;
    }
}
.brand-img{
    display: block;
    max-width: 100%;
}

@media (max-width:360px){
  .brand{
    width: 8rem;
  }
}




.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background:none ;
  /* border: 1px solid var(--gold); */
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: background 0.25s ease;
}

/* .hamburger:hover {
  background: var(--muted);
} */

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

/* Animate to X when open */
.hamburger.active {
  background: transparent;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--gold);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--gold);
}

/* Mobile breakpoint */
@media (max-width: 1023px) {
  .nav-inner {
    position: relative;
    flex-wrap: wrap;
  }

  /* Remove CTA button from navbar on mobile */
  .nav-inner .btn-hero.btn-sm {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Dropdown panel below navbar */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--card);
    padding: 8px 20px 20px;
    gap: 0;

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.35s;

    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lift);
  }

  .nav-links.active {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    width: 100%;
    color: var(--foreground);
    font-family: var(--font-sans);
    transition: color 0.25s ease;
  }

  .nav-links a:hover {
    color: var(--gold);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
}


/* =========================
   TESTIMONIALS
========================= */

.rc-eyebrow{
  display:inline-block;
  font-family:var(--font-sans);
  font-size:.75rem;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--clay);
  margin-bottom:.75rem;
}
.rc-heading{
  font-family:var(--font-display);
  font-size:clamp(1.75rem,3vw,2.5rem);
  line-height:1.15;
  margin:0 0 .85rem;
  font-weight:700;
}
.rc-heading em{font-style:italic;color:var(--clay)}
.rc-lead{
  font-size:1rem;
  line-height:1.6;
  color:var(--muted-foreground);
  margin:0;
}
 
/* ---------- Marquee ---------- */
.review-marquee{
  margin-top:2.25rem;
  position:relative;
  overflow:hidden;
  -webkit-mask-image:linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image:linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
 .review-track{
  display:flex;
  align-items:stretch;
  gap:1.25rem;
  padding-right:1.25rem ;
  width:max-content;
  animation:instacall-marquee-scroll 42s linear infinite;
}
@media (hover: hover) {
  .review-marquee:hover .review-track {
    animation-play-state: paused;
  }
}

/* 2. Touch/Click Toggle: Always works flawlessly when JS attaches the class */
.review-marquee.paused .review-track {
  animation-play-state: paused !important;
}
@keyframes instacall-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Works for any screen size */
}
@media (prefers-reduced-motion: reduce){
.review-track{animation:none}
}


 
/* ---------- Card base ---------- */
.rc-card{
  position:relative;
  flex:0 0 auto;
  width:270px;
  height:300px;
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
  border:1px solid var(--border);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .35s ease, box-shadow .35s ease;
}
.rc-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lift);
}
 
.rc-quote{
  width:2rem;
  height:2rem;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.rc-quote i{font-size:.85rem;line-height:1}
 
.rc-title{
  font-family:var(--font-display);
  font-weight:700;
  font-size:1.05rem;
  line-height:1.3;
  margin:.75rem 0 .4rem;
}
.rc-text{
  font-style:italic;
  font-size:.9rem;
  line-height:1.55;
  margin:0;
}
 
/* ---------- Type 1: plain card ---------- */
.rc-card--plain{
  background:var(--card);
  padding:1.35rem;
  justify-content:flex-start;
}
.rc-card--plain .rc-quote{background:var(--muted); color:var(--clay)}
.rc-card--plain .rc-text{color:var(--muted-foreground)}
 
/* ---------- Type 2: tinted card ---------- */
.rc-card--tint{
  background:color-mix(in srgb, var(--clay) 16%, var(--card));
  padding:1.35rem;
  border-color:transparent;
}
.rc-card--tint .rc-quote{background:rgba(255,255,255,.55); color:var(--espresso)}
.rc-card--tint .rc-text{color:var(--clay)}
 
/* ---------- Type 3: image + solid footer card ---------- */
 .rc-card--image{padding:0}

/* photo now fills the ENTIRE card as a background layer */
.rc-card--image .rc-photo{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:0;
}
 .rc-card--image .rc-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}
/* top blurred gradient wash, fading downward, same color as the footer */
.rc-card--image .rc-photo::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:40%;
  z-index:1;
  pointer-events:none;
  filter:blur(1px);
}
.rc-card--image .rc-quote{
  position:absolute;
  top:.85rem;
  left:.85rem;
  z-index:3;
}
.rc-card--image .rc-footer{
 position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:.5rem 1.2rem 1.2rem;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  z-index:2;
  backdrop-filter:blur(1px);
  -webkit-backdrop-filter:blur(18px);
}
 .dark{
     background:linear-gradient(to bottom,
    rgba(13,13,13,0.46) 0%,
    rgba(13,13,13,.95) 30%,
    var(--espresso) 65%);
 }
/* dark footer variant: blurred glass fading into the solid espresso color */
.rc-card--image.dark .rc-footer{
  background:linear-gradient(to bottom,
    rgba(13,13,13,0) 0%,
    rgba(13,13,13,.95) 30%,
    var(--espresso) 65%);
}
.dark .rc-title,
.dark .rc-text{color:var(--espresso-fg)}
.dark .rc-text{opacity:.75}
.dark .rc-quote{background:rgba(243,245,249,.18); color:var(--espresso-fg)}



.warm{
     background:linear-gradient(to bottom,
    rgba(13,13,13,0) 0%,
    color-mix(in srgb, var(--gold) 60%, var(--background) 60%) 30%,
    color-mix(in srgb, var(--gold) 51%, var(--background)) 65%);
}
/* warm footer variant: blurred glass fading into the solid warm tint */
.rc-card--image.is-warm .rc-footer{
  background:linear-gradient(to bottom,
    rgba(13,13,13,0) 0%,
    color-mix(in srgb, var(--gold) 60%, var(--background) 60%) 30%,
    color-mix(in srgb, var(--gold) 51%, var(--background)) 65%);
}
.rc-card--image.is-warm .rc-title{color:var(--espresso)}
.rc-card--image.is-warm .rc-text{color:var(--clay)}
.rc-card--image.is-warm .rc-quote{background:rgba(13,13,13,.35); color:var(--espresso-fg)}
 
@media (max-width:640px){
  .rc-card{width:230px; min-height:270px}
  .review-track{gap:1.25rem}
}



/* final cta  */

.final-form-cta .cta-band {
  background: var(--espresso);
}

.final-form-cta .cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #f4efe7;
  padding: 4rem 2rem;
}

@media (min-width: 640px) {
  .final-form-cta .cta-box {
    padding: 5rem 3.5rem;
  }
}

/* Hide the icon mark completely — HTML stays intact, just not shown */
.final-form-cta .cta-mark {
  display: none;
}

/* Decorative blob — top-left, soft grey */
.final-form-cta .cta-box::before {
  content: "";
  position: absolute;
  top: -6rem;
  left: -6rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(42, 33, 25, 0.06);
  pointer-events: none;
}

/* Decorative blob — bottom-right, warm orange */
.final-form-cta .cta-box::after {
  content: "";
  position: absolute;
  bottom: -7rem;
  right: -7rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.85;
  pointer-events: none;
}

@media (max-width: 900px) {
  .final-form-cta .cta-box::before {
    width: 10rem;
    height: 10rem;
    top: -4rem;
    left: -4rem;
    z-index: 0;
  }
  .final-form-cta .cta-box::after {
    width: 11rem;
    height: 11rem;
    bottom: -4rem;
    right: -4rem;
    z-index: 0;
  }
}

.final-form-cta .cta-inner {
  position: relative;
  max-width: 34rem;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}



.final-form-cta .cta-inner .lead {
  margin-top: 1rem;
  color: rgba(42, 33, 25, 0.7);
}

.final-form-cta .cta-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
