/* ============================================================
   Home V2 – Landing Page CSS
   Mobile-first · RTL · Cairo font
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --hv2-gold:    #c9a24d;
  --hv2-navy:    #0b1f33;
  --hv2-navy-lt: #132a44;
  --hv2-bg:      #f5f6f8;
  --hv2-bg-alt:  #eef0f4;
  --hv2-white:   #ffffff;
  --hv2-text:    #1a2535;
  --hv2-muted:   #5a6a7e;
  --hv2-border:  #d8dde5;
  --hv2-r:       12px;
  --hv2-r-sm:    8px;
  --hv2-gap:     1.25rem;
  --hv2-max:     1120px;
  --hv2-wa:      #25D366;
  --hv2-wa-dk:   #1da355;
}

/* ── Reset scoped to .hv2 ──────────────────────────────────── */
.hv2, .hv2 * {
  box-sizing: border-box;
}
.hv2 section {
  padding-block: 3rem;
}

/* ── Layout wrapper ────────────────────────────────────────── */
.hv2-wrap {
  width: min(100%, var(--hv2-max));
  margin-inline: auto;
  padding-inline: 1rem;
}

/* ── Section headings ──────────────────────────────────────── */
.hv2-sec-head {
  text-align: center;
  margin-bottom: 2rem;
}
.hv2-sec-title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--hv2-navy);
  margin: 0 0 .5rem;
  line-height: 1.3;
}
.hv2-sec-sub {
  font-size: .95rem;
  color: var(--hv2-muted);
  margin: 0;
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ── Shared buttons ────────────────────────────────────────── */
.hv2-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.4rem;
  border-radius: var(--hv2-r-sm);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .15s, transform .15s;
  white-space: nowrap;
}
.hv2-btn:hover { opacity: .9; transform: translateY(-1px); }
.hv2-btn:active { transform: none; }
.hv2-btn svg { flex-shrink: 0; }

.hv2-btn--wa {
  background: var(--hv2-wa);
  color: #fff;
}
.hv2-btn--wa:hover { background: var(--hv2-wa-dk); }

.hv2-btn--call {
  background: var(--hv2-navy);
  color: #fff;
}
.hv2-btn--call:hover { background: var(--hv2-navy-lt); }

.hv2-btn--outline {
  background: transparent;
  color: var(--hv2-navy);
  border: 2px solid var(--hv2-navy);
}
.hv2-btn--outline:hover { background: var(--hv2-navy); color: #fff; }

.hv2-btn--ghost {
  background: transparent;
  color: var(--hv2-muted);
  border: 1.5px solid var(--hv2-border);
}
.hv2-btn--ghost:hover { border-color: var(--hv2-navy); color: var(--hv2-navy); }

.hv2-btn--lg {
  padding: .9rem 1.8rem;
  font-size: 1.05rem;
}

/* ── CTA row (centered) ────────────────────────────────────── */
.hv2-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* ===========================================================
   1. HERO
   =========================================================== */
.hv2-hero {
  background: var(--hv2-navy);
  color: #fff;
  padding-block: 2.5rem;
}
.hv2-hero__grid {
  width: min(100%, var(--hv2-max));
  margin-inline: auto;
  padding-inline: 1rem;
  display: grid;
  gap: 2rem;
}

/* Content */
.hv2-hero__h1 {
  font-size: clamp(1.55rem, 5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 .75rem;
  color: #fff;
}
.hv2-hero__loc {
  display: block;
  color: var(--hv2-gold);
  font-size: .9em;
}
.hv2-hero__sub {
  font-size: clamp(.88rem, 2.5vw, 1rem);
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  margin: 0 0 1.5rem;
}
.hv2-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.hv2-hero__trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .9rem;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
}
.hv2-hero__trust li {
  display: flex;
  align-items: center;
  gap: .3rem;
}
.hv2-hero__trust svg { color: var(--hv2-gold); }

/* Image */
.hv2-hero__visual { display: none; }   /* hidden on mobile by default */
.hv2-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--hv2-r);
  display: block;
}

/* Desktop split */
@media (min-width: 768px) {
  .hv2-hero {
    padding-block: 3.5rem;
  }
  .hv2-hero__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .hv2-hero__visual {
    display: block;
    height: 420px;
  }
}

/* ===========================================================
   2. QUOTE BY PHOTOS
   =========================================================== */
.hv2-qp {
  background: var(--hv2-bg);
}
.hv2-qp__steps {
  display: grid;
  gap: 1.25rem;
  list-style: none;
  margin: 0 0 0;
  padding: 0;
  counter-reset: step;
}
.hv2-qp__step {
  background: var(--hv2-white);
  border-radius: var(--hv2-r);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  row-gap: .15rem;
  align-items: start;
  position: relative;
}
.hv2-qp__num {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--hv2-navy);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hv2-qp__icon { display: none; }
.hv2-qp__label {
  font-size: .95rem;
  font-weight: 700;
  color: var(--hv2-navy);
  margin: 0;
}
.hv2-qp__desc {
  font-size: .85rem;
  color: var(--hv2-muted);
  margin: 0;
}

@media (min-width: 640px) {
  .hv2-qp__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .hv2-qp__steps {
    grid-template-columns: repeat(4, 1fr);
  }
  .hv2-qp__step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
    text-align: center;
    align-items: center;
  }
  .hv2-qp__icon { display: block; color: var(--hv2-gold); }
  .hv2-qp__num {
    width: 1.8rem;
    height: 1.8rem;
    font-size: .75rem;
  }
  .hv2-qp__label,
  .hv2-qp__desc { text-align: center; }
}

/* ===========================================================
   3. SERVICES
   =========================================================== */
.hv2-srv {
  background: var(--hv2-white);
}
.hv2-srv__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.hv2-srv__card {
  background: var(--hv2-bg);
  border-radius: var(--hv2-r);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  border: 1px solid var(--hv2-border);
  transition: box-shadow .2s;
}
.hv2-srv__card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.hv2-srv__icon { color: var(--hv2-gold); }
.hv2-srv__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hv2-navy);
  margin: 0;
}
.hv2-srv__desc {
  font-size: .875rem;
  color: var(--hv2-muted);
  margin: 0;
  flex: 1;
  line-height: 1.55;
}
.hv2-srv__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .5rem;
  gap: .5rem;
}
.hv2-srv__link {
  font-size: .8rem;
  font-weight: 600;
  color: var(--hv2-navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .25rem;
}
.hv2-srv__link:hover { color: var(--hv2-gold); }
.hv2-srv__wa {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--hv2-wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s;
}
.hv2-srv__wa:hover { background: var(--hv2-wa-dk); }

/* ===========================================================
   4. WHY US  — Dark Premium · Background Image · Glass Cards
   =========================================================== */
.hv2-why {
  position: relative;
  background-color: var(--hv2-navy);        /* fallback if image missing */
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: #fff;
  overflow: hidden;
}

/* Dark overlay 86% — preserves readability */
.hv2-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 21, 36, .92) 0%,
    rgba(11, 31, 51, .86) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Content above overlay */
.hv2-why .hv2-wrap { position: relative; z-index: 1; }

/* Gold separators */
.hv2-why__sep-top,
.hv2-why__sep-bot {
  position: relative;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,77,.45), transparent);
}
.hv2-why__sep-top { margin-bottom: 0; }
.hv2-why__sep-bot { margin-top: 0; }

/* Eyebrow label */
.hv2-why__eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--hv2-gold);
  margin: 0 0 .4rem;
  opacity: .9;
}

/* Section title override */
.hv2-why .hv2-sec-title { color: #fff; }
.hv2-why .hv2-sec-head  { margin-bottom: 2rem; }

/* Cards grid */
.hv2-why__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

/* Glass card */
.hv2-why__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  transition:
    border-color var(--ar-dur-base, 280ms) ease,
    background   var(--ar-dur-base, 280ms) ease,
    transform    var(--ar-dur-base, 280ms) cubic-bezier(.34,1.56,.64,1),
    box-shadow   var(--ar-dur-base, 280ms) ease;
}
.hv2-why__card:hover {
  border-color: rgba(201,162,77,.35);
  background: rgba(255,255,255,.09);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.35);
}

/* Gold circle icon container */
.hv2-why__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201,162,77,.14);
  border: 1px solid rgba(201,162,77,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--ar-dur-base, 280ms) ease,
              border-color var(--ar-dur-base, 280ms) ease;
}
.hv2-why__card:hover .hv2-why__icon-wrap {
  background: rgba(201,162,77,.22);
  border-color: rgba(201,162,77,.5);
}

.hv2-why__icon {
  color: var(--hv2-gold);
  display: flex;
  transition: transform var(--ar-dur-base, 280ms) cubic-bezier(.34,1.56,.64,1);
}
.hv2-why__card:hover .hv2-why__icon {
  transform: translateY(-2px) scale(1.1);
}

.hv2-why__title {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}
.hv2-why__desc {
  font-size: .84rem;
  color: rgba(255,255,255,.70);
  margin: 0;
  line-height: 1.6;
}

/* ===========================================================
   5. PROCESS
   =========================================================== */
.hv2-proc {
  background: var(--hv2-bg-alt);
}
.hv2-proc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  counter-reset: proc;
}
.hv2-proc__step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--hv2-white);
  border-radius: var(--hv2-r);
  padding: 1.25rem;
}
.hv2-proc__num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--hv2-gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2rem;
  text-align: center;
}
.hv2-proc__body { flex: 1; }
.hv2-proc__title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--hv2-navy);
  margin: 0 0 .25rem;
}
.hv2-proc__desc {
  font-size: .87rem;
  color: var(--hv2-muted);
  margin: 0;
  line-height: 1.55;
}

@media (min-width: 640px) {
  .hv2-proc__list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .hv2-proc__list { grid-template-columns: repeat(4, 1fr); }
}

/* ===========================================================
   6. AREAS
   =========================================================== */
.hv2-areas {
  background: var(--hv2-white);
}
.hv2-areas__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.hv2-areas__card {
  background: var(--hv2-bg);
  border-radius: var(--hv2-r);
  padding: 1.25rem;
  border: 1px solid var(--hv2-border);
  display: flex;
  flex-direction: column;
  gap: .4rem;
  transition: box-shadow .2s;
}
.hv2-areas__card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.hv2-areas__pin { color: var(--hv2-gold); }
.hv2-areas__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hv2-navy);
  margin: 0;
}
.hv2-areas__desc {
  font-size: .85rem;
  color: var(--hv2-muted);
  margin: 0;
  flex: 1;
  line-height: 1.55;
}
.hv2-areas__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-top: .5rem;
  flex-wrap: wrap;
}
.hv2-areas__link {
  font-size: .8rem;
  font-weight: 600;
  color: var(--hv2-navy);
  text-decoration: none;
}
.hv2-areas__link:hover { color: var(--hv2-gold); }
.hv2-areas__wa {
  font-size: .8rem;
  font-weight: 600;
  color: var(--hv2-wa-dk);
  text-decoration: none;
  white-space: nowrap;
}
.hv2-areas__wa:hover { text-decoration: underline; }

/* ===========================================================
   7. PACKAGES
   =========================================================== */
.hv2-pkg {
  background: var(--hv2-bg-alt);
}
.hv2-pkg__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.hv2-pkg__card {
  background: var(--hv2-white);
  border-radius: var(--hv2-r);
  padding: 1.5rem;
  border: 2px solid var(--hv2-border);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  position: relative;
  transition: box-shadow .2s;
}
.hv2-pkg__card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); }
.hv2-pkg__card--featured {
  border-color: var(--hv2-gold);
}
.hv2-pkg__badge {
  position: absolute;
  top: -12px;
  inset-inline-start: 1.25rem;
  background: var(--hv2-gold);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 4px;
}
.hv2-pkg__top {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hv2-pkg__icon { color: var(--hv2-gold); }
.hv2-pkg__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hv2-navy);
  margin: 0;
}
.hv2-pkg__sub {
  font-size: .78rem;
  color: var(--hv2-muted);
  margin: 0;
}
.hv2-pkg__desc {
  font-size: .88rem;
  color: var(--hv2-muted);
  margin: 0;
  line-height: 1.55;
}
.hv2-pkg__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.hv2-pkg__list li {
  font-size: .875rem;
  color: var(--hv2-text);
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  line-height: 1.4;
}
.hv2-pkg__list svg { color: var(--hv2-gold); flex-shrink: 0; margin-top: 2px; }
.hv2-pkg__hint {
  font-size: .8rem;
  color: var(--hv2-muted);
  background: var(--hv2-bg);
  padding: .4rem .75rem;
  border-radius: var(--hv2-r-sm);
  margin: 0;
}
.hv2-pkg__ctas {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: auto;
}
.hv2-pkg__ctas .hv2-btn {
  width: 100%;
  justify-content: center;
}
.hv2-pkg__micro {
  text-align: center;
  font-size: .8rem;
  color: var(--hv2-muted);
  margin-top: 1.5rem;
}

/* ===========================================================
   8. REVIEWS
   =========================================================== */
.hv2-rev {
  background: var(--hv2-white);
}
.hv2-rev__label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--hv2-gold);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .35rem;
}
.hv2-rev__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.hv2-rev__card {
  background: var(--hv2-bg);
  border-radius: var(--hv2-r);
  padding: 1.5rem;
  border: 1px solid var(--hv2-border);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.hv2-rev__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hv2-rev__quote { color: var(--hv2-gold); opacity: .5; }
.hv2-rev__stars {
  display: flex;
  gap: 2px;
  color: var(--hv2-gold);
}
.hv2-rev__text {
  font-size: .9rem;
  color: var(--hv2-text);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.hv2-rev__who {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--hv2-muted);
}
.hv2-rev__name { font-weight: 700; color: var(--hv2-navy); }

/* ===========================================================
   9. FAQ
   =========================================================== */
.hv2-faq {
  background: var(--hv2-bg);
}
.hv2-faq__inner {
  max-width: 760px;
}
.hv2-faq__list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.hv2-faq__item {
  background: var(--hv2-white);
  border-radius: var(--hv2-r-sm);
  border: 1px solid var(--hv2-border);
  overflow: hidden;
}
.hv2-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--hv2-navy);
  list-style: none;
  gap: .5rem;
  user-select: none;
}
.hv2-faq__q::-webkit-details-marker { display: none; }
.hv2-faq__q::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--hv2-muted);
  flex-shrink: 0;
  transition: transform .2s;
}
.hv2-faq__item[open] .hv2-faq__q::after {
  content: '−';
}
.hv2-faq__a {
  padding: 0 1.25rem 1rem;
}
.hv2-faq__a p {
  font-size: .9rem;
  color: var(--hv2-muted);
  margin: 0;
  line-height: 1.65;
}
.hv2-faq__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  margin-top: 2rem;
  text-align: center;
}
.hv2-faq__cta p {
  font-size: .9rem;
  color: var(--hv2-muted);
  margin: 0;
}

/* ===========================================================
   1b. HERO PREMIUM  (.hero-p)
   Seamlessly continues the dark header. Mobile-first.
   =========================================================== */

/* ── Section shell ─────────────────────────────────────────── */
.hero-p {
  position: relative;
  background: #071524;           /* --sh-navy-deep */
  color: #fff;
  overflow: hidden;
  padding-block: 0;             /* inner handles its own padding */
}

/* ── Decorative background ──────────────────────────────────── */
.hero-p__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-p__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: .4;
}
.hero-p__orb--1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(201,162,77,.22) 0%, transparent 70%);
  inset-inline-end: -120px;
  top: -60px;
}
.hero-p__orb--2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(11,31,51,.9) 0%, transparent 70%);
  inset-inline-start: -80px;
  bottom: 0;
}
.hero-p__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,.6) 30%, rgba(0,0,0,.6) 70%, transparent);
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,.6) 30%, rgba(0,0,0,.6) 70%, transparent);
}

/* ── Inner grid ──────────────────────────────────────────────── */
.hero-p__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  margin-inline: auto;
  padding-inline: 1rem;
  padding-block: 3rem 2.5rem;
  display: grid;
  gap: 2rem;
}

/* ── Content column ──────────────────────────────────────────── */
.hero-p__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Eyebrow badge */
.hero-p__badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(201,162,77,.12);
  border: 1px solid rgba(201,162,77,.3);
  color: #c9a24d;
  font-size: .8rem;
  font-weight: 600;
  padding: .35rem .75rem;
  border-radius: 99px;
  margin-bottom: 1rem;
  width: fit-content;
}
.hero-p__badge svg { opacity: .85; }

/* H1 */
.hero-p__h1 {
  font-size: clamp(1.6rem, 6vw, 2.75rem);
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 .3rem;
  letter-spacing: -.01em;
}
.hero-p__em {
  display: block;
  font-style: normal;
  color: #c9a24d;
  font-size: .75em;
  font-weight: 700;
  margin-top: .2em;
}

/* Subtitle */
.hero-p__sub {
  font-size: clamp(.88rem, 2.5vw, 1rem);
  line-height: 1.75;
  color: rgba(255,255,255,.78);
  margin: .75rem 0 1.5rem;
  max-width: 540px;
}

/* CTA row */
.hero-p__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.75rem;
}

/* Buttons */
.hero-p__btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.4rem;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform var(--ar-dur-fast, 140ms) cubic-bezier(.34,1.56,.64,1),
    box-shadow var(--ar-dur-fast, 140ms) ease;
  white-space: nowrap;
}
.hero-p__btn:hover  { transform: translateY(-2px); }
.hero-p__btn:active { transform: none; }
.hero-p__btn svg { flex-shrink: 0; }

/* WA variant */
.hero-p__btn--wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 3px 14px rgba(37,211,102,.22);
}
.hero-p__btn--wa:hover {
  background: #1da355;
  box-shadow: 0 6px 24px rgba(37,211,102,.38);
}

/* Call variant */
.hero-p__btn--call {
  background: #c9a24d;
  color: #071524;
  font-weight: 800;
  box-shadow: 0 3px 14px rgba(201,162,77,.3);
}
.hero-p__btn--call:hover {
  background: #ddb96a;
  box-shadow: 0 6px 24px rgba(201,162,77,.5);
}

/* Trust bar */
.hero-p__trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .9rem;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
}
.hero-p__trust-item {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.hero-p__trust-icon {
  display: flex;
  color: #c9a24d;
  opacity: .9;
  flex-shrink: 0;
}

/* ── Visual column — visible on all screen sizes ────────────── */
.hero-p__visual {
  display: block;
  position: relative;
  order: -1;          /* image above content on mobile */
}

/* ── Desktop: side-by-side split ────────────────────────────── */
@media (min-width: 768px) {
  .hero-p__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-block: 4rem 3rem;
    gap: 3rem;
  }
  .hero-p__visual {
    order: 0;         /* restore natural RTL order (visual on left) */
  }
}

/* ── Image frame ─────────────────────────────────────────────── */
.hero-p__frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(201,162,77,.18),
    0 24px 64px rgba(0,0,0,.5);
}
.hero-p__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 14px;
}

/* Gold corner accents */
.hero-p__corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: #c9a24d;
  border-style: solid;
  border-width: 0;
}
.hero-p__corner--tr {
  top: 10px;
  inset-inline-end: 10px;
  border-top-width: 2px;
  border-inline-end-width: 2px;
  border-top-right-radius: 4px;
}
.hero-p__corner--bl {
  bottom: 10px;
  inset-inline-start: 10px;
  border-bottom-width: 2px;
  border-inline-start-width: 2px;
  border-bottom-left-radius: 4px;
}

/* ── Floating info badges ────────────────────────────────────── */
.hero-p__badge-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(7,21,36,.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,162,77,.25);
  border-radius: 10px;
  padding: .6rem .9rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.hero-p__badge-float--top {
  top: -14px;
  inset-inline-start: -20px;
}
.hero-p__badge-float--bot {
  bottom: -14px;
  inset-inline-end: -20px;
}
.hero-p__bf-icon {
  display: flex;
  color: #c9a24d;
  flex-shrink: 0;
}
.hero-p__bf-title {
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}
.hero-p__bf-sub {
  font-size: .7rem;
  color: rgba(255,255,255,.6);
  margin: 0;
  white-space: nowrap;
}

/* ── Wider desktop refinements ───────────────────────────────── */
@media (min-width: 1080px) {
  .hero-p__inner {
    padding-block: 5rem 3.5rem;
    gap: 4rem;
  }
  .hero-p__h1 {
    font-size: 2.85rem;
  }
}

/* ===========================================================
   10. FINAL CTA  — Dark Background Image
   =========================================================== */
.hv2-fcta {
  position: relative;
  background-color: var(--hv2-navy);       /* fallback */
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Overlay 88% */
.hv2-fcta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(7, 21, 36, .92) 0%,
    rgba(11, 31, 51, .88) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.hv2-fcta .hv2-wrap { position: relative; z-index: 1; }

.hv2-fcta__inner {
  max-width: 640px;
}
.hv2-fcta__title {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 .75rem;
  letter-spacing: -.01em;
}
.hv2-fcta__sub {
  font-size: .95rem;
  color: rgba(255,255,255,.78);
  margin: 0 0 1.75rem;
  line-height: 1.65;
}
.hv2-fcta__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
}

/* ===========================================================
   Reviews — Avatar initials
   =========================================================== */
.hv2-rev__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--hv2-navy);
  color: var(--hv2-gold);
  font-size: .85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(201,162,77,.3);
}
.hv2-rev__who {
  display: flex;
  align-items: center;
  gap: .55rem;
}
.hv2-rev__who > div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hv2-rev__area {
  font-size: .75rem;
  color: var(--hv2-muted);
}
