/* ============================================================
   Valino Dev — Main Stylesheet
   Dark Professional Theme · Poppins + Open Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:           #080d1a;
  --bg-2:         #0d1526;
  --bg-card:      #111827;
  --bg-card-h:    #1a2540;
  --glass:        rgba(255,255,255,0.03);
  --glass-h:      rgba(255,255,255,0.06);
  --border:       rgba(99,102,241,0.18);
  --border-s:     rgba(255,255,255,0.06);
  --txt:          #f1f5f9;
  --txt-2:        #cbd5e1;
  --txt-m:        #64748b;
  --indigo:       #6366f1;
  --indigo-l:     #818cf8;
  --indigo-d:     #4f46e5;
  --cyan:         #06b6d4;
  --green:        #10b981;
  --amber:        #f59e0b;
  --red:          #ef4444;
  --grad:         linear-gradient(135deg,#6366f1 0%,#06b6d4 100%);
  --grad-v:       linear-gradient(180deg,#6366f1 0%,#06b6d4 100%);
  --grad-text:    linear-gradient(135deg,#818cf8 0%,#06b6d4 100%);
  --shadow:       0 4px 24px rgba(0,0,0,.4);
  --shadow-h:     0 8px 40px rgba(99,102,241,.25);
  --r:            16px;
  --r-sm:         10px;
  --ease:         all .25s cubic-bezier(.4,0,.2,1);
}

/* ── Reset / Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  background-image:
    radial-gradient(rgba(99,102,241,.07) 1px, transparent 1px),
    radial-gradient(rgba(99,102,241,.04) 1px, transparent 1px);
  background-size: 40px 40px, 20px 20px;
  background-position: 0 0, 20px 20px;
  color: var(--txt);
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--txt);
}

a { text-decoration: none; transition: var(--ease); }
img { max-width: 100%; height: auto; }

/* ── Utility ───────────────────────────────────────────────── */
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.25);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--indigo-l);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--txt-2);
  max-width: 560px;
  line-height: 1.8;
}

.section-sub.center { margin: 0 auto; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary-grd {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary-grd::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: var(--ease);
}
.btn-primary-grd:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(99,102,241,.45); color: #fff; }
.btn-primary-grd:hover::after { opacity: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--txt-2);
  border: 1px solid var(--border-s);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--ease);
}
.btn-ghost:hover { border-color: var(--indigo); color: var(--indigo-l); background: rgba(99,102,241,.06); }

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: var(--ease);
}
.btn-green:hover { background: #059669; transform: translateY(-1px); color: #fff; }

/* ── Navbar ────────────────────────────────────────────────── */
#mainNav {
  background: rgba(8,13,26,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-s);
  padding: 14px 0;
  transition: var(--ease);
  z-index: 1000;
}

#mainNav.scrolled {
  background: rgba(8,13,26,.97);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--txt) !important;
}
.brand-icon {
  width: 36px; height: 36px;
  background: var(--grad);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.brand-icon svg { width: 20px; height: 20px; }
.brand-accent { color: var(--indigo-l); }

.navbar-nav .nav-link {
  color: var(--txt-2) !important;
  font-weight: 500;
  font-size: .92rem;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--ease);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--txt) !important;
  background: rgba(255,255,255,.05);
}

.navbar-toggler {
  border: 1px solid var(--border-s);
  padding: 6px 10px;
  border-radius: 8px;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(241,245,249,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero-section {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(99,102,241,.15) 0%, transparent 65%);
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.25);
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--indigo-l);
  margin-bottom: 1.4rem;
}
.hero-tag span {
  background: var(--indigo);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: .75rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.4rem;
  letter-spacing: -.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--txt-2);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2.4rem; }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.trust-label { font-size: .8rem; color: var(--txt-m); margin-right: 4px; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--glass);
  border: 1px solid var(--border-s);
  border-radius: 8px;
  font-size: .78rem;
  color: var(--txt-2);
  font-weight: 500;
}
.trust-badge i { font-size: .85rem; }

.hero-visual {
  position: relative;
  padding: 20px;
}
.hero-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(99,102,241,.12);
  position: relative;
}
.hero-img-wrap img {
  width: 100%;
  display: block;
  filter: brightness(.9) saturate(1.1);
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,.08) 0%, rgba(6,182,212,.05) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-float-card {
  position: absolute;
  background: rgba(17,24,39,.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
  font-size: .82rem;
}
.hero-float-card.card-1 { bottom: -10px; left: -20px; }
.hero-float-card.card-2 { top: 20px; right: -20px; }
.float-card-label { color: var(--txt-m); font-size: .75rem; margin-bottom: 3px; }
.float-card-value { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--txt); font-size: 1rem; }
.float-card-sub { font-size: .72rem; color: var(--green); }

/* ── Stats Strip ───────────────────────────────────────────── */
.stats-strip {
  padding: 40px 0;
  background: rgba(255,255,255,.015);
  border-top: 1px solid var(--border-s);
  border-bottom: 1px solid var(--border-s);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--border-s);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-plus { font-size: 1.4rem; }
.stat-label { font-size: .82rem; color: var(--txt-m); font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }

/* ── Section Spacing ───────────────────────────────────────── */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

/* ── Cards (Glass) ─────────────────────────────────────────── */
.card-glass {
  background: var(--glass);
  border: 1px solid var(--border-s);
  border-radius: var(--r);
  padding: 28px;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.card-glass:hover {
  background: var(--glass-h);
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-h);
}
.card-glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,.4), transparent);
}

/* ── Product Cards ─────────────────────────────────────────── */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--ease);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--border);
  transform: translateY(-5px);
  box-shadow: var(--shadow-h);
}

.product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg,#1a2540,#0d1526);
  position: relative;
  overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }

.product-img-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--indigo-l);
  background: linear-gradient(135deg,rgba(99,102,241,.1),rgba(6,182,212,.08));
}

.product-type-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.badge-product { background: rgba(99,102,241,.8); color: #fff; }
.badge-service { background: rgba(6,182,212,.8); color: #fff; }

.product-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 8px;
}
.product-desc { font-size: .87rem; color: var(--txt-2); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.product-meta { display: flex; align-items: center; justify-content: space-between; }
.product-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--txt);
}
.product-price span { font-size: .9rem; color: var(--txt-m); font-weight: 400; }

.product-rating { display: flex; align-items: center; gap: 4px; font-size: .8rem; color: var(--amber); }
.product-rating em { color: var(--txt-m); font-style: normal; }

/* ── Features Grid ─────────────────────────────────────────── */
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.2rem;
}
.icon-indigo { background: rgba(99,102,241,.15); color: var(--indigo-l); }
.icon-cyan   { background: rgba(6,182,212,.15);  color: var(--cyan); }
.icon-green  { background: rgba(16,185,129,.15); color: var(--green); }
.icon-amber  { background: rgba(245,158,11,.15); color: var(--amber); }

.feature-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-desc  { font-size: .88rem; color: var(--txt-2); line-height: 1.7; }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: var(--r);
  padding: 30px;
  transition: var(--ease);
  height: 100%;
}
.testimonial-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-h);
}
.stars { color: var(--amber); font-size: .85rem; margin-bottom: 14px; }
.testimonial-text {
  font-size: .92rem;
  color: var(--txt-2);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-text::before { content: '"'; color: var(--indigo-l); font-size: 1.3rem; line-height: 0; vertical-align: -5px; }
.testimonial-text::after  { content: '"'; color: var(--indigo-l); font-size: 1.3rem; line-height: 0; vertical-align: -5px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  flex-shrink: 0;
}
.av-blue   { background: linear-gradient(135deg,#6366f1,#818cf8); }
.av-cyan   { background: linear-gradient(135deg,#06b6d4,#0ea5e9); }
.av-purple { background: linear-gradient(135deg,#8b5cf6,#a78bfa); }
.av-green  { background: linear-gradient(135deg,#10b981,#34d399); }
.author-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .9rem; color: var(--txt); }
.author-role { font-size: .78rem; color: var(--txt-m); }

/* ── Guarantee / Refund Section ────────────────────────────── */
.guarantee-section {
  background: rgba(16,185,129,.04);
  border-top: 1px solid rgba(16,185,129,.12);
  border-bottom: 1px solid rgba(16,185,129,.12);
}
.guarantee-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.guarantee-shield {
  width: 80px; height: 80px;
  background: linear-gradient(135deg,rgba(16,185,129,.2),rgba(16,185,129,.08));
  border: 2px solid rgba(16,185,129,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--green);
  margin: 0 auto 24px;
}
.guarantee-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 32px;
}
.g-stat { text-align: center; }
.g-stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  display: block;
}
.g-stat-label { font-size: .8rem; color: var(--txt-m); }

/* ── Payment Methods ───────────────────────────────────────── */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.payment-method-card {
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: var(--r);
  padding: 30px 24px;
  text-align: center;
  transition: var(--ease);
}
.payment-method-card:hover { border-color: var(--border); transform: translateY(-3px); }
.pm-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
}
.pm-paypal { background: rgba(0,112,243,.12); color: #0070f3; }
.pm-card   { background: rgba(99,102,241,.12); color: var(--indigo-l); }
.pm-bmc    { background: rgba(255,221,0,.1);   color: #ffdd00; }
.pm-title  { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.pm-desc   { font-size: .85rem; color: var(--txt-2); line-height: 1.65; }
.pm-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 14px; }
.pm-badge  { padding: 3px 9px; background: rgba(255,255,255,.05); border: 1px solid var(--border-s); border-radius: 5px; font-size: .72rem; color: var(--txt-m); }

/* ── Pricing Cards ─────────────────────────────────────────── */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: var(--r);
  padding: 28px;
  transition: var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: var(--shadow-h); }
.pricing-card.featured {
  border-color: var(--indigo);
  background: linear-gradient(160deg,rgba(99,102,241,.08) 0%,var(--bg-card) 60%);
  position: relative;
}
.pricing-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -1px; right: 24px;
  background: var(--grad);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
}
.pricing-type { font-size: .75rem; font-weight: 700; color: var(--txt-m); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
.pricing-name { font-size: 1.1rem; font-weight: 700; color: var(--txt); margin-bottom: 6px; }
.pricing-price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--txt);
  line-height: 1;
  margin: 16px 0 4px;
}
.pricing-price sup { font-size: 1.2rem; vertical-align: super; font-weight: 700; }
.pricing-desc { font-size: .83rem; color: var(--txt-m); margin-bottom: 20px; }
.pricing-features { list-style: none; flex: 1; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .87rem;
  color: var(--txt-2);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-s);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--green); margin-top: 3px; flex-shrink: 0; }
.pricing-cta { margin-top: 24px; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: var(--r-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--ease);
}
.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--txt);
  transition: var(--ease);
}
.faq-question:hover { color: var(--indigo-l); }
.faq-icon { color: var(--indigo-l); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .2s;
  font-size: .9rem;
  color: var(--txt-2);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(99,102,241,.12) 0%, rgba(6,182,212,.08) 100%);
  border: 1px solid rgba(99,102,241,.2);
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(99,102,241,.18) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Legal Pages ───────────────────────────────────────────── */
.legal-header {
  padding: 120px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border-s);
}
.legal-header h1 { font-size: 2.4rem; margin-bottom: 12px; }
.legal-header p { color: var(--txt-m); font-size: .9rem; }

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 20px;
}
.legal-content h2 {
  font-size: 1.25rem;
  color: var(--indigo-l);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-s);
}
.legal-content h3 { font-size: 1rem; color: var(--txt); margin: 20px 0 10px; font-weight: 600; }
.legal-content p { font-size: .92rem; color: var(--txt-2); margin-bottom: 14px; line-height: 1.8; }
.legal-content ul, .legal-content ol { padding-left: 24px; margin-bottom: 14px; }
.legal-content li { font-size: .92rem; color: var(--txt-2); margin-bottom: 7px; line-height: 1.75; }
.legal-content a { color: var(--indigo-l); }
.legal-content a:hover { color: var(--cyan); }
.legal-highlight {
  background: rgba(99,102,241,.07);
  border-left: 3px solid var(--indigo);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 20px 0;
}
.legal-highlight p { margin: 0; color: var(--txt); }

/* ── Footer ────────────────────────────────────────────────── */
#mainFooter {
  background: var(--bg-2);
  border-top: 1px solid var(--border-s);
  padding: 64px 0 0;
}
.footer-brand { margin-bottom: 16px; }
.footer-brand .navbar-brand { display: inline-flex; margin-bottom: 14px; }
.footer-tagline { font-size: .87rem; color: var(--txt-m); line-height: 1.7; max-width: 260px; }
.footer-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .9rem; color: var(--txt); margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: .88rem; color: var(--txt-m); transition: var(--ease); }
.footer-links a:hover { color: var(--indigo-l); padding-left: 4px; }
.footer-divider { border-top: 1px solid var(--border-s); padding: 24px 0; margin-top: 48px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: .82rem; color: var(--txt-m); }
.footer-payment { display: flex; align-items: center; gap: 8px; }
.footer-payment span { font-size: .75rem; color: var(--txt-m); }
.footer-pay-icon {
  width: 36px; height: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border-s);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  color: var(--txt-2);
  font-weight: 700;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: var(--glass);
  border: 1px solid var(--border-s);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--txt-m);
  font-size: .85rem;
  transition: var(--ease);
}
.social-link:hover { background: var(--glass-h); color: var(--indigo-l); border-color: var(--border); }

/* ── Page Header ───────────────────────────────────────────── */
.page-hero {
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(99,102,241,.1) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Contact ───────────────────────────────────────────────── */
.contact-form .form-control,
.contact-form .form-select {
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: 10px;
  color: var(--txt);
  padding: 12px 16px;
  font-size: .92rem;
  transition: var(--ease);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: var(--bg-card);
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(99,102,241,.15);
  color: var(--txt);
}
.contact-form label { font-size: .87rem; color: var(--txt-2); margin-bottom: 6px; font-weight: 500; }
.contact-form .form-control::placeholder { color: var(--txt-m); }
.contact-form textarea { resize: vertical; min-height: 130px; }

/* ── Scroll Reveal ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Cookie Banner ─────────────────────────────────────────── */
#cookieBanner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  max-width: 500px;
  background: rgba(17,24,39,.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  z-index: 9999;
  display: none;
}
#cookieBanner p { font-size: .85rem; color: var(--txt-2); margin-bottom: 14px; }
#cookieBanner .cookie-actions { display: flex; gap: 10px; }

/* ── Back to top ───────────────────────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--ease);
  z-index: 500;
}
#backToTop.show { opacity: 1; transform: translateY(0); }
#backToTop:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(99,102,241,.4); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .payment-methods-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 40px; }
  .hero-float-card.card-2 { right: 0; }
  .hero-float-card.card-1 { left: 0; }
}

@media (max-width: 767.98px) {
  .hero-section { padding: 110px 0 60px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .guarantee-stats { gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .payment-methods-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .hero-float-card { display: none; }
}

@media (max-width: 575.98px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta a { text-align: center; justify-content: center; }
}

/* ── Prefers reduced motion ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
