/* ============================================================
   PARAS IPTV — Global Stylesheet
   Covers: index.html | installation-guide.html | about.html
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; background: #0d0d0d; color: #fff; }

/* ── DESIGN TOKENS ── */
:root {
  --blue:       #1a5fd4;
  --blue-dk:    #1248a8;
  --blue-light: #2a78f5;
  --accent:     #2edd78;
  --dark1:      #0d0d0d;
  --dark2:      #111214;
  --dark3:      #0a0c10;
  --muted:      rgba(255,255,255,0.78);
  --sep:        rgba(255,255,255,0.07);
}

/* ============================================================
   NAVBAR
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
  background: #fff; box-shadow: 0 2px 14px rgba(0,0,0,.1);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px; height: 82px;
}
.nav-logo a { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 68px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .9rem;
  color: #222; text-decoration: none; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }

/* Hamburger button */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 6px;
  cursor: pointer; padding: 10px 8px; background: none; border: none;
  outline: none; width: 44px; height: 44px; position: relative;
}
.nav-toggle span {
  display: block; width: 26px; height: 3px;
  background: #222; border-radius: 3px;
  transition: transform .35s ease, opacity .25s ease, background .2s;
  transform-origin: center center; position: relative;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile slide-down menu */
.nav-mobile {
  display: none; position: fixed; top: 82px; left: 0; width: 100%; z-index: 199;
  background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.12);
  flex-direction: column; padding: 12px 0 20px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .95rem;
  color: #222; text-decoration: none;
  padding: 14px 32px; border-bottom: 1px solid #f0f0f0;
  transition: color .2s, background .2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover, .nav-mobile a.active { color: var(--blue); background: #f5f8ff; }

/* ============================================================
   PAGE HERO BANNER  (installation guide + about)
   ============================================================ */
.page-hero {
  margin-top: 82px;
  background: linear-gradient(135deg, #0a0c14 0%, #0d1a2e 55%, #0a0c14 100%);
  padding: 80px 52px 68px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(26,95,212,.17), transparent 70%);
  pointer-events: none;
}
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,95,212,.2); border: 1px solid rgba(26,95,212,.4); color: #6fa8ff;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .72rem;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
}
.page-hero h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.6rem, 3.6vw, 3rem); color: #fff;
  line-height: 1.18; margin-bottom: 18px;
}
.page-hero h1 span { color: var(--blue-light); }
.page-hero p {
  font-size: clamp(.95rem, 1.6vw, 1.1rem); color: var(--muted);
  max-width: 640px; margin: 0 auto; line-height: 1.8;
}

/* ── Breadcrumb ── */
.breadcrumb {
  background: var(--dark2); border-bottom: 1px solid var(--sep);
  padding: 14px 52px; display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.4);
  font-family: 'Montserrat', sans-serif;
}
.breadcrumb a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.7); }
.breadcrumb svg { width: 12px; height: 12px; stroke: rgba(255,255,255,.3); flex-shrink: 0; }

/* ============================================================
   HERO SECTION  (index.html)
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  padding-top: 82px;
  display: flex; flex-direction: column; overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: brightness(0.32) saturate(0.6);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.08) 42%, rgba(0,0,0,.7) 100%);
}
.hero-body {
  position: relative; z-index: 2; flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 60px 24px 72px;
}
.hero-content { text-align: center; max-width: 860px; width: 100%; }
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3.6vw, 2.65rem);
  font-weight: 800; color: #fff; line-height: 1.22;
  margin-bottom: 30px; text-shadow: 0 2px 22px rgba(0,0,0,.6);
}
.hero-logo-img { display: block; margin: 0 auto 30px; height: 140px; width: auto; }
.hero-desc {
  font-size: clamp(.95rem, 1.7vw, 1.13rem); color: rgba(255,255,255,.85);
  line-height: 1.82; max-width: 740px; margin: 0 auto 38px; font-weight: 500;
}
.hero-desc strong { color: #fff; }
.hero-btns { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 36px; }
.btn-trial {
  display: inline-flex; align-items: center; gap: 12px;
  background: transparent; border: 2px solid rgba(255,255,255,.75); color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .88rem;
  letter-spacing: 1.3px; text-transform: uppercase; text-decoration: none;
  padding: 15px 38px; border-radius: 50px;
  min-width: 380px; justify-content: center;
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.btn-trial:hover { background: rgba(255,255,255,.1); border-color: #fff; box-shadow: 0 0 22px rgba(255,255,255,.18); }
.dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent); box-shadow: 0 0 7px var(--accent);
  animation: blink 1.6s ease-in-out infinite;
}
.btn-plans {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--blue); color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem;
  text-decoration: none; padding: 17px 50px; border-radius: 50px;
  min-width: 380px; justify-content: center;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 6px 28px rgba(26,95,212,.55);
}
.btn-plans:hover { background: var(--blue-dk); transform: translateY(-2px); box-shadow: 0 10px 38px rgba(26,95,212,.65); }
.btn-plans svg { width: 21px; height: 21px; flex-shrink: 0; }
.hero-footer-text { font-size: .97rem; color: rgba(255,255,255,.8); max-width: 680px; margin: 0 auto; line-height: 1.78; }
.hero-footer-text strong { color: #fff; }

/* ── Trustpilot bar ── */
.trustbar {
  position: relative; z-index: 2; background: #fff;
  border-top: 1px solid #e0e0e0; padding: 20px 24px;
  font-size: 1rem; color: #333;
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap; width: 100%;
}
.trustbar strong { color: #111; }
.stars { display: inline-flex; gap: 2px; align-items: center; }
.star {
  width: 22px; height: 22px; background: #00b67a;
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.star.half { background: linear-gradient(90deg, #00b67a 65%, #d0d0d0 65%); }
.tp-logo { display: inline-flex; align-items: center; gap: 5px; font-family: 'Montserrat', sans-serif; font-weight: 700; color: #333; }
.tp-logo .tp-star {
  width: 20px; height: 20px; background: #00b67a;
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}

/* ============================================================
   CONTENT SECTIONS  (index.html)
   ============================================================ */
.cs { padding: 90px 52px; position: relative; }
.cs:nth-child(odd)  { background: var(--dark2); }
.cs:nth-child(even) { background: var(--dark3); }
.cs::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--sep), transparent);
}
.cs-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.cs-inner.reverse { direction: rtl; }
.cs-inner.reverse > * { direction: ltr; }
.cs-img { display: flex; align-items: center; justify-content: center; }
.cs-img img { width: 100%; max-width: 540px; height: auto; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.cs-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,95,212,.18); border: 1px solid rgba(26,95,212,.35); color: #6fa8ff;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .72rem;
  letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px;
  border-radius: 50px; margin-bottom: 18px;
}
.cs-text h2 {
  font-family: 'Montserrat', sans-serif; font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  font-weight: 800; color: #fff; line-height: 1.22; margin-bottom: 18px;
}
.cs-text h2 span, .cs-text h2 span { color: var(--blue-light); }
.cs-text h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.2rem; color: #fff; margin: 24px 0 12px; }
.lead { font-size: 1rem; color: rgba(255,255,255,.8); line-height: 1.82; margin-bottom: 20px; }
.lead strong { color: #fff; }
.note { font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.7; font-style: italic; }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; }
.feat-list li { display: flex; align-items: flex-start; gap: 12px; font-size: .96rem; color: var(--muted); line-height: 1.55; }
.feat-list li .icon {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: rgba(26,95,212,.22); border: 1px solid rgba(26,95,212,.4);
  display: flex; align-items: center; justify-content: center;
}
.feat-list li .icon svg { width: 11px; height: 11px; stroke: #6fa8ff; }
.steps-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.steps-list li { display: flex; align-items: flex-start; gap: 16px; font-size: .96rem; color: var(--muted); line-height: 1.6; }
.step-num {
  width: 32px; height: 32px; border-radius: 50%; background: var(--blue); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .8rem; color: #fff;
}
.steps-list li strong { color: #fff; display: block; margin-bottom: 4px; }
.cs-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue); color: #fff; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .9rem;
  padding: 14px 32px; border-radius: 50px; margin-top: 8px;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 6px 24px rgba(26,95,212,.45);
}
.cs-cta:hover { background: var(--blue-dk); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(26,95,212,.55); }
.cs-cta svg { width: 18px; height: 18px; }

/* ============================================================
   PRICING SECTION  (index.html)
   ============================================================ */
.pricing { background: var(--dark1); padding: 80px 40px 90px; position: relative; }
.pricing::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--sep), transparent);
}
.pricing-head { text-align: center; margin-bottom: 40px; }
.pricing-head h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem); color: #fff; margin-bottom: 22px;
}
.pricing-devices { display: block; max-width: 680px; height: auto; margin: 0 auto 22px; }
.pricing-sub { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 1rem; color: #fff; }
.pricing-sub span { color: var(--accent); }
.pricing-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}

/* Card */
.p-card {
  background: #fff; border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,.35); position: relative;
  transition: transform .25s, box-shadow .25s;
}
.p-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.45); }
.p-card.best { border: 2px solid var(--blue); }
.p-badge {
  position: absolute; top: 0; right: 0;
  background: #e63946; color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .7rem;
  letter-spacing: .5px; text-transform: uppercase;
  padding: 5px 12px; border-bottom-left-radius: 4px;
}
.p-head { background: #fff; padding: 22px 16px 18px; text-align: center; border-bottom: 1px solid #e8e8e8; }
.p-head .p-duration {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.5rem; color: #111; display: block; margin-bottom: 4px;
}
.p-head .p-brand {
  font-family: 'Montserrat', sans-serif; font-size: .78rem;
  font-weight: 600; color: #888; text-transform: uppercase; letter-spacing: .5px;
}
.p-price { background: #0d0d0d; padding: 22px 16px 18px; text-align: center; }
.p-old {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .8rem;
  color: rgba(255,255,255,.4); text-decoration: line-through;
  display: inline-block; margin-bottom: 2px;
}
.p-amount { display: flex; align-items: flex-start; justify-content: center; gap: 2px; }
.p-currency { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 1rem; color: #fff; margin-top: 8px; }
.p-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 3.6rem; color: #fff; line-height: 1; }
.p-cents { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .85rem; color: #fff; margin-top: 8px; }
.p-days { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .78rem; color: rgba(255,255,255,.55); display: block; margin-top: 6px; }
.p-features { background: #fff; padding: 8px 20px 4px; flex: 1; }
.p-features ul { list-style: none; }
.p-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 0; font-size: .85rem; color: #222;
  border-bottom: 1px dashed #ddd;
}
.p-features li:last-child { border-bottom: none; }
.p-features li svg { width: 14px; height: 14px; stroke: var(--blue); flex-shrink: 0; }
.p-footer { background: #fff; padding: 18px 20px 4px; }
.p-btn {
  display: block; width: 100%; padding: 14px;
  background: #111; border: none; color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: .92rem; letter-spacing: 1px; text-align: center;
  text-decoration: none; border-radius: 3px; cursor: pointer; transition: background .2s;
}
.p-btn:hover { background: #333; }
.p-card.best .p-btn { background: var(--blue); }
.p-card.best .p-btn:hover { background: var(--blue-dk); }
.p-ready {
  display: block; text-align: center; margin-top: 8px; margin-bottom: 4px;
  font-size: .73rem; color: #999; font-style: italic;
}
.p-payment {
  background: #fff; padding: 10px 20px 18px;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  border-top: 1px solid #f0f0f0;
}
.p-payment .secure {
  display: flex; align-items: center; gap: 6px;
  font-size: .72rem; color: #666;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
}
.p-payment .secure svg { width: 12px; height: 12px; stroke: #666; }
.p-payment .secure strong { color: #333; }
.p-payment img { width: 100%; max-width: 200px; height: auto; }

/* ============================================================
   INSTALLATION GUIDE  (installation-guide.html)
   ============================================================ */
.guide-wrap {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 260px 1fr;
  gap: 40px; padding: 52px 40px 80px;
}
.guide-content { min-width: 0; }

/* Sidebar TOC */
.toc {
  position: sticky; top: 100px; align-self: start;
  background: var(--dark2); border: 1px solid var(--sep);
  border-radius: 12px; padding: 24px;
}
.toc h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: .78rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--sep);
}
.toc ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.toc ul li a {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: rgba(255,255,255,.5); text-decoration: none;
  padding: 8px 10px; border-radius: 7px;
  transition: background .2s, color .2s;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
}
.toc ul li a:hover { background: rgba(26,95,212,.18); color: #fff; }
.toc ul li a svg { width: 14px; height: 14px; flex-shrink: 0; opacity: .6; }
.toc-cta {
  display: block; margin-top: 20px; padding: 13px 16px;
  background: var(--blue); color: #fff; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .82rem;
  text-align: center; border-radius: 8px; letter-spacing: .5px;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(26,95,212,.4);
}
.toc-cta:hover { background: var(--blue-dk); transform: translateY(-1px); }

/* Intro box */
.intro-box {
  background: var(--dark2); border: 1px solid var(--sep);
  border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0; padding: 24px 28px; margin-bottom: 48px;
}
.intro-box h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.15rem; color: #fff; margin-bottom: 12px;
}
.intro-box p { font-size: .95rem; color: var(--muted); line-height: 1.8; }

/* Credentials */
.creds-box {
  background: var(--dark3); border: 1px solid var(--sep);
  border-radius: 12px; padding: 28px; margin-bottom: 48px;
}
.creds-box h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.2rem; color: #fff; margin-bottom: 8px;
}
.creds-box > p { font-size: .93rem; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.creds-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cred-item {
  background: rgba(26,95,212,.12); border: 1px solid rgba(26,95,212,.25);
  border-radius: 8px; padding: 16px; display: flex; align-items: center; gap: 12px;
}
.cred-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(26,95,212,.25); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.cred-icon svg { width: 18px; height: 18px; stroke: #6fa8ff; }
.cred-item span { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .85rem; color: #fff; }

/* Device sections */
.device-section { margin-bottom: 52px; scroll-margin-top: 100px; }
.device-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
  padding-bottom: 16px; border-bottom: 1px solid var(--sep);
}
.device-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(26,95,212,.18); border: 1px solid rgba(26,95,212,.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.device-icon svg { width: 24px; height: 24px; stroke: #6fa8ff; }
.device-header h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.1rem, 2vw, 1.5rem); color: #fff; line-height: 1.2;
}
.device-header h2 span { color: var(--blue-light); }
.device-intro { font-size: .95rem; color: var(--muted); line-height: 1.8; margin-bottom: 22px; }

/* Steps card */
.steps { background: var(--dark2); border: 1px solid var(--sep); border-radius: 12px; overflow: hidden; }
.steps-title {
  background: rgba(26,95,212,.12); padding: 14px 22px;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .78rem; letter-spacing: 2px; text-transform: uppercase;
  color: #6fa8ff; border-bottom: 1px solid var(--sep);
}
.step-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 18px 22px; border-bottom: 1px solid var(--sep); transition: background .2s;
}
.step-item:last-child { border-bottom: none; }
.step-item:hover { background: rgba(255,255,255,.02); }
.step-n {
  width: 30px; height: 30px; border-radius: 50%; background: var(--blue); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: .78rem; color: #fff; margin-top: 1px;
}
.step-text { font-size: .92rem; color: var(--muted); line-height: 1.65; }
.step-text strong { color: #fff; display: block; margin-bottom: 2px; font-family: 'Montserrat', sans-serif; font-size: .88rem; }
.step-code {
  display: inline-block; margin-top: 5px;
  background: rgba(42,120,245,.15); border: 1px solid rgba(42,120,245,.3);
  color: #9ec5ff; font-size: .8rem; padding: 3px 10px; border-radius: 4px;
  font-family: monospace; letter-spacing: .3px;
}

/* Tips */
.tips-section {
  background: linear-gradient(135deg, rgba(26,95,212,.1), rgba(10,14,26,.8));
  border: 1px solid rgba(26,95,212,.2);
  border-radius: 14px; padding: 32px; margin-bottom: 52px; scroll-margin-top: 100px;
}
.tips-section h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.3rem; color: #fff; margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.tips-section h2 svg { width: 22px; height: 22px; stroke: var(--accent); }
.tips-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tip-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(0,0,0,.3); border: 1px solid var(--sep);
  border-radius: 9px; padding: 14px 16px;
}
.tip-item svg { width: 16px; height: 16px; stroke: var(--accent); flex-shrink: 0; margin-top: 2px; }
.tip-item p { font-size: .88rem; color: var(--muted); line-height: 1.6; }
.tip-item p strong { color: #fff; }

/* Access box */
.access-box {
  background: var(--dark2); border: 1px solid var(--sep);
  border-radius: 14px; padding: 36px; margin-bottom: 48px;
  text-align: center; scroll-margin-top: 100px;
}
.access-box h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.4rem; color: #fff; margin-bottom: 10px;
}
.access-box > p { font-size: .95rem; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
.access-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 28px; }
.access-item {
  background: rgba(26,95,212,.1); border: 1px solid rgba(26,95,212,.2);
  border-radius: 9px; padding: 16px 12px; text-align: center;
}
.access-item svg { width: 26px; height: 26px; stroke: #6fa8ff; margin-bottom: 8px; display: block; margin-left: auto; margin-right: auto; }
.access-item p { font-size: .82rem; color: var(--muted); font-family: 'Montserrat', sans-serif; font-weight: 600; }
.access-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue); color: #fff; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .95rem;
  padding: 15px 40px; border-radius: 50px;
  box-shadow: 0 6px 24px rgba(26,95,212,.5);
  transition: background .25s, transform .2s;
}
.access-cta:hover { background: var(--blue-dk); transform: translateY(-2px); }
.access-cta svg { width: 18px; height: 18px; }

/* ============================================================
   ABOUT US  (about.html)
   ============================================================ */
.about-wrap { max-width: 860px; margin: 0 auto; padding: 64px 40px 90px; }

.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 72px; }
.about-intro-text h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem); color: #fff; line-height: 1.25; margin-bottom: 16px;
}
.about-intro-text h2 span { color: var(--blue-light); }
.about-intro-text p { font-size: .97rem; color: var(--muted); line-height: 1.85; margin-bottom: 14px; }
.about-intro-text p:last-child { margin-bottom: 0; }
.about-intro-text p strong { color: #fff; }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: var(--dark2); border: 1px solid var(--sep);
  border-radius: 12px; padding: 24px 20px; text-align: center;
}
.stat-card .stat-num {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 2rem; color: var(--blue-light); display: block; margin-bottom: 6px;
}
.stat-card .stat-label { font-size: .82rem; color: var(--muted); font-family: 'Montserrat', sans-serif; font-weight: 600; }

.divider { height: 1px; margin: 0 0 64px; background: linear-gradient(90deg, transparent, var(--sep), transparent); }

.about-mission {
  background: var(--dark2); border: 1px solid var(--sep);
  border-left: 4px solid var(--blue); border-radius: 0 12px 12px 0;
  padding: 32px 36px; margin-bottom: 64px;
}
.about-mission h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.25rem; color: #fff; margin-bottom: 12px; }
.about-mission p { font-size: .97rem; color: var(--muted); line-height: 1.85; }
.about-mission p strong { color: #fff; }

.about-values { margin-bottom: 64px; }
.about-values h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem); color: #fff;
  margin-bottom: 28px; text-align: center;
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value-card {
  background: var(--dark2); border: 1px solid var(--sep);
  border-radius: 12px; padding: 26px 22px;
  transition: border-color .2s, transform .2s;
}
.value-card:hover { border-color: rgba(26,95,212,.4); transform: translateY(-3px); }
.value-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(26,95,212,.18); border: 1px solid rgba(26,95,212,.3);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.value-icon svg { width: 22px; height: 22px; stroke: #6fa8ff; }
.value-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: .95rem; color: #fff; margin-bottom: 8px; }
.value-card p { font-size: .86rem; color: var(--muted); line-height: 1.7; }

.about-cta {
  background: linear-gradient(135deg, rgba(26,95,212,.12), rgba(10,14,26,.9));
  border: 1px solid rgba(26,95,212,.22); border-radius: 16px; padding: 48px 40px; text-align: center;
}
.about-cta h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem); color: #fff; margin-bottom: 12px;
}
.about-cta p { font-size: .97rem; color: var(--muted); line-height: 1.8; max-width: 500px; margin: 0 auto 28px; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue); color: #fff; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .92rem;
  padding: 14px 34px; border-radius: 50px;
  box-shadow: 0 6px 24px rgba(26,95,212,.45);
  transition: background .25s, transform .2s;
}
.btn-primary:hover { background: var(--blue-dk); transform: translateY(-2px); }
.btn-primary svg { width: 17px; height: 17px; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .92rem;
  padding: 13px 30px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,.25);
  transition: border-color .25s, background .25s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }
.btn-secondary svg { width: 17px; height: 17px; }

/* ============================================================
   FOOTER  (all pages)
   ============================================================ */
.footer { background: #0a0c10; border-top: 1px solid var(--sep); padding: 60px 52px 0; }
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 60px; padding-bottom: 50px;
}
.footer-brand img { height: 62px; width: auto; display: block; margin-bottom: 20px; }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.8; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,.55);
  transition: background .2s, color .2s, border-color .2s;
}
.footer-social a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.footer-social a svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .8rem;
  letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: .88rem; color: rgba(255,255,255,.5); text-decoration: none;
  transition: color .2s; display: flex; align-items: center; gap: 7px;
}
.footer-col ul li a::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0;
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .82rem; color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   WHATSAPP FAB  (all pages)
   ============================================================ */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5); text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.65); }
.wa-fab svg { width: 30px; height: 30px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.3); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablet  ≤ 900px ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links  { display: none !important; }
  .nav-toggle { display: flex !important; }

  .page-hero { padding: 56px 28px 48px; }
  .breadcrumb { padding: 12px 24px; }

  .cs-inner,
  .cs-inner.reverse { grid-template-columns: 1fr; direction: ltr; gap: 36px; }
  .cs { padding: 60px 28px; }

  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pricing { padding: 60px 24px 70px; }

  .guide-wrap { grid-template-columns: 1fr; padding: 36px 24px 64px; gap: 0; }
  .toc { position: static; margin-bottom: 36px; }
  .creds-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr 1fr; }

  .about-wrap { padding: 48px 28px 72px; }
  .about-intro { grid-template-columns: 1fr; gap: 36px; }

  .footer { padding: 50px 28px 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
}

/* ── Large phone  ≤ 640px ── */
@media (max-width: 640px) {
  nav { padding: 0 16px; height: 66px; }
  .nav-logo img { height: 50px; }
  .nav-mobile { top: 66px; }
  .nav-mobile a { padding: 13px 24px; font-size: .9rem; }

  .page-hero { padding: 44px 18px 38px; margin-top: 66px; }
  .breadcrumb { padding: 10px 18px; font-size: .75rem; }

  .hero { padding-top: 66px; }
  .hero-body { padding: 32px 16px 48px; }
  .hero-title { font-size: clamp(1.25rem, 5.5vw, 1.7rem); margin-bottom: 20px; line-height: 1.3; }
  .hero-logo-img { height: 90px; margin-bottom: 20px; }
  .hero-desc { font-size: .93rem; line-height: 1.72; margin-bottom: 28px; }
  .hero-btns { gap: 12px; margin-bottom: 26px; }
  .btn-trial { min-width: unset; width: 100%; font-size: .76rem; letter-spacing: .8px; padding: 13px 16px; }
  .btn-plans { min-width: unset; width: 100%; font-size: .9rem; padding: 14px 20px; }
  .hero-footer-text { font-size: .88rem; }

  .trustbar { padding: 14px 16px; gap: 6px; font-size: .82rem; }
  .star { width: 17px; height: 17px; }
  .tp-logo { font-size: .82rem; }

  .cs { padding: 48px 16px; }
  .cs-inner { gap: 26px; }
  .cs-text h2 { font-size: clamp(1.25rem, 5vw, 1.7rem); margin-bottom: 14px; }
  .cs-text h3 { font-size: 1.05rem; margin: 18px 0 10px; }
  .lead { font-size: .9rem; line-height: 1.72; margin-bottom: 14px; }
  .note { font-size: .82rem; }
  .cs-tag { font-size: .65rem; padding: 5px 11px; }
  .feat-list { gap: 9px; margin-bottom: 18px; }
  .feat-list li { font-size: .88rem; gap: 10px; }
  .feat-list li .icon { width: 20px; height: 20px; }
  .steps-list { gap: 14px; margin-bottom: 20px; }
  .steps-list li { font-size: .88rem; gap: 12px; }
  .step-num { width: 28px; height: 28px; font-size: .75rem; }
  .cs-cta { font-size: .85rem; padding: 13px 26px; width: 100%; justify-content: center; }

  .pricing { padding: 44px 14px 56px; }
  .pricing-head h2 { font-size: clamp(1.15rem, 5vw, 1.6rem); margin-bottom: 16px; }
  .pricing-devices { max-width: 100%; }
  .pricing-sub { font-size: .88rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; gap: 20px; }
  .p-head { padding: 18px 14px 14px; }
  .p-head .p-duration { font-size: 1.3rem; }
  .p-price { padding: 18px 14px 14px; }
  .p-num { font-size: 3rem; }
  .p-features { padding: 6px 16px 2px; }
  .p-features li { font-size: .82rem; padding: 9px 0; }
  .p-footer { padding: 14px 16px 4px; }
  .p-btn { font-size: .88rem; padding: 13px; }
  .p-payment { padding: 10px 16px 16px; }
  .p-payment .secure { font-size: .68rem; }
  .p-payment img { max-width: 180px; }

  .guide-wrap { padding: 28px 16px 56px; }
  .toc { padding: 18px; }
  .intro-box { padding: 18px 20px; }
  .creds-box { padding: 20px; }
  .device-header { gap: 12px; }
  .device-icon { width: 40px; height: 40px; border-radius: 10px; }
  .device-icon svg { width: 20px; height: 20px; }
  .step-item { padding: 14px 16px; gap: 12px; }
  .step-n { width: 26px; height: 26px; font-size: .72rem; }
  .step-text { font-size: .86rem; }
  .tips-section { padding: 24px 18px; }
  .access-box { padding: 24px 18px; }
  .access-grid { grid-template-columns: 1fr; }
  .access-cta { width: 100%; justify-content: center; font-size: .88rem; }

  .about-wrap { padding: 36px 18px 60px; }
  .values-grid { grid-template-columns: 1fr; }
  .about-mission { padding: 22px; }
  .about-cta { padding: 32px 20px; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }

  .footer { padding: 40px 16px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-brand img { height: 50px; margin-bottom: 14px; }
  .footer-brand p { font-size: .85rem; }
  .footer-social { margin-top: 16px; }
  .footer-col h4 { font-size: .75rem; margin-bottom: 14px; }
  .footer-col ul { gap: 10px; }
  .footer-col ul li a { font-size: .83rem; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 16px 0; }
  .footer-bottom p { font-size: .76rem; }
  .footer-bottom-links { gap: 14px; flex-wrap: wrap; justify-content: center; }
  .footer-bottom-links a { font-size: .76rem; }

  .wa-fab { bottom: 18px; right: 16px; width: 50px; height: 50px; }
  .wa-fab svg { width: 26px; height: 26px; }
}

/* ── Small phone  ≤ 380px ── */
@media (max-width: 380px) {
  nav { padding: 0 12px; height: 60px; }
  .nav-logo img { height: 44px; }
  .nav-mobile { top: 60px; }

  .page-hero { margin-top: 60px; }
  .hero { padding-top: 60px; }
  .hero-title { font-size: 1.15rem; }
  .hero-logo-img { height: 72px; }
  .hero-desc { font-size: .85rem; }
  .btn-trial { font-size: .7rem; letter-spacing: .5px; }
  .btn-plans { font-size: .85rem; }

  .trustbar { font-size: .76rem; padding: 12px 10px; }
  .star { width: 15px; height: 15px; }

  .pricing-grid { max-width: 100%; }
  .p-num { font-size: 2.6rem; }
}

/* ── FAQ SECTION ── */
.faq-section {
  background: var(--dark2);
  padding: 90px 52px;
  position: relative;
}
.faq-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--sep), transparent);
}
 
.faq-wrap { max-width: 820px; margin: 0 auto; }
 
/* Header */
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,95,212,.18); border: 1px solid rgba(26,95,212,.35); color: #6fa8ff;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .72rem;
  letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px;
  border-radius: 50px; margin-bottom: 18px;
}
.faq-head h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.2rem); color: #fff;
  line-height: 1.2; margin-bottom: 14px;
}
.faq-head h2 span { color: var(--blue-light); }
.faq-head p { font-size: .97rem; color: var(--muted); line-height: 1.75; }
.faq-head p a { color: var(--blue-light); text-decoration: none; border-bottom: 1px solid rgba(42,120,245,.4); transition: border-color .2s; }
.faq-head p a:hover { border-color: var(--blue-light); }
 
/* FAQ list */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
 
.faq-item {
  background: var(--dark3); border: 1px solid var(--sep);
  border-radius: 12px; overflow: hidden;
  transition: border-color .25s;
}
.faq-item.open { border-color: rgba(26,95,212,.4); }
 
/* Question button */
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px;
  background: none; border: none; cursor: pointer; text-align: left;
}
.faq-q span {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .97rem;
  color: #fff; line-height: 1.4; flex: 1;
  transition: color .2s;
}
.faq-item.open .faq-q span { color: #6fa8ff; }
 
.faq-icon {
  width: 20px; height: 20px; stroke: rgba(255,255,255,.45); flex-shrink: 0;
  transition: transform .3s ease, stroke .2s;
}
.faq-item.open .faq-icon { transform: rotate(180deg); stroke: #6fa8ff; }
 
/* Answer panel */
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 24px 20px;
}
.faq-a p {
  font-size: .93rem; color: var(--muted); line-height: 1.8;
  margin-bottom: 10px;
}
.faq-a p:last-child { margin-bottom: 0; }
.faq-a a { color: var(--blue-light); text-decoration: none; border-bottom: 1px solid rgba(42,120,245,.4); transition: border-color .2s; }
.faq-a a:hover { border-color: var(--blue-light); }
.faq-a ul {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  margin: 10px 0 12px; padding: 0;
}
.faq-a ul li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--muted);
}
.faq-a ul li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
}
.faq-a ul li strong { color: #fff; }
 
/* Separator between q and a */
.faq-item.open .faq-q {
  border-bottom: 1px solid var(--sep);
}
 
/* ── Responsive ── */
@media (max-width: 900px) {
  .faq-section { padding: 64px 28px; }
}
@media (max-width: 640px) {
  .faq-section { padding: 48px 16px; }
  .faq-head { margin-bottom: 32px; }
  .faq-q { padding: 16px 18px; gap: 12px; }
  .faq-q span { font-size: .9rem; }
  .faq-icon { width: 18px; height: 18px; }
  .faq-a { padding: 0 18px; }
  .faq-item.open .faq-a { padding: 0 18px 16px; }
  .faq-a p { font-size: .88rem; }
}


/* ── PRIVACY PAGE SPECIFIC ── */
.policy-wrap {
  max-width: 860px; margin: 0 auto;
  padding: 64px 40px 90px;
}

.policy-meta {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 48px; flex-wrap: wrap;
}
.policy-updated {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,95,212,.12); border: 1px solid rgba(26,95,212,.25);
  color: #6fa8ff; font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: .78rem; padding: 6px 14px; border-radius: 50px;
}
.policy-updated svg { width: 13px; height: 13px; stroke: #6fa8ff; }

/* Section blocks */
.policy-block {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--sep);
}
.policy-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.policy-block h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.15rem; color: #fff;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.policy-block h2 .num {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(26,95,212,.2); border: 1px solid rgba(26,95,212,.35);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; color: #6fa8ff; flex-shrink: 0;
}

.policy-block p {
  font-size: .95rem; color: var(--muted); line-height: 1.85;
  margin-bottom: 12px;
}
.policy-block p:last-child { margin-bottom: 0; }
.policy-block p strong { color: #fff; }

.policy-block ul {
  list-style: none; display: flex; flex-direction: column;
  gap: 10px; margin: 14px 0;
}
.policy-block ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .93rem; color: var(--muted); line-height: 1.7;
}
.policy-block ul li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0; margin-top: 8px;
}
.policy-block ul li strong { color: #fff; }

/* Highlight box */
.policy-highlight {
  background: rgba(26,95,212,.08); border: 1px solid rgba(26,95,212,.2);
  border-left: 3px solid var(--blue);
  border-radius: 0 10px 10px 0; padding: 18px 22px; margin: 18px 0;
  font-size: .92rem; color: var(--muted); line-height: 1.8;
}
.policy-highlight strong { color: #fff; }

/* Contact box */
.policy-contact {
  background: var(--dark2); border: 1px solid var(--sep);
  border-radius: 14px; padding: 32px; text-align: center; margin-top: 52px;
}
.policy-contact h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.1rem; color: #fff; margin-bottom: 10px;
}
.policy-contact p { font-size: .93rem; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.policy-contact a.contact-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--blue); color: #fff; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .88rem;
  padding: 13px 28px; border-radius: 50px;
  box-shadow: 0 4px 18px rgba(26,95,212,.4);
  transition: background .2s, transform .2s;
}
.policy-contact a.contact-btn:hover { background: var(--blue-dk); transform: translateY(-2px); }
.policy-contact a.contact-btn svg { width: 16px; height: 16px; }

/* Responsive */
@media (max-width: 900px) {
  .policy-wrap { padding: 48px 28px 72px; }
}
@media (max-width: 640px) {
  .policy-wrap { padding: 32px 18px 60px; }
  .page-hero { margin-top: 66px; }
  .policy-block h2 { font-size: 1.05rem; }
  .policy-contact { padding: 24px 18px; }
}
.policy-wrap { max-width: 860px; margin: 0 auto; padding: 64px 40px 90px; }
.policy-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; }
.policy-updated {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,95,212,.12); border: 1px solid rgba(26,95,212,.25);
  color: #6fa8ff; font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: .78rem; padding: 6px 14px; border-radius: 50px;
}
.policy-updated svg { width: 13px; height: 13px; stroke: #6fa8ff; }
.policy-highlight {
  background: rgba(26,95,212,.08); border: 1px solid rgba(26,95,212,.2);
  border-left: 3px solid var(--blue);
  border-radius: 0 10px 10px 0; padding: 18px 22px; margin-bottom: 44px;
  font-size: .92rem; color: var(--muted); line-height: 1.8;
}
.policy-highlight strong { color: #fff; }
.policy-block { margin-bottom: 44px; padding-bottom: 44px; border-bottom: 1px solid var(--sep); }
.policy-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.policy-block h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.15rem; color: #fff;
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.policy-block h2 .num {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(26,95,212,.2); border: 1px solid rgba(26,95,212,.35);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; color: #6fa8ff; flex-shrink: 0;
}
.policy-block p { font-size: .95rem; color: var(--muted); line-height: 1.85; margin-bottom: 12px; }
.policy-block p:last-child { margin-bottom: 0; }
.policy-block p strong { color: #fff; }
.policy-block ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 14px 0; }
.policy-block ul li { display: flex; align-items: flex-start; gap: 10px; font-size: .93rem; color: var(--muted); line-height: 1.7; }
.policy-block ul li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex-shrink: 0; margin-top: 8px; }
.policy-block ul li strong { color: #fff; }
.policy-contact {
  background: var(--dark2); border: 1px solid var(--sep);
  border-radius: 14px; padding: 32px; text-align: center; margin-top: 52px;
}
.policy-contact h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.1rem; color: #fff; margin-bottom: 10px; }
.policy-contact p { font-size: .93rem; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.policy-contact a.contact-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--blue); color: #fff; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .88rem;
  padding: 13px 28px; border-radius: 50px;
  box-shadow: 0 4px 18px rgba(26,95,212,.4);
  transition: background .2s, transform .2s;
}
.policy-contact a.contact-btn:hover { background: var(--blue-dk); transform: translateY(-2px); }
.policy-contact a.contact-btn svg { width: 16px; height: 16px; }
@media (max-width: 900px) { .policy-wrap { padding: 48px 28px 72px; } }
@media (max-width: 640px) {
  .policy-wrap { padding: 32px 18px 60px; }
  .page-hero { margin-top: 66px; }
  .policy-block h2 { font-size: 1.05rem; }
  .policy-contact { padding: 24px 18px; }
}
