/* Utilities */
.bg-app{ background: var(--c-bg); }
.text-app{ color: var(--c-text); }
.text-muted{ color: var(--c-muted)!important; }
.link-soft{ color: var(--c-primary); text-decoration: none; }
.link-soft:hover{ color: var(--c-warm); text-decoration: underline; }

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto;
  padding:10px 14px; border-radius:999px;
  background: rgba(255,255,255,.12);
  border: 1px solid var(--c-stroke);
  color: var(--c-text);
  z-index: 9999;
}

/* Background decor */
.orb{
  position: fixed;
  width: 520px; height: 520px;
  filter: blur(40px);
  opacity: .28;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
}
.orb--a{
  left: -120px; top: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(124,255,177,.85), rgba(106,167,255,.2), transparent 60%);
}
.orb--b{
  right: -140px; bottom: -160px;
  background: radial-gradient(circle at 60% 40%, rgba(255,110,199,.6), rgba(255,204,102,.18), transparent 62%);
}
.grid-haze{
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 20%, rgba(0,0,0,.9), transparent 70%);
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}

/* Navbar */
.nav-glass{
  background: linear-gradient(180deg, rgba(16,26,51,.82), rgba(16,26,51,.55));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-stroke-2);
  position: relative;
  z-index: 5;
}
.navbar-brand .brand-sigil{
  width: 22px; height: 22px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 30%, rgba(124,255,177,.95), rgba(106,167,255,.55)),
    linear-gradient(135deg, rgba(255,110,199,.45), rgba(255,204,102,.22));
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
}
.badge-soft{
  background: rgba(124,255,177,.12);
  border: 1px solid rgba(124,255,177,.22);
  color: var(--c-text);
}
.badge-outline{
  background: transparent;
  border: 1px solid var(--c-stroke);
  color: var(--c-text);
}

/* Buttons */
.btn-primary{
  background: linear-gradient(135deg, rgba(124,255,177,.95), rgba(106,167,255,.85));
  border: 0;
  color: #07101b;
  box-shadow: var(--shadow-1);
}
.btn-primary:hover{
  filter: brightness(1.02);
  color: #07101b;
}
.btn-outline-light{
  border-color: rgba(255,255,255,.22);
  color: var(--c-text);
}
.btn-outline-light:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.28);
  color: var(--c-text);
}

/* Sections */
.section-pad{ padding: 72px 0; position: relative; z-index: 1; }
.section-slab{
  background: linear-gradient(180deg, rgba(16,26,51,.58), rgba(16,26,51,.24));
  border-top: 1px solid var(--c-stroke-2);
  border-bottom: 1px solid var(--c-stroke-2);
}
.section-head{ max-width: 860px; }
.eyebrow{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(234,240,255,.75);
}
.eyebrow::before{
  content:"";
  width: 14px; height: 14px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(124,255,177,.85), rgba(255,110,199,.45));
  border: 1px solid rgba(255,255,255,.18);
}

/* Hero */
.hero{
  position: relative;
  padding: 86px 0 62px;
  overflow: hidden;
  z-index: 1;
}
.hero-cut{
  background:
    radial-gradient(900px 420px at 15% 15%, rgba(124,255,177,.18), transparent 60%),
    radial-gradient(720px 380px at 80% 35%, rgba(106,167,255,.18), transparent 62%),
    radial-gradient(520px 320px at 65% 85%, rgba(255,110,199,.12), transparent 60%);
}
.hero-title{ line-height: 1.05; }
.hero-divider{
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: 110px;
  z-index: -1;
  opacity: .95;
}

/* KPI chips */
.hero-kpis{ display: flex; flex-wrap: wrap; gap: 10px; }
.kpi-chip{
  display: flex; gap: 10px; align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.kpi-dot{
  width: 10px; height: 10px; border-radius: 999px;
  background: rgba(124,255,177,.95);
  box-shadow: 0 0 0 6px rgba(124,255,177,.12);
}
.kpi-dot--alt{
  background: rgba(106,167,255,.95);
  box-shadow: 0 0 0 6px rgba(106,167,255,.12);
}
.kpi-dot--warm{
  background: rgba(255,204,102,.95);
  box-shadow: 0 0 0 6px rgba(255,204,102,.12);
}
.kpi-top{ font-weight: 600; font-size: .95rem; }
.kpi-sub{ color: var(--c-muted); font-size: .82rem; }

/* Hero panel */
.hero-panel{
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(16,26,51,.78), rgba(16,26,51,.42));
  box-shadow: var(--shadow-2);
  overflow: hidden;
}
.panel-top{
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.panel-body{ padding: 14px 16px 16px; }
.mini-card{
  display:flex; gap:12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  margin-top: 10px;
}
.mini-ico{
  width: 36px; height: 36px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(124,255,177,.22), rgba(106,167,255,.18));
  border: 1px solid rgba(255,255,255,.16);
  color: var(--c-text);
}

/* Cards */
.feature-card,
.form-card,
.contact-card,
.quote-card{
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.feature-card::after,
.quote-card::after{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(280px 120px at 10% 0%, rgba(124,255,177,.16), transparent 60%),
    radial-gradient(260px 120px at 90% 10%, rgba(255,110,199,.14), transparent 65%);
  opacity: .9;
  pointer-events:none;
  z-index: 0;
}
.feature-card > * ,
.quote-card > * { position: relative; z-index: 1; }

.feature-icon{
  width: 44px; height: 44px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(124,255,177,.22), rgba(106,167,255,.18));
  border: 1px solid rgba(255,255,255,.16);
  margin-bottom: 12px;
  color: var(--c-text);
}

.feature-card--wide{ padding: 22px; }
.mini-divider{
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
}

/* Timeline */
.timeline{ display: grid; gap: 12px; }
.t-item{
  display:grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: start;
}
.t-pin{
  width: 46px; height: 46px;
  border-radius: 18px;
  display:grid; place-items:center;
  font-weight: 700;
  color: #07101b;
  background: linear-gradient(135deg, rgba(124,255,177,.95), rgba(106,167,255,.85));
  box-shadow: var(--shadow-1);
}
.t-card{
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  padding: 16px 18px;
}

/* CTA strip */
.cta-strip{
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(124,255,177,.10), rgba(255,110,199,.08));
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
}
.cta-strip__inner{
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Model cards */
.model-card{
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.model-top{ display:flex; align-items:flex-start; justify-content:space-between; gap:10px; }
.model-tag{
  font-size: .75rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(124,255,177,.22);
  background: rgba(124,255,177,.10);
}
.model-tag--alt{
  border-color: rgba(106,167,255,.24);
  background: rgba(106,167,255,.10);
}
.model-tag--warm{
  border-color: rgba(255,204,102,.26);
  background: rgba(255,204,102,.10);
}
.notice-panel{
  display:flex; gap:12px; align-items:flex-start;
  padding: 14px 16px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.notice-ico{
  width: 28px; height: 28px;
  border-radius: 10px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 700;
}

/* Pricing */
.price-card{
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  overflow: hidden;
  position: relative;
}
.price-head{
  padding: 16px 18px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.price-body{ padding: 16px 18px 18px; }
.price-card--featured{
  border-color: rgba(124,255,177,.26);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}
.price-ribbon{
  position:absolute; top: 14px; right: -42px;
  transform: rotate(32deg);
  background: linear-gradient(135deg, rgba(124,255,177,.95), rgba(106,167,255,.85));
  color: #07101b;
  font-weight: 700;
  font-size: .8rem;
  padding: 8px 64px;
  box-shadow: var(--shadow-1);
}
.checklist{
  list-style: none;
  padding-left: 0;
  margin: 0;
  display:grid;
  gap: 10px;
}
.checklist li{
  padding-left: 26px;
  position: relative;
  color: rgba(234,240,255,.92);
}
.checklist li::before{
  content:"";
  position:absolute;
  left: 0; top: 4px;
  width: 16px; height: 16px;
  border-radius: 6px;
  background: rgba(124,255,177,.20);
  border: 1px solid rgba(124,255,177,.28);
}
.checklist li::after{
  content:"";
  position:absolute;
  left: 5px; top: 8px;
  width: 7px; height: 4px;
  border-left: 2px solid rgba(124,255,177,.95);
  border-bottom: 2px solid rgba(124,255,177,.95);
  transform: rotate(-45deg);
}
.limit-note{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
}

.compare-strip{
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 16px 18px;
}

/* FAQ */
.faq-acc .accordion-item{
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.faq-acc .accordion-button{
  background: transparent;
  color: var(--c-text);
  padding-left: 0;
  padding-right: 0;
}
.faq-acc .accordion-button:focus{
  box-shadow: none;
}
.faq-acc .accordion-button::after{
  filter: invert(1);
  opacity: .7;
}
.faq-acc .accordion-body{
  padding-left: 0;
  padding-right: 0;
}

/* Quotes */
.quote-card{
  padding: 18px 18px 16px;
}
.quote-mark{
  font-size: 44px;
  line-height: 1;
  opacity: .55;
  margin-bottom: 6px;
}

/* Contact */
.contact-card{
  padding: 18px;
}
.contact-line{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,.12);
}
.contact-line:last-child{ border-bottom: 0; }
.contact-k{ color: rgba(234,240,255,.70); font-size: .9rem; }
.contact-v{ color: rgba(234,240,255,.95); text-align: right; }

.form-card{
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
}
.form-control{
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--c-text);
}
.form-control:focus{
  background: rgba(0,0,0,.22);
  border-color: rgba(124,255,177,.35);
  box-shadow: 0 0 0 .25rem rgba(124,255,177,.10);
  color: var(--c-text);
}
.form-check-input{
  background-color: rgba(0,0,0,.18);
  border-color: rgba(255,255,255,.22);
}
.form-check-input:focus{
  box-shadow: 0 0 0 .25rem rgba(106,167,255,.12);
}
.form-status{
  display:inline-block;
  min-height: 1.3em;
  color: rgba(124,255,177,.95);
  font-weight: 600;
}

/* Footer */
.footer-wrap{
  padding: 40px 0 26px;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
  position: relative;
  z-index: 1;
}
.footer-top{
  display:flex;
  gap: 26px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-brand{ min-width: 240px; }
.footer-social{ display:flex; flex-wrap: wrap; gap: 10px; }
.social-link{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--c-text);
  text-decoration: none;
  font-size: .9rem;
}
.social-link:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: var(--c-text);
}
.footer-links{
  display:flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-col{
  min-width: 160px;
  display:flex;
  flex-direction: column;
  gap: 8px;
}
.footer-h{
  font-weight: 700;
  margin-bottom: 6px;
}
.footer-col a{
  color: rgba(234,240,255,.82);
  text-decoration: none;
}
.footer-col a:hover{
  color: var(--c-primary);
  text-decoration: underline;
}
.footer-bottom{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  display:flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Responsive tweaks */
@media (max-width: 991px){
  .hero{ padding-top: 72px; }
  .contact-line{ flex-direction: column; align-items:flex-start; }
  .contact-v{ text-align:left; }
}
