:root {
  --bg: #070812;
  --bg-soft: #0e1020;
  --card: rgba(255,255,255,.065);
  --card-border: rgba(255,255,255,.12);
  --text: #f4f5fb;
  --muted: #b9bdcf;
  --muted-2: #888da4;
  --accent: #c30463;
  --accent-2: #e0e0e0;
  --cyan: #54e8ff;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0,0,0,.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Heebo', system-ui, sans-serif;
  background: radial-gradient(circle at top left, rgba(0, 39, 75, 0.18), transparent 30%), var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(840px, calc(100% - 40px));
}

.section {
  padding: 100px 0;
  position: relative;
}

.alt {
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 20px 32px;
  backdrop-filter: blur(16px);
  background: rgba(7,8,18,.76);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
}

.nav a:hover {
  color: var(--text);
}

.header-cta {
  padding: 10px 18px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: var(--card);
}

.logo-white {
  width: 150px;
}

.hero {
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 20%, rgba(84,232,255,.14), transparent 30%),
    radial-gradient(circle at 72% 45%, rgba(255,107,182,.16), transparent 34%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .04em;
  margin: 0 0 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -.04em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}

h3 {
  font-size: 23px;
  margin-bottom: 10px;
}

.lead {
  font-size: 21px;
  color: var(--muted);
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  /* margin: 34px 0; */
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  width: 50%;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
}
@media (max-width:900px){
.btn {
  width: 80%;
}
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.btn.ghost {
  border: 1px solid var(--card-border);
  background: var(--card);
  color: var(--muted);
}

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-row span {
  padding: 8px 14px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.04);
}

.hero-card {
  display: flex;
  justify-content: center;
}

#imgHero {
  width: 270px;
}

@media (max-width:900px){
#imgHero {
  width: 200px;
}

}

.phone-mockup {
  width: min(360px, 100%);
  padding: 14px;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
}

.phone-top {
  width: 90px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
  margin: 6px auto 18px;
}

.lawyer-card {
  min-height: 520px;
  border-radius: 30px;
  padding: 28px;
  background: linear-gradient(160deg, #14172b, #090a15);
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.lawyer-card::before {
  content: '';
  position: absolute;
  inset: -40% -30% auto auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255,107,182,.33), transparent 65%);
}

.tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,107,182,.14);
  color: #ffd6eb;
  font-weight: 700;
  margin-bottom: 18px;
}

.lawyer-card p {
  color: var(--muted);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.mini-stats div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  text-align: center;
}

.mini-stats strong {
  display: block;
  font-size: 26px;
}

.mini-stats small {
  color: var(--muted-2);
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.text-block p {
  font-size: 20px;
  color: var(--muted);
}

.center-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px;
}

.center-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
}

.cards {
  display: grid;
  gap: 18px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.benefits-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.icon {
  color: var(--cyan);
  font-weight: 900;
}

.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.model-box {
  padding: 42px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,107,182,.16), rgba(142,92,255,.12));
  border: 1px solid rgba(255,255,255,.14);
}

.model-box p {
  color: var(--muted);
  font-size: 19px;
}

.steps {
  display: grid;
  gap: 14px;
}

.step,
.criteria-list div,
.timeline-item {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,107,182,.16), rgba(142,92,255,.12));
  border: 1px solid var(--card-border);
}

.step strong,
.criteria-list strong {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
}

.step span,
.criteria-list span {
  color: var(--muted);
}

.criteria-list {
  display: grid;
  gap: 14px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeline-item span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 900;
  margin-bottom: 16px;
}

.timeline-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.founders-box {
  margin-top: 22px;
  padding: 30px;
  border-radius: 26px;
  background-color: var(--bg-soft);;
  /* background: linear-gradient(135deg, rgba(84,232,255,.10), rgba(255,107,182,.12)); */
  border: 1px solid var(--card-border);
  text-align: center;
}

.founders-box h3 {
  color: rgb(254, 237, 0);
}

.founders-box p {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 19px;
}

.faq-list {
  border: 1px solid var(--card-border);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.045);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 22px 26px;
  text-align: right;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.faq-question::after {
  content: '+';
  float: left;
  color: var(--accent);
  font-size: 24px;
}

.faq-question.active::after {
  content: '–';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-answer p {
  padding: 0 26px 22px;
  color: var(--muted);
  margin: 0;
}

.final-cta {
  text-align: center;
}

.final-cta p {
  color: var(--muted);
  font-size: 20px;
}


#waBtn {
  background: linear-gradient(135deg, #008d36, var(--accent-2));
  color: #050914;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .hero-grid,
  .split,
  .model-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .cards.three,
  .benefits-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 44px;
  }

  .lead {
    font-size: 18px;
  }

  .phone-mockup {
    width: 330px;
  }

  .lawyer-card {
    min-height: 440px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

.demo-section {
    padding: 120px 20px;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.demo-card {
    background: linear-gradient(180deg, #003b4d, #025c77);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: .35s;
}

.demo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(255,94,168,.15);
}

.demo-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 18px;
    background: linear-gradient(135deg,#d70b71,#ff8cc0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.demo-card h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 18px;
}

.demo-card p {
    color: #d7d7d7;
    line-height: 1.9;
    margin-bottom: 35px;
    font-size: 17px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 14px;
    font-weight: 700;
    transition: .3s;
}

.btn-primary {
    background: #d70b71;
    color: white;
}

.btn-primary:hover {
    background: #d70b71;
}

.btn-outline {
    border: 2px solid white;
     color: white;
}

.btn-outline:hover {
    border: 2px solid #d70b71;
    background: #d70b71;
}

@media (max-width:900px){

    .demo-grid{
        grid-template-columns:1fr;
    }

    .demo-card{
        padding:32px 24px;
    }

}


 /* ─── FOOTER ─── */
      .footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        background-color: #050914;
        color: white;
        padding: 40px 20px;
      }
      
      #logoImgFooter {
        width: 80px;
      }

      .footer-links {
        display: flex;
        gap: 24px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 24px;
      }
      .footer-links a {
        color: rgb(240, 240, 240);
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        transition: color 0.2s;
      }
      .footer-links a:hover {
        color: #fff;
      }
      .footer-copy {
        font-size: 11px;
        opacity: 0.45;
      }

      /* ─── FLOATING CTA MOBILE ─── */
      .float-cta {
        display: none;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 50;
        background: var(--green);
        color: #fff;
        border-radius: var(--radius-pill);
        padding: 14px 28px;
        font-size: 14px;
        font-weight: 700;
        font-family: var(--font);
        cursor: pointer;
        box-shadow: 0 8px 28px rgba(7, 95, 63, 0.35);
        border: none;
        white-space: nowrap;
        transition: transform 0.2s;
      }
      @media (max-width: 640px) {
        .float-cta {
          display: block;
        }
      }
      .float-cta:hover {
        transform: translateX(-50%) translateY(-2px);
      }