/* styles.css */
:root{
  --bg: rgba(255,255,255,.78);
  --bg-solid: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, .10);
  --shadow: 0 14px 40px rgba(2, 6, 23, .10);
  --radius: 18px;
  --cta: #dc2626; /* premium emergency red */
  --cta-hover: #b91c1c;
}

*{ box-sizing: border-box; }
body{
  margin:0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);
  background: #f6f7fb;
}

a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }

.nav-wrap{
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  padding: 0 14px;
}

.nav{
  width: min(1160px, 100%);
  background: var(--bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(2, 6, 23, .08);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: box-shadow .25s ease, background .25s ease, transform .25s ease;
}

.nav-wrap.is-scrolled .nav{
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 190px;
}

.brand-mark{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(220,38,38,.14), rgba(220,38,38,.06));
  border: 1px solid rgba(220,38,38,.22);
  color: var(--cta);
  flex: 0 0 auto;
}

.brand-text{
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 16px;
  line-height: 1.1;
}
.brand-text span{
  color: var(--cta);
  margin-left: 4px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 6px;
  list-style:none;
  padding:0;
  margin:0;
}

.nav-link, .dropdown-btn{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 600;
  border: 1px solid transparent;
  background: transparent;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
  font-size: 14px;
}
.nav-link i, .dropdown-btn i{ font-size: 14px; }

.nav-link:hover, .dropdown-btn:hover{
  background: rgba(15,23,42,.05);
  border-color: rgba(15,23,42,.08);
  color: var(--text);
}

.nav-link.is-active{
  background: rgba(220,38,38,.10);
  border-color: rgba(220,38,38,.22);
  color: var(--cta);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

.icon-btn{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.72);
  color: var(--text);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.icon-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(2,6,23,.08);
  background: rgba(255,255,255,.95);
}

.cta{
  height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  gap: 10px;
  background: var(--cta);
  color: #fff;
  font-weight: 800;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 12px 28px rgba(220,38,38,.25);
  transition: transform .18s ease, background .18s ease;
  white-space: nowrap;
}
.cta:hover{ background: var(--cta-hover); transform: translateY(-1px); }

.burger{
  width: 44px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.72);
  display:none;
  align-items:center;
  justify-content:center;
  gap: 5px;
  flex-direction: column;
}
.burger span{
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 10px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Dropdown */
.dropdown{ position: relative; }
.dropdown-menu{
  position:absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(2,6,23,.14);
  padding: 8px;
  display:none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.dropdown.is-open .dropdown-menu{ display:block; }
.dropdown-menu a{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.dropdown-menu a:hover{
  background: rgba(15,23,42,.05);
  color: var(--text);
}
.chevron{ margin-left: 2px; font-size: 12px; }

/* Mobile Panel */
.mobile-panel{
  width: min(1160px, calc(100% - 25px));
  margin-top: 10px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
  display:none;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: absolute;
  top: 75px;
}

.mobile-panel.is-open{ display:block; }

.mobile-link{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  font-weight: 700;
  color: var(--muted);
}
.mobile-link:hover{ background: rgba(15,23,42,.05); color: var(--text); }

.mobile-accordion{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 12px 12px;
  border-radius: 14px;
  border: none;
  background: transparent;
  font-weight: 800;
  color: var(--muted);
}
.mobile-accordion:hover{ background: rgba(15,23,42,.05); color: var(--text); }

.mobile-sub{
  display:none;
  padding: 0 6px 8px 6px;
}
.mobile-sub.is-open{ display:block; }
.mobile-sub a{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 650;
}
.mobile-sub a:hover{ background: rgba(15,23,42,.05); color: var(--text); }

.mobile-cta-row{
  margin-top: 10px;
  border-top: 1px solid rgba(15,23,42,.08);
  padding-top: 10px;
}
.cta.full{ width: 100%; justify-content: center; }
.mobile-icons{
  margin-top: 10px;
  display:flex;
  gap: 10px;
}

/* Responsive */
@media (max-width: 980px){
  .nav-links{ display:none; }
  .burger{ display:flex; }
  .brand{ min-width: auto; }
}

@media (max-width: 520px){
  .icon-btn{ display:none; }
  .cta{ display:none; }
  .burger{ margin-left: 6px; }
}
/* HERO VIDEO */
.hero-video{
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #0b1220;
}

.hero-video__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.05);
}

/* Overlay (readability + premium feel) */
.hero-video__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 70% at 50% 40%, rgba(0,0,0,.35), rgba(0,0,0,.75)),
    linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.70));
}

.hero-video__content{
  position: relative;
  z-index: 2;
  width: min(980px, 92%);
  text-align: center;
  padding: 120px 0 40px; /* room for navbar */
  color: #fff;
}

.hero-video__badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight: 700;
  letter-spacing: .2px;
}

.hero-video__badge i{
  color: rgba(255,255,255,.95);
}

.hero-video__title{
  margin: 18px 0 10px;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-shadow: 0 18px 60px rgba(0,0,0,.45);
}

.hero-video__subtitle{
  margin: 0 auto;
  max-width: 780px;
  font-size: clamp(14px, 1.7vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,.88);
  text-shadow: 0 10px 40px rgba(0,0,0,.35);
}

.hero-video__cta{
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn{
  height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn-primary{
  background: var(--cta, #dc2626);
  color: #fff;
  box-shadow: 0 18px 40px rgba(220,38,38,.28);
}
.btn-primary:hover{
  transform: translateY(-1px);
  background: var(--cta-hover, #b91c1c);
}

.btn-ghost{
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.16);
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.hero-video__meta{
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.meta-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.9);
  font-weight: 700;
}

/* Mobile tweaks */
@media (max-width: 520px){
  .hero-video__content{
    padding-top: 105px;
  }
  .btn{
    width: 100%;
    justify-content: center;
  }
  .hero-video__badge{
    width: 100%;
    justify-content: center;
  }
}

/* SECTION 2: TRUST / CREDIBILITY */
/* SECTION 2: TRUST */
.trust{
  padding: 80px 0;
  background: #ffffff;
}

.trust__container{
  width: min(1160px, 92%);
  margin: 0 auto;
}

.trust__top{
  text-align: center;
  margin-bottom: 26px;
}

.trust__title{
  font-size: clamp(24px, 3.2vw, 40px);
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  font-weight: 850;
  color: #0f172a;
}

.trust__subtitle{
  margin: 0 auto;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

.trust__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.trust-card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 20px;
  padding: 18px 16px;
  box-shadow: 0 14px 40px rgba(2, 6, 23, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
  overflow: hidden;
}

.trust-card::before{
  content:"";
  position:absolute;
  inset: -60% -40% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(220,38,38,.14), transparent 60%);
  transform: rotate(15deg);
  pointer-events:none;
}

.trust-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 55px rgba(2, 6, 23, .10);
  border-color: rgba(220,38,38,.22);
}

.trust-card__icon{
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(220,38,38,.14), rgba(220,38,38,.06));
  border: 1px solid rgba(220,38,38,.22);
  color: var(--cta, #dc2626);
  margin-bottom: 12px;
}

.trust-card__icon i{
  font-size: 18px;
}

.trust-card__title{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 850;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.trust-card__text{
  margin: 0;
  color: #475569;
  line-height: 1.65;
  font-size: 14px;
}

/* Bottom CTA Bar */
.trust__bar{
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(248,250,252,.85);
  box-shadow: 0 18px 55px rgba(2, 6, 23, .06);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.trust__bar-left{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust__pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(15,23,42,.08);
  color: #0f172a;
  font-weight: 800;
  font-size: 13px;
}

.trust__pill i{
  color: var(--cta, #dc2626);
}

.trust__bar-right{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust__btn{
  height: 44px;
  padding: 0 14px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}

.trust__btn-primary{
  background: var(--cta, #dc2626);
  color: #fff;
  box-shadow: 0 14px 32px rgba(220,38,38,.22);
}
.trust__btn-primary:hover{
  transform: translateY(-1px);
  background: var(--cta-hover, #b91c1c);
}

.trust__btn-ghost{
  background: rgba(255,255,255,.80);
  border-color: rgba(15,23,42,.10);
  color: #0f172a;
}
.trust__btn-ghost:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(2,6,23,.10);
  border-color: rgba(220,38,38,.18);
}

/* Responsive */
@media (max-width: 980px){
  .trust__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px){
  .trust{
    padding: 60px 0;
  }
  .trust__grid{
    grid-template-columns: 1fr;
  }
  .trust__btn{
    width: 100%;
    justify-content: center;
  }
}


/* HOW IT WORKS SECTION */

/* SECTION 3: HOW IT WORKS */
.how{
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  border-top: 1px solid rgba(15,23,42,.06);
}

.how__container{
  width: min(1160px, 92%);
  margin: 0 auto;
}

.how__top{
  text-align: center;
  margin-bottom: 26px;
}

.how__title{
  font-size: clamp(24px, 3.2vw, 40px);
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  font-weight: 850;
  color: #0f172a;
}

.how__subtitle{
  margin: 0 auto;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

/* Grid */
.how__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

/* Card */
.how-card{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 14px 40px rgba(2, 6, 23, .06);
  padding: 18px 16px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.how-card::before{
  content:"";
  position:absolute;
  inset: -70% -40% auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(220,38,38,.12), transparent 60%);
  transform: rotate(18deg);
  pointer-events:none;
}

.how-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 55px rgba(2, 6, 23, .10);
  border-color: rgba(220,38,38,.22);
}

/* Card head */
.how-card__head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.how-card__step{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  font-weight: 900;
  font-size: 16px;
  color: var(--cta, #dc2626);
  background: rgba(220,38,38,.10);
  border: 1px solid rgba(220,38,38,.22);
}

.how-card__icon{
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  color: #0f172a;
  background: rgba(15,23,42,.05);
  border: 1px solid rgba(15,23,42,.08);
}

.how-card__icon i{
  font-size: 18px;
}

.how-card__title{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.how-card__text{
  margin: 0;
  color: #475569;
  line-height: 1.65;
  font-size: 14px;
}

/* CTA Strip */
.how__cta{
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 55px rgba(2, 6, 23, .06);
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.how__cta-title{
  font-weight: 950;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.how__cta-sub{
  margin-top: 4px;
  color: #475569;
  font-weight: 650;
  font-size: 14px;
}

.how__cta-right{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.how__btn{
  height: 44px;
  padding: 0 14px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}

.how__btn-primary{
  background: var(--cta, #dc2626);
  color: #fff;
  box-shadow: 0 14px 32px rgba(220,38,38,.22);
}
.how__btn-primary:hover{
  transform: translateY(-1px);
  background: var(--cta-hover, #b91c1c);
}

.how__btn-ghost{
  background: rgba(255,255,255,.85);
  border-color: rgba(15,23,42,.10);
  color: #0f172a;
}
.how__btn-ghost:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(2,6,23,.10);
  border-color: rgba(220,38,38,.18);
}

/* Responsive */
@media (max-width: 980px){
  .how__grid{
    grid-template-columns: 1fr;
  }
  .how-card{
    padding: 18px;
  }
  .how__btn{
    width: 100%;
    justify-content: center;
  }
}
/* SECTION  : SOCIAL PRROF*/
/* SECTION 4: SOCIAL PROOF */
.proof{
  padding: 80px 0;
  background: #ffffff;
  border-top: 1px solid rgba(15,23,42,.06);
}

.proof__container{
  width: min(1160px, 92%);
  margin: 0 auto;
}

/* Header */
.proof__top{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.proof__title{
  margin: 0 0 10px;
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.proof__subtitle{
  margin: 0;
  max-width: 760px;
  color: #475569;
  line-height: 1.7;
  font-size: 16px;
}

.proof__rating{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(248,250,252,.9);
  box-shadow: 0 14px 40px rgba(2,6,23,.06);
}

.proof__stars i{
  color: #f59e0b; /* amber stars */
  margin-right: 2px;
}

.proof__score strong{
  font-size: 16px;
  color: #0f172a;
}
.proof__score span{
  display:block;
  font-size: 12px;
  color: #64748b;
  font-weight: 700;
}

/* Track: grid on desktop, horizontal scroll on mobile */
.proof__track{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

/* Card */
.proof-card{
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 14px 40px rgba(2,6,23,.06);
  padding: 18px 16px;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.proof-card::before{
  content:"";
  position:absolute;
  inset: -70% -40% auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(220,38,38,.12), transparent 60%);
  transform: rotate(18deg);
  pointer-events:none;
}

.proof-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 55px rgba(2,6,23,.10);
  border-color: rgba(220,38,38,.22);
}

.proof-card__head{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.proof-card__avatar{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  font-weight: 950;
  color: #0f172a;
  background: rgba(15,23,42,.06);
  border: 1px solid rgba(15,23,42,.10);
}

.proof-card__name{
  font-weight: 950;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.proof-card__meta{
  margin-top: 2px;
  display:flex;
  align-items:center;
  gap: 6px;
  font-size: 12px;
  color: #64748b;
  font-weight: 750;
}

.proof-card__stars{
  margin: 6px 0 10px;
}
.proof-card__stars i{
  color: #f59e0b;
  margin-right: 2px;
  font-size: 14px;
}

.proof-card__text{
  margin: 0 0 12px;
  color: #475569;
  line-height: 1.7;
  font-size: 14px;
}

.proof-card__tag{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(248,250,252,.9);
  border: 1px solid rgba(15,23,42,.08);
  color: #0f172a;
  font-weight: 850;
  font-size: 12px;
}
.proof-card__tag i{
  color: var(--cta, #dc2626);
}

/* Mobile hint */
.proof__hint{
  display:none;
  margin-top: 12px;
  color: #64748b;
  font-weight: 800;
  gap: 10px;
  align-items:center;
}

/* Responsive: MOBILE horizontal scroll (full width card) */
@media (max-width: 980px){
  .proof__track{
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 8px 14px; /* padding for nice edges */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .proof__track::-webkit-scrollbar{ height: 8px; }
  .proof__track::-webkit-scrollbar-thumb{
    background: rgba(15,23,42,.12);
    border-radius: 999px;
  }

  .proof-card{
    flex: 0 0 calc(100% - 16px); /* FULL WIDTH card with padding */
    scroll-snap-align: start;
  }

  .proof__hint{
    display: inline-flex;
  }
}

/* Tablet small tweaks */
@media (max-width: 520px){
  .proof{
    padding: 60px 0;
  }
  .proof__rating{
    width: 100%;
    justify-content: space-between;
  }
}


/* SECTION 6: BIG CTA */
.bigcta{
  padding: 90px 0;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  border-top: 1px solid rgba(15,23,42,.06);
}

.bigcta__container{
  width: min(1160px, 92%);
  margin: 0 auto;
}

.bigcta__card{
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(15,23,42,.10);
  background:
    radial-gradient(70% 90% at 20% 20%, rgba(220,38,38,.14), transparent 60%),
    radial-gradient(70% 90% at 80% 30%, rgba(15,23,42,.08), transparent 60%),
    rgba(255,255,255,.92);
  box-shadow: 0 24px 70px rgba(2, 6, 23, .10);
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 16px;
  padding: 18px;
}

.bigcta__glow{
  position: absolute;
  inset: -80% -40% auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(220,38,38,.18), transparent 60%);
  transform: rotate(20deg);
  pointer-events: none;
}

.bigcta__content{
  position: relative;
  padding: 18px;
}

.bigcta__badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(15,23,42,.10);
  font-weight: 900;
  color: #0f172a;
}
.bigcta__badge i{ color: var(--cta, #dc2626); }

.bigcta__title{
  margin: 14px 0 10px;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.03em;
  font-weight: 950;
  color: #0f172a;
}

.bigcta__text{
  margin: 0;
  max-width: 720px;
  color: #475569;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 650;
}

.bigcta__buttons{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bigcta__btn{
  height: 48px;
  padding: 0 18px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}

.bigcta__btn-primary{
  background: var(--cta, #dc2626);
  color: #fff;
  box-shadow: 0 16px 40px rgba(220,38,38,.28);
}
.bigcta__btn-primary:hover{
  transform: translateY(-1px);
  background: var(--cta-hover, #b91c1c);
}

.bigcta__btn-ghost{
  background: rgba(255,255,255,.85);
  border-color: rgba(15,23,42,.10);
  color: #0f172a;
  box-shadow: 0 16px 40px rgba(2,6,23,.06);
}
.bigcta__btn-ghost:hover{
  transform: translateY(-1px);
  border-color: rgba(220,38,38,.18);
  box-shadow: 0 18px 46px rgba(2,6,23,.10);
}

.bigcta__meta{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bigcta__pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(15,23,42,.08);
  color: #0f172a;
  font-weight: 900;
  font-size: 13px;
}
.bigcta__pill i{ color: var(--cta, #dc2626); }

/* Right side panel */
.bigcta__side{
  position: relative;
  border-radius: 22px;
  padding: 16px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 18px 50px rgba(2,6,23,.06);
  overflow: hidden;
}

.bigcta__side-top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 12px;
}

.bigcta__side-icon{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(220,38,38,.10);
  border: 1px solid rgba(220,38,38,.22);
  color: var(--cta, #dc2626);
}

.bigcta__side-title{
  font-weight: 950;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.bigcta__side-sub{
  margin-top: 2px;
  font-weight: 750;
  font-size: 12px;
  color: #64748b;
}

.bigcta__list{
  display:flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.bigcta__item{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(248,250,252,.85);
  border: 1px solid rgba(15,23,42,.08);
  font-weight: 900;
  color: #0f172a;
}
.bigcta__item i{
  color: #16a34a; /* green check */
}

.bigcta__note{
  margin-top: 12px;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(15,23,42,.05);
  border: 1px solid rgba(15,23,42,.08);
  color: #475569;
  font-weight: 800;
  font-size: 13px;
}
.bigcta__note i{
  color: #0f172a;
}

/* Responsive */
@media (max-width: 980px){
  .bigcta{
    padding: 70px 0;
  }

  .bigcta__card{
    grid-template-columns: 1fr;
  }

  .bigcta__btn{
    width: 100%;
    justify-content: center;
  }
}



/* FAQ */
.faq{
  padding: 90px 0;
  background: #ffffff;
  border-top: 1px solid rgba(15,23,42,.06);
}

.faq__container{
  width: min(1160px, 92%);
  margin: 0 auto;
}

.faq__top{
  text-align: center;
  margin-bottom: 26px;
}

.faq__title{
  margin: 0 0 10px;
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 950;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.faq__subtitle{
  margin: 0 auto;
  max-width: 760px;
  color: #475569;
  line-height: 1.7;
  font-size: 16px;
}

/* Two columns */
.faq__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.faq-item{
  border-radius: 20px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 40px rgba(2,6,23,.06);
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.faq-item:hover{
  transform: translateY(-1px);
  border-color: rgba(220,38,38,.20);
  box-shadow: 0 18px 55px rgba(2,6,23,.10);
}

.faq-q{
  list-style: none;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px;
  cursor: pointer;
  user-select: none;
  font-weight: 950;
  color: #0f172a;
}

.faq-q::-webkit-details-marker{ display: none; }

.faq-q i{
  color: #64748b;
  transition: transform .18s ease;
}

/* open state */
.faq-item[open]{
  border-color: rgba(220,38,38,.22);
}

.faq-item[open] .faq-q i{
  transform: rotate(180deg);
  color: var(--cta, #dc2626);
}

.faq-a{
  padding: 0 16px 16px;
  color: #475569;
  line-height: 1.75;
  font-weight: 650;
  font-size: 14px;
}

/* CTA bar */
.faq__cta{
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(248,250,252,.85);
  box-shadow: 0 18px 55px rgba(2,6,23,.06);
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.faq__cta-title{
  font-weight: 950;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.faq__cta-sub{
  margin-top: 4px;
  color: #475569;
  font-weight: 650;
  font-size: 14px;
}

.faq__cta-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.faq__btn{
  height: 44px;
  padding: 0 14px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}

.faq__btn-primary{
  background: var(--cta, #dc2626);
  color: #fff;
  box-shadow: 0 14px 32px rgba(220,38,38,.22);
}
.faq__btn-primary:hover{
  transform: translateY(-1px);
  background: var(--cta-hover, #b91c1c);
}

.faq__btn-ghost{
  background: rgba(255,255,255,.85);
  border-color: rgba(15,23,42,.10);
  color: #0f172a;
}
.faq__btn-ghost:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(2,6,23,.10);
  border-color: rgba(220,38,38,.18);
}

/* Responsive */
@media (max-width: 980px){
  .faq{
    padding: 70px 0;
  }
  .faq__grid{
    grid-template-columns: 1fr;
  }
  .faq__btn{
    width: 100%;
    justify-content: center;
  }
}


/* FOOTER */
.footer{
  padding: 70px 0 26px;
  background: #0b1220; /* dark premium */
  color: rgba(255,255,255,.9);
}

.footer__container{
  width: min(1160px, 92%);
  margin: 0 auto;
}

.footer__top{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

/* Brand area */
.footer__logo{
  display:flex;
  align-items:center;
  gap: 10px;
}

.footer__mark{
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
}

.footer__name{
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 16px;
}
.footer__name span{
  color: var(--cta, #dc2626);
  margin-left: 4px;
}

.footer__desc{
  margin: 12px 0 0;
  max-width: 560px;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  font-weight: 650;
  font-size: 14px;
}

.footer__actions{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__btn{
  height: 44px;
  padding: 0 14px;
  border-radius: 16px;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  font-weight: 950;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}

.footer__btn-primary{
  background: var(--cta, #dc2626);
  color: #fff;
  box-shadow: 0 16px 40px rgba(220,38,38,.28);
}
.footer__btn-primary:hover{
  transform: translateY(-1px);
  background: var(--cta-hover, #b91c1c);
}

.footer__btn-ghost{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  color: #fff;
}
.footer__btn-ghost:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.12);
  box-shadow: 0 18px 46px rgba(0,0,0,.30);
}

.footer__trust{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
  font-weight: 900;
  font-size: 12px;
}
.footer__pill i{ color: var(--cta, #dc2626); }

/* Columns */
.footer__cols{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.footer__title{
  font-weight: 950;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: #fff;
}

.footer__link{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 14px;
  color: rgba(255,255,255,.74);
  font-weight: 800;
  transition: background .18s ease, color .18s ease;
}
.footer__link i{
  font-size: 12px;
  color: rgba(255,255,255,.45);
}
.footer__link:hover{
  background: rgba(255,255,255,.06);
  color: #fff;
}

.footer__item{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 14px;
  color: rgba(255,255,255,.74);
  font-weight: 850;
}
.footer__item i{
  color: #16a34a;
}

.footer__contact{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 14px;
  color: rgba(255,255,255,.78);
  font-weight: 850;
  transition: background .18s ease, color .18s ease;
}
.footer__contact:hover{
  background: rgba(255,255,255,.06);
  color: #fff;
}
.footer__contact i{
  color: rgba(255,255,255,.60);
}
.footer__contact--plain:hover{
  background: transparent;
  color: rgba(255,255,255,.78);
}

.footer__note{
  margin-top: 10px;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.72);
  font-weight: 800;
  font-size: 13px;
}
.footer__note i{ color: #fff; }

/* Bottom */
.footer__bottom{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__copy{
  color: rgba(255,255,255,.68);
  font-weight: 750;
  font-size: 13px;
}

.footer__legal{
  display:flex;
  align-items:center;
  gap: 10px;
}
.footer__legal-link{
  color: rgba(255,255,255,.70);
  font-weight: 850;
  font-size: 13px;
}
.footer__legal-link:hover{ color: #fff; }

.footer__dot{ color: rgba(255,255,255,.35); }

/* WhatsApp Floating Button */
.wafloat{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  background: #16a34a;
  color: #fff;
  box-shadow: 0 22px 60px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
  z-index: 999;
  transition: transform .18s ease, box-shadow .18s ease;
}
.wafloat:hover{
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgba(0,0,0,.40);
}
.wafloat i{ font-size: 24px; }

/* Responsive */
@media (max-width: 980px){
  .footer__top{
    grid-template-columns: 1fr;
  }
  .footer__cols{
    grid-template-columns: 1fr;
  }
  .footer__btn{
    width: 100%;
    justify-content: center;
  }
}



/* Language switcher */
.lang{ position: relative; }
.lang__btn{
  height: 42px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.72);
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  color: #0f172a;
}
.lang__menu{
  position:absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 170px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 50px rgba(2,6,23,.14);
  padding: 8px;
  display:none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
}
.lang.is-open .lang__menu{ display:block; }
.lang__item{
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: none;
  background: transparent;
  text-align: left;
  font-weight: 850;
  color: #475569;
}
.lang__item:hover{
  background: rgba(15,23,42,.05);
  color: #0f172a;
}




body.is-rtl{
  font-family: "Tajawal", "Plus Jakarta Sans", system-ui, Arial;
}

body.is-rtl .nav,
body.is-rtl .footer__top,
body.is-rtl .proof__top{
  direction: rtl;
}


:root{
  --font-latin: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  --font-ar: "Cairo", system-ui, Arial;
}

body{
  font-family: var(--font-latin);
}

/* When Arabic is enabled (your JS already adds .is-rtl) */
body.is-rtl{
  font-family: var(--font-ar);
}







/* NAV wrapper must allow overlay */
.nav {
  position: relative;
  z-index: 999;
}

/* The mobile dropdown panel */
.nav__panel{
  display: none;                 /* hidden by default */
  position: absolute;            /* overlay under navbar */
  left: 12px;
  right: 12px;
  top: calc(100% + 10px);
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 18px 55px rgba(2,6,23,.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* show when open */
.nav.is-open .nav__panel{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* links visible */
.nav__panel .nav__link{
  padding: 12px 12px;
  border-radius: 14px;
  font-weight: 900;
  color: #0f172a;                /* IMPORTANT (many times it’s white => invisible) */
  background: rgba(15,23,42,.04);
  border: 1px solid rgba(15,23,42,.06);
}

.nav__panel .nav__link:hover{
  background: rgba(220,38,38,.06);
  border-color: rgba(220,38,38,.18);
}

/* CTA row */
.nav__panel-cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.nav__panel-cta a{
  width: 100%;
  justify-content: center;
}

/* Desktop: hide burger + panel (keep your normal menu) */
@media (min-width: 980px){
  .nav__panel{ display:none !important; }
}





