/* -----------------------------------------
   /assets/css/pages/landing.css
   هدف: لندینگ شیشه‌ای/عمق‌دار + موبایل‌محور + انیمیشن نرم
------------------------------------------ */

.landing {
  padding: 14px 0 28px;
}

/* Wrapper glass */
.landing-shell {
  position: relative;
  border-radius: 22px;
  padding: 18px 16px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  overflow: hidden;
  padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
}

/* Yellow glow blobs (subtle) */


/* Content above glow */
.landing-shell > * { position: relative; z-index: 1; }

/* Hero */
.landing-hero { gap: 10px; padding-top: 6px; }
.landing-kicker { display:flex; gap:10px; align-items:center; flex-wrap: wrap; }
.landing-title { line-height: 1.35; letter-spacing: -0.2px; }
.landing-sub { max-width: 52ch; }

/* CTA buttons */


.landing-cta .btn { flex: 1; min-width: 190px; }

/* Screenshot strip */
.shots {
  margin-top: 16px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 16px 34px rgba(0,0,0,0.06);
}

.shots__grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.shot{
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.02);
  box-shadow: 0 12px 26px rgba(0,0,0,0.06);
}

.shot img{
  width:100%;
  height:auto;
  display:block;
}

.shot__cap{
  padding: 10px 10px 12px;
  font-size: 13px;
  opacity: .85;
}
/* Feature cards */
.feats{
  margin-top: 16px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.feat {
  position: relative;
  padding: 16px 18px;
  border-radius: 20px;

  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;

  box-shadow:
    0 14px 35px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.70);

  transition: transform .25s ease, box-shadow .25s ease;
}
.feat:active {
  transform: translateY(1px);
  box-shadow:
    0 6px 18px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.6);
}
.feat__title{
    font-weight: 800;
    margin-bottom: 4px;
     letter-spacing: -0.2px;
  line-height: 1.4;
  text-shadow:
  0 2px 0 rgba(255,255,255,0.65),
  0 8px 20px rgba(0,0,0,0.06);
}
.feat__title::before {
  content: "●";
  margin-left: 10px;
  font-size: 10px;
  vertical-align: middle;
  color: rgba(255, 200, 60, 0.9);
}

/* اختلاف ارتفاع خیلی نامحسوس */
.feat:nth-child(2) {
  transform: translateY(-2px);
}

.feat:nth-child(3) {
  transform: translateY(-4px);
}
.feat__desc{ opacity: .85; }

/* Brand sign */
.brand-sign{
  margin-top: 16px;
  text-align:center;
  opacity: .85;
  font-size: 13px;
}

.brand-sign strong{
  font-weight: 900;
  letter-spacing: .2px;
}

/* Soft fade-in (2026 vibe, not circus) */
.reveal{
  opacity: 0;
  transform: translateY(10px);
  animation: revealIn .55s ease-out forwards;
}

.reveal.d2{ animation-delay: .08s; }
.reveal.d3{ animation-delay: .16s; }
.reveal.d4{ animation-delay: .24s; }

@keyframes revealIn{
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; animation:none; }
}

/* Responsive: on small screens make screenshot grid 1 column */
@media (max-width: 520px){
  .shots__grid{ grid-template-columns: 1fr; }
}
/* -----------------------------------------
   Card Slider (tap to switch) - Landing
------------------------------------------ */

.cardSlider {
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 16px 34px rgba(0,0,0,0.06);
}

.cardSlider__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cardSlider__viewport {
  position: relative;
  height: 420px; /* برای اسکرین‌شات عمودی */
  margin-top: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.cardSlider__card {
  position: absolute;
  width: min(78%, 340px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(0,0,0,0.02);
  box-shadow: 0 18px 44px rgba(0,0,0,0.10);
  transform-origin: center;
  transition: transform .28s ease, opacity .28s ease, filter .28s ease;
  cursor: pointer;
  user-select: none;
}

.cardSlider__card img{
  width: 100%;
  height: auto;
  display: block;
}

.cardSlider__cap{
  padding: 10px 12px 12px;
  font-size: 13px;
  opacity: .86;
  background: rgba(255,255,255,0.75);
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* حالت‌ها */
.cardSlider__card.is-active{
  z-index: 3;
  transform: translateX(0) scale(1.03);
  opacity: 1;
  filter: none;
}

.cardSlider__card.is-left{
  z-index: 2;
  transform: translateX(-28%) scale(0.92);
  opacity: .70;
  filter: blur(1.5px) saturate(.85);
}

.cardSlider__card.is-right{
  z-index: 2;
  transform: translateX(28%) scale(0.92);
  opacity: .70;
  filter: blur(1.5px) saturate(.85);
}


.cardSlider__card.is-hidden{
  z-index: 1;
  transform: translateX(0) scale(0.88);
  opacity: 0;
  filter: blur(4px);
  pointer-events: none;
}

/* کنترل‌ها */
.cardSlider__nav{
  display: inline-flex;
  gap: 8px;
}

.cardSlider__btn{
  height: 38px;
  min-width: 38px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.70);
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.cardSlider__dots{
  display:flex;
  justify-content:center;
  gap: 8px;
  margin-top: 10px;
}

.cardSlider__dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.14);
  background: rgba(255,255,255,0.65);
}

.cardSlider__dot.is-on{
  background: rgba(255, 214, 98, 0.9);
  border-color: rgba(0,0,0,0.08);
}

/* موبایل کوتاه‌تر */
@media (max-width: 420px){
  .cardSlider__viewport{ height: 380px; }
  .cardSlider__card{ width: min(86%, 340px); }
}

/* ترجیح کاهش حرکت */
@media (prefers-reduced-motion: reduce){
  .cardSlider__card{ transition: none; }
}
/* -----------------------------------------
   Hero polish (top section)
------------------------------------------ */
/*
.landing-hero{
  text-align: center;
  gap: 12px;
  padding-top: 4px;
}


.landing-kicker{
  display:flex;
  justify-content:center;
}

.landing-kicker .muted{
  display:inline-flex;
  align-items:center;
  gap: 8px;

  padding: 8px 12px;
  border-radius: 999px;

  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow:
    0 12px 28px rgba(0,0,0,0.07),
    inset 0 1px 0 rgba(255,255,255,0.65);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  opacity: 1; 
  font-weight: 700;
  font-size: 13px;

  text-shadow: 0 1px 0 rgba(255,255,255,0.55);
}


.landing-kicker .muted::before{
  content:"";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 200, 60, 0.92);
  box-shadow: 0 10px 18px rgba(0,0,0,0.10);
}


.landing-title{
  margin-top: 2px;
  line-height: 1.35;
  letter-spacing: -0.2px;

  text-shadow:
    0 2px 0 rgba(255,255,255,0.65),
    0 16px 40px rgba(0,0,0,0.06);
}


.landing-cta{
  display:flex;
  justify-content:center;
  margin-top: 4px;
}

.landing-cta .btn{
  width: min(520px, 100%);
  box-shadow: 0 14px 34px rgba(0,0,0,0.10);
}
*/
/* -----------------------------------------
   Hero Context Card (Glass / Emotional)
------------------------------------------ */

.hero-visual{
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

/* =========================================
   Hero Card – Adaptive Glass 2026
========================================= */

.hero-card{
  position: relative;
  width: min(100%, 520px);
  border-radius: 26px;
  padding: 18px 20px 20px;

  /* multi-layer surface */
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.92),
      rgba(255,255,255,0.70)
    );

  border: 1px solid rgba(0,0,0,0.06);

  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);

  /* real depth */
  box-shadow:
    0 28px 70px rgba(0,0,0,0.14),
    0 2px 0 rgba(255,255,255,0.6) inset,
    0 -8px 24px rgba(255,214,98,0.18) inset;

  display: grid;
  gap: 14px;

  isolation: isolate;
}
/* ambient light layer */
.hero-card::before{
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(
      40% 30% at 50% 0%,
      rgba(255, 214, 98, 0.35),
      rgba(255, 214, 98, 0.0) 70%
    );
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
}
/* surface noise (ultra subtle) */
.hero-card::after{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      0deg,
      rgba(255,255,255,0.03),
      rgba(255,255,255,0.03)
    );
  mix-blend-mode: overlay;
  opacity: 0.6;
  pointer-events: none;
}


/* header */
.hero-card__header{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-card__title{
  font-weight: 900;
  letter-spacing: -0.2px;
}

.hero-card__badge{
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 214, 98, 0.35);
  border: 1px solid rgba(0,0,0,0.08);
  font-weight: 700;
}

/* rows */
.hero-card__rows{
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.hero-card__row{
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  opacity: 0.85;
}

/* divider */
.hero-card__divider{
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 4px 0;
}

/* total */
.hero-card__total{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.hero-card__total strong{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.3px;
  transition:
    background-color .45s ease,
    color .45s ease,
    letter-spacing .45s ease,
    filter .45s ease;
}

/* hint */
.hero-card__hint{
  font-size: 13px;
  opacity: 0.7;
  text-align: center;
  margin-top: 2px;
}
/* -----------------------------------------
   Hero subtle motion (emotional, calm)
------------------------------------------ */
.hero-card{
  position: relative;
  overflow: hidden;
}

.hero-card::after{
  content: "";
  position: absolute;
  inset: -40% -20%;
  background:
    radial-gradient(
      60% 40% at 50% 0%,
      rgba(255, 214, 98, 0.18),
      rgba(255, 214, 98, 0.0) 70%
    );
  opacity: 0.0;
  animation: heroLightBreath 6.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroLightBreath{
  0%{
    opacity: 0.0;
    transform: translateY(-8%);
  }
  50%{
    opacity: 0.45;
    transform: translateY(0%);
  }
  100%{
    opacity: 0.0;
    transform: translateY(-8%);
  }
}


/* -----------------------------------------
   Plans (Free vs Pro) - Landing
------------------------------------------ */

.plans{
  margin-top: 16px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 16px 34px rgba(0,0,0,0.06);
}

.plans__head{
  text-align: center;
  margin-bottom: 12px;
}

.plans__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.plan{
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow:
    0 14px 30px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.plan__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.plan__title{
  font-weight: 900;
  letter-spacing: -0.2px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.55);
}

.plan__list{
  margin: 0;
  padding: 0 18px 0 0;
  list-style: disc;
  display: grid;
  gap: 8px;
  opacity: .9;
}

.plan__note{
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 214, 98, 0.22);
  border: 1px solid rgba(0,0,0,0.06);
  font-size: 13px;
  line-height: 1.55;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}

/* Mobile */
@media (max-width: 520px){
  .plans__grid{ grid-template-columns: 1fr; }
}
/* -----------------------------------------
   Sticky CTA (Landing - 2026)
------------------------------------------ */

.stickyCta{
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 50;

  padding: 10px;
  border-radius: 26px;

  /* glass that shows even on white */
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0,0,0,0.08);

  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);

  box-shadow:
    0 20px 55px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.85),
    inset 0 -10px 30px rgba(255, 214, 98, 0.10);

  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.stickyCta.is-show{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.stickyCta__btn{
  display:flex !important;
  align-items:center;
  justify-content:center;
  text-align:center;

  width:100%;
  padding: 12px 14px;
  border-radius: 18px;

  /* liquid yellow */
  background: rgba(230, 184, 0, 0.88) !important; /* زرد ولی کمی شفاف */
  border: 1px solid rgba(0,0,0,0.08) !important;

  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);

  /* همون لبه‌ی سفید رو نگه می‌داریم ولی کنترل‌شده */
  box-shadow:
    0 14px 34px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.70),
    inset 0 -10px 26px rgba(0,0,0,0.08) !important;

  outline: none !important;
  background-clip: padding-box;
}

.stickyCta__btn:focus,
.stickyCta__btn:focus-visible{
  outline: none !important;
  box-shadow: 0 12px 30px rgba(0,0,0,0.14) !important;
}

/* motion-safe */
@media (prefers-reduced-motion: reduce){
  .stickyCta{
    transition: none;
    transform: none;
  }
}
/* -----------------------------------------
   Hero v2 (structure-first, calm glass)
------------------------------------------ */
/* این تغییر بین این دو خط اعمال شده */

.hero-shell{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;

  padding: 16px 14px 18px;
  border-radius: 20px;

  background: rgba(255,255,255,0.60);
  border: 1px solid rgba(0,0,0,0.05);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
}

.hero-kicker .muted{
  font-weight: 700;
  font-size: 13px;
}

.hero-title{
  text-align: center;
  line-height: 1.35;
  letter-spacing: -0.2px;
}

.hero-sub{
  text-align: center;
  max-width: 46ch;
  opacity: .85;
  font-size: 14px;
}

.hero-tagline{
  margin-top: 2px;
  font-weight: 800;
  opacity: .95;
}

.hero-cta{
  margin-top: 8px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-cta .btn{
  width: min(520px, 100%);
}

/* پایان تغییر */
/* -----------------------------------------
   Hero Visual Mock (glass, abstract)
------------------------------------------ */
/* این تغییر بین این دو خط اعمال شده */

.hero-visual{
  margin-top: 14px;
  width: 100%;
  display: flex;
  justify-content: center;
}



/* -----------------------------------------
   Landing Context Section (after Hero)
------------------------------------------ */
/* این تغییر بین این دو خط اعمال شده */

.landing-context{
  margin-top: 18px;
  padding: 0 10px;
  text-align: center;
}

.landing-context .h2{
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 6px;
}

.landing-context p{
  max-width: 48ch;
  margin: 0 auto 12px;
  line-height: 1.6;
}

.context-list{
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 44ch;

  display: grid;
  gap: 8px;
}

.context-list li{
  position: relative;
  padding-right: 14px;
  line-height: 1.6;
  opacity: .9;
}

.context-list li::before{
  content: "–";
  position: absolute;
  right: 0;
  opacity: .6;
}

/* -----------------------------------------
   Concept Mock – semantic, not empty
------------------------------------------ */

.conceptMock{
  margin-top: 8px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(0,0,0,0.04);

  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* lines */
.cm-line{
  height: 10px;
  border-radius: 6px;
  background: rgba(0,0,0,0.12);
}

.cm-line.short{ width: 60%; }

.cm-line.highlight{
  background: rgba(230,184,0,0.65);
}

/* flow */
.conceptMock--flow{
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cm-arrow{
  font-weight: 900;
  opacity: .6;
}

/* result */
.conceptMock--result{
  align-items: center;
  justify-content: center;
}

.cm-result{
  width: 70%;
  height: 28px;
  border-radius: 10px;
  background: rgba(230,184,0,0.75);
}
.conceptSlider{
  margin-bottom: 22px;
}
.hero-card__row span:last-child,
.hero-card__total strong{
  transition:
    color .35s ease,
    background-color .35s ease,
    box-shadow .35s ease;
}
/* -----------------------------------------
   Hero live update highlight
------------------------------------------ */

.hero-card__row.is-updated{
  background: linear-gradient(
    90deg,
    rgba(255,214,98,0.0),
    rgba(255,214,98,0.22),
    rgba(255,214,98,0.0)
  );
  border-radius: 10px;
}

.hero-card__row.is-updated span:last-child{
  color: rgba(140, 110, 0, 0.95);
}

.hero-card__total strong{
  position: relative;
  padding: 2px 8px; /* همیشه ثابت */
  border-radius: 8px;
  background: rgba(255,214,98,0.0); /* پیش‌فرض نامرئی */

  transition:
    background-color .45s ease,
    color .45s ease,
    letter-spacing .45s ease;
}

.hero-card__total strong.is-updated{
  background: rgba(255,214,98,0.22);
  color: rgba(120, 95, 0, 0.95);
  letter-spacing: 0.3px;
  filter: brightness(1.05);
}

/* =====================================================
   Landing Redesign – 2026 (structure-first)
===================================================== */
.landing{
  --landing-gold: #e2b400;
  --landing-gold-deep: #b98300;
  --landing-gold-soft: rgba(226, 180, 0, 0.18);
  --landing-glass: rgba(255,255,255,0.70);
  --landing-border: rgba(0,0,0,0.06);
  --landing-shadow: 0 20px 50px rgba(0,0,0,0.10);
}

.landing-shell{
  background: rgba(255,255,255,0.46);
  border: 1px solid var(--landing-border);
  box-shadow: var(--landing-shadow);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  position: relative;
}
.landing-shell::before{
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 60%;
  background:
    radial-gradient(320px 220px at 15% 40%, rgba(255,255,255,0.75), transparent 70%),
    radial-gradient(380px 260px at 90% 20%, rgba(226,180,0,0.22), transparent 75%);
  pointer-events: none;
  opacity: .85;
}
.landing-shell::after{
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 0);
  background-size: 3px 3px;
  opacity: .08;
  pointer-events: none;
}
.landing-shell > *{ position: relative; z-index: 1; }

.pill--soft{
  background: rgba(255,255,255,0.8);
  border-color: rgba(0,0,0,0.08);
  font-weight: 700;
}

/* Hero */
.landing-hero{
  padding: 18px;
  border-radius: 22px;
  background: var(--landing-glass);
  border: 1px solid var(--landing-border);
  box-shadow: 0 16px 38px rgba(0,0,0,0.08);
}
.hero-grid{
  display: grid;
  gap: 18px;
  align-items: center;
}
.hero-copy{
  display: grid;
  gap: 10px;
}
.hero-title{
  text-align: right;
  line-height: 1.35;
  font-size: clamp(22px, 2.8vw, 32px);
  letter-spacing: -0.2px;
}
.hero-sub{
  text-align: right;
  max-width: 48ch;
  opacity: .85;
  font-size: 14px;
}
.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-actions .btn{
  height: 48px;
  border-radius: 16px;
}
.hero-ghost{
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--landing-border);
}
.hero-meta{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
}
.hero-meta__sep{ opacity: .45; }

.hero-preview{
  display: grid;
  gap: 10px;
  justify-items: center;
}
.hero-mini{
  width: min(100%, 420px);
  border-radius: 16px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--landing-border);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-mini__label{ font-size: 12px; opacity: .7; }
.hero-mini__value{ font-weight: 800; color: var(--landing-gold-deep); }

.hero-trust{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.hero-trust__item{
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--landing-border);
  border-radius: 14px;
  padding: 10px;
  display: grid;
  gap: 4px;
  text-align: center;
}
.hero-trust__num{
  font-size: 18px;
  font-weight: 900;
  color: var(--landing-gold-deep);
}
.hero-trust__label{
  font-size: 12px;
  opacity: .75;
}

.section-head{
  text-align: center;
  margin-bottom: 12px;
}

/* Flow */
.landing-flow{
  margin-top: 18px;
  padding: 16px;
  border-radius: 22px;
  background: var(--landing-glass);
  border: 1px solid var(--landing-border);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}
.flow-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.flow-card{
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--landing-border);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.06);
  display: grid;
  gap: 8px;
}
.flow-number{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--landing-gold-soft);
  border: 1px solid rgba(0,0,0,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--landing-gold-deep);
}
.flow-title{ font-weight: 800; }

/* Proof */
.landing-proof{
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 12px;
}
.proof-card,
.proof-aside{
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--landing-border);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}
.proof-list{
  margin-top: 10px;
  display: grid;
  gap: 8px;
}
.proof-row{
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.proof-divider{
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 4px 0;
}
.proof-total{
  display: flex;
  justify-content: space-between;
  font-weight: 800;
}
.proof-total strong{
  color: var(--landing-gold-deep);
}
.proof-kpi{
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--landing-border);
  border-radius: 16px;
  padding: 12px;
  display: grid;
  gap: 4px;
  margin-bottom: 8px;
}
.proof-kpi__label{ font-size: 12px; opacity: .7; }
.proof-kpi__value{ font-weight: 900; color: var(--landing-gold-deep); }
.proof-note{ font-size: 12px; }

/* Plans */
.plans{
  margin-top: 18px;
  background: var(--landing-glass);
  border: 1px solid var(--landing-border);
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}
.plan{
  background: rgba(255,255,255,0.82);
}
.plan--pro{
  border-color: rgba(226,180,0,0.35);
  box-shadow: 0 18px 38px rgba(0,0,0,0.10);
}

/* FAQ */
.landing-faq{
  margin-top: 18px;
  padding: 16px;
  background: var(--landing-glass);
  border: 1px solid var(--landing-border);
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}
.faq-list{
  display: grid;
  gap: 10px;
}
.faq-list details{
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--landing-border);
  border-radius: 16px;
  padding: 10px 12px;
}
.faq-list summary{
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}
.faq-list summary::-webkit-details-marker{ display: none; }
.faq-list details[open] summary{ color: var(--landing-gold-deep); }
.faq-list details p{ margin-top: 8px; line-height: 1.7; }

@media (min-width: 900px){
  .hero-grid{ grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
}
@media (max-width: 820px){
  .hero-trust{ grid-template-columns: 1fr; }
  .flow-grid{ grid-template-columns: 1fr; }
  .landing-proof{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .hero-actions .btn{ width: 100%; }
}
