/* LightningX VPN — brand CSS derived from LightXtreme VPN design tokens */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root {
  --orange:        #ff8e15;
  --orange-dark:   #ff8400;
  --cta-from:      #ffbd1a;
  --cta-to:        #ffe71a;
  --cta-h-from:    #ff9900;
  --cta-h-to:      #ffe400;
  --dark:          #262626;
  --dark-alt:      #292929;
  --body-text:     rgba(0,0,0,.65);
  --muted:         #8a8e95;
  --muted2:        #969696;
  --bg:            #f9fbfc;
  --surface:       #f5f7fb;
  --white:         #ffffff;
  --border:        rgba(165,186,193,.28);
  --border2:       #e0e0e0;
  --footer-bg:     #252525;
  --footer-dark:   #383838;
  --warm-accent:   #ffe3a8;
  --shadow-hdr:    0 3px 20px #e0ecf180;
  --shadow-panel:  0 0 50px #dbebf345;
  --shadow-card:   0 10px 30px #adb7bc4d;
  --r-sm:   4px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   20px;
  --r-2xl:  30px;
  --r-3xl:  60px;
  --r-pill: 100px;
  --transition: .3s;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px; line-height: 1.5; color: var(--body-text); background: var(--bg);
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--dark); text-decoration: none; }
ul   { list-style: none; padding: 0; margin: 0; }
h1,h2,h3,h4 { margin-top: 0; line-height: 1.25; color: var(--dark); }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white); box-shadow: var(--shadow-hdr); height: 64px;
}
.nav {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  padding: 0 24px; height: 64px; gap: 0;
}
.brand { display: flex; align-items: center; flex-shrink: 0; margin-right: 20px; }
.logo  { height: 40px; width: auto; max-width: 200px; object-fit: contain; }

.nav-links {
  display: flex; align-items: center;
  flex: 0 0 auto; margin-left: auto; gap: 0;
}
.nav-links > li > a {
  display: inline-block; height: 64px; line-height: 64px;
  color: var(--dark); font-size: 15px; font-weight: 500;
  padding: 0 16px; white-space: nowrap;
  transition: color var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--orange); border-bottom: 2px solid var(--orange); }

.mobile-lang { display: none; }

.nav-right {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.nav-signin {
  color: var(--dark); font-size: 15px; font-weight: 500;
  white-space: nowrap; padding: 0 8px;
  transition: color var(--transition);
}
.nav-signin:hover { color: var(--orange); }

/* ── DROPDOWN / LANG SWITCHER ── */
.dropdown { position: relative; }
.dropdown-panel {
  position: absolute; top: 100%; right: 0;
  padding-top: 6px; display: none; min-width: 130px; z-index: 1001;
}
.dropdown-panel-inner {
  background: var(--white); border: 1px solid var(--border2);
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.dropdown:hover .dropdown-panel,
.dropdown:focus-within .dropdown-panel { display: block; }
.dropdown-panel a {
  display: block; padding: 10px 16px;
  color: var(--dark); font-size: 14px;
  transition: background var(--transition); white-space: nowrap;
}
.dropdown-panel a:hover { background: var(--surface); }

.lang-btn {
  background: none; border: none;
  color: var(--dark); padding: 4px 0;
  cursor: pointer; font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 4px;
  transition: color var(--transition);
}
.lang-btn:hover { color: var(--orange); }

/* ── CTA BUTTONS ── */
.btn-cta {
  display: inline-block; min-width: 120px; padding: 10px 20px;
  background: linear-gradient(90deg, var(--cta-from) 4%, var(--cta-to) 98%);
  border-radius: var(--r-2xl); color: var(--dark);
  font-size: 14px; font-weight: 600; text-align: center;
  transition: background var(--transition); white-space: nowrap;
}
.btn-cta:hover {
  background: linear-gradient(90deg, var(--cta-h-from) 3%, var(--cta-h-to));
}
.btn-cta-lg {
  display: inline-block; min-width: 180px; padding: 14px 30px;
  background: linear-gradient(90deg, var(--cta-from) 4%, var(--cta-to) 98%);
  border-radius: var(--r-2xl); color: var(--dark);
  font-size: 16px; font-weight: 700; text-align: center;
  transition: background var(--transition);
}
.btn-cta-lg:hover {
  background: linear-gradient(90deg, var(--cta-h-from) 3%, var(--cta-h-to));
}
.btn-dark {
  display: inline-block; min-width: 160px; padding: 12px 24px;
  background: var(--dark); border-radius: 215px;
  color: var(--white); font-size: 15px; font-weight: 600;
  text-align: center; transition: background var(--transition);
}
.btn-dark:hover { background: #444; }
.btn-outline {
  display: inline-block; min-width: 160px; padding: 12px 24px;
  border: 1px solid var(--dark); border-radius: var(--r-2xl);
  color: var(--dark); font-size: 15px; font-weight: 600;
  text-align: center; transition: all var(--transition);
}
.btn-outline:hover { background: var(--dark); color: var(--white); }

/* ── HAMBURGER ── */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--dark); font-size: 22px; padding: 8px;
  flex-shrink: 0; order: 999;
}

/* ── MAIN OFFSET (below fixed header) ── */
main { margin-top: 64px; }

/* ── HOME: HERO ── */
.home-hero {
  background: url('/assets/images/home1_bg.BlfZpT3k.82f0e12b.png') left center / contain no-repeat, var(--bg);
  padding: 0 24px;
}
.home-hero-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 80px 0; flex-wrap: wrap; gap: 24px;
}
.hero-left { width: 48%; }
.hero-right { width: 45%; }
.hero-right img { width: 100%; height: auto; }
.free-trial {
  display: inline-flex; align-items: center;
  background: linear-gradient(to bottom, #fa0, red);
  color: #fff; padding: 6px 18px; border-radius: var(--r-md);
  font-size: 12px; font-weight: 700; margin-bottom: 16px;
}
.hero-left h1 {
  font-size: 38px; font-weight: 700; color: var(--dark);
  line-height: 1.25; margin: 0 0 12px;
}
.hero-left h1 span { color: var(--orange); }
.hero-strapline {
  font-size: 16px; color: var(--muted); letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.hero-cta-group {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
}

/* ── HOME: WHITE INFO BAND ── */
.home-info-band {
  background: var(--white); border-radius: var(--r-pill);
  padding: 80px 24px; margin: 0 24px;
  box-shadow: var(--shadow-panel);
}
.home-info-band-inner {
  max-width: 1140px; margin: 0 auto;
}
.band-title {
  text-align: center; font-size: 32px; font-weight: 700;
  color: var(--dark); margin-bottom: 48px;
}
.feature-row {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px;
}
.feature-item {
  flex: 1; min-width: 260px; text-align: center;
}
.feature-item img { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 16px; }
.feature-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.feature-item p  { font-size: 14px; color: var(--body-text); line-height: 1.6; }

/* ── HOME: SPLIT FEATURE ROWS ── */
.home-split { padding: 80px 24px; }
.home-split-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.home-split-inner.reverse { flex-direction: row-reverse; }
.home-split-text { flex: 1; }
.home-split-text h2 { font-size: 30px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.home-split-text p  { font-size: 15px; color: var(--body-text); line-height: 1.7; margin-bottom: 12px; }
.home-split-text ul { margin: 16px 0; }
.home-split-text li { padding: 6px 0; display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--body-text); }
.home-split-text li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.home-split-img { flex: 1; }
.home-split-img img { width: 100%; height: auto; border-radius: var(--r-lg); }

/* ── HOME: OPERATION SECTION ── */
.home-operation {
  background: var(--surface); padding: 80px 24px; text-align: center;
}
.home-operation h2 { font-size: 30px; font-weight: 700; margin-bottom: 32px; }
.home-operation img { max-width: 900px; margin: 0 auto; width: 100%; }

/* ── HOME: MULTI-DEVICE ── */
.home-devices {
  background: var(--white); padding: 80px 24px; text-align: center;
}
.home-devices h2 { font-size: 30px; font-weight: 700; margin-bottom: 32px; }
.home-devices img { max-width: 960px; margin: 0 auto; width: 100%; }

/* ── HOME: REVIEWS ── */
.home-reviews { padding: 80px 24px; background: var(--bg); }
.home-reviews-inner { max-width: 1140px; margin: 0 auto; }
.reviews-title { text-align: center; font-size: 30px; font-weight: 700; margin-bottom: 40px; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.review-card {
  background: var(--white); border-radius: var(--r-lg); padding: 24px;
  box-shadow: var(--shadow-panel);
}
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.review-name  { font-weight: 700; font-size: 15px; color: var(--dark); }
.review-stars { color: var(--orange); font-size: 13px; margin-top: 2px; }
.review-text  { font-size: 14px; color: var(--body-text); line-height: 1.7; }

/* ── GUARANTEE ── */
.guarantee-section {
  padding: 0 24px 80px;
}
.guarantee-inner {
  max-width: 1140px; margin: 0 auto;
  background: var(--white); border-radius: var(--r-2xl);
  box-shadow: var(--shadow-panel); padding: 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.guarantee-text h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.guarantee-text p  { font-size: 15px; color: var(--body-text); max-width: 520px; line-height: 1.7; }
.guarantee-img img { width: 120px; height: auto; }

/* ── FAQ ── */
.faq-section { padding: 80px 24px; background: var(--surface); }
.faq-section-inner { max-width: 1140px; margin: 0 auto; }
.section-title { font-size: 32px; font-weight: 700; text-align: center; margin-bottom: 40px; color: var(--dark); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border2); background: var(--white); margin-bottom: 4px; border-radius: var(--r-md); overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 18px 20px; font-size: 15px; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--dark); gap: 12px;
}
.faq-q i { color: var(--orange); flex-shrink: 0; transition: transform var(--transition); font-size: 13px; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 20px 18px; font-size: 14px; color: var(--body-text); line-height: 1.8; }
.faq-item.open .faq-a { display: block; }

/* ── DOWNLOAD PAGE ── */
.download-header { text-align: center; padding: 50px 24px 0; }
.download-header h1 { font-size: 38px; font-weight: 700; color: var(--dark); margin: 0 0 12px; }
.refund-row {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: var(--muted2); font-weight: 600; font-size: 15px; letter-spacing: 2px;
  padding: 16px; margin-bottom: 8px;
}
.download-platform-bar {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 8px 0; margin-bottom: 0;
}
.platform-grid-dl {
  max-width: 1140px; margin: 20px auto; padding: 0 16px;
  display: flex; flex-wrap: wrap; justify-content: space-around; gap: 8px;
}
.platform-tile {
  width: 100px; height: 100px; cursor: pointer;
  display: flex; align-items: center; flex-direction: column; justify-content: center;
  gap: 8px; border-radius: var(--r-xl); transition: all var(--transition);
  color: var(--dark); font-size: 13px; font-weight: 500; text-align: center;
}
.platform-tile img { width: 36px; height: 36px; object-fit: contain; margin: 0 auto; }
.platform-tile:hover,
.platform-tile.active { background: #ff8e151f; color: var(--orange); }
.platform-section { display: none; padding: 60px 24px; }
.platform-section.active { display: block; }
.platform-section-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap;
}
.platform-text { flex: 1; min-width: 280px; }
.platform-text h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.platform-text p  { font-size: 15px; color: var(--body-text); line-height: 1.7; margin-bottom: 20px; }
.platform-text ul { margin: 0 0 24px; }
.platform-text li { padding: 6px 0; display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.platform-text li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.platform-img { flex: 1; min-width: 240px; text-align: center; }
.platform-img img { max-width: 480px; width: 100%; height: auto; }
.platform-steps { max-width: 1140px; margin: 56px auto 48px; padding: 0 24px; }
.steps-grid {
  display: flex; gap: 40px; flex-wrap: wrap;
}
.step-item { flex: 1; min-width: 200px; text-align: center; }
.step-badge {
  width: 60px; height: 30px; margin: 0 auto 12px;
  background: var(--orange); border-radius: 25px; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.step-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.step-item p  { font-size: 14px; color: var(--body-text); line-height: 1.6; }

/* ── PRICING PAGE ── */
.pricing-header { text-align: center; padding: 50px 24px 0; }
.pricing-header h1 { font-size: 38px; font-weight: 700; color: var(--dark); margin: 0 0 12px; }
.pricing-main { max-width: 1140px; margin: 40px auto; padding: 0 24px; }
.device-selector {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px;
}
.device-btn {
  padding: 10px 24px; height: 48px;
  background: var(--bg); border-radius: 468px; border: 1px solid #b8c2c7;
  display: flex; align-items: center; cursor: pointer;
  font-size: 14px; color: var(--dark); font-family: inherit;
  transition: all var(--transition); white-space: nowrap;
}
.device-btn.active,
.device-btn:hover { border-color: var(--orange); color: var(--orange); }
.plans-grid {
  display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
}
.plan-card {
  width: 210px; border-radius: var(--r-lg);
  background: var(--white); box-shadow: var(--shadow-card);
  cursor: pointer; padding: 20px 14px; border: 2px solid var(--white);
  position: relative; transition: border-color var(--transition);
  flex-shrink: 0;
}
.plan-card:hover,
.plan-card.selected { border-color: var(--orange); }
.plan-tag {
  width: fit-content; padding: 5px 20px;
  background: var(--dark-alt); border-radius: var(--r-sm) var(--r-sm) var(--r-sm) 0;
  color: var(--warm-accent); font-size: 13px;
  position: relative; top: -8px; left: -3px; z-index: 1; margin-bottom: 4px;
}
.plan-period { font-size: 14px; font-weight: 700; color: var(--dark); }
.plan-price { font-size: 30px; font-weight: 700; color: var(--dark); margin: 8px 0 4px; }
.plan-day   { font-size: 13px; color: var(--orange); font-weight: 600; }
.plan-orig  { font-size: 13px; color: var(--muted); text-decoration: line-through; margin-top: 6px; }
.payment-section { margin-top: 48px; text-align: center; }
.payment-section h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 20px; text-align: left; }
.payment-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pay-card {
  width: 120px; border-radius: var(--r-lg);
  background: var(--white); padding: 20px 10px;
  text-align: center; cursor: pointer;
  box-shadow: var(--shadow-card); border: 2px solid var(--white);
  font-size: 13px; font-weight: 600; color: var(--dark);
  transition: border-color var(--transition);
}
.pay-card:hover,
.pay-card.selected { border-color: var(--orange); }
.pay-card i  { font-size: 28px; color: var(--muted); margin-bottom: 8px; display: inline-block; }
.pay-fa-icon { font-size: 28px; color: var(--muted); display: inline-block; margin-bottom: 8px; }
.pay-img-icon { width: 32px; height: 32px; display: block; margin: 0 auto 8px; }
.pay-icon-row { display: flex; justify-content: center; align-items: center; gap: 6px; margin-bottom: 8px; }
.pricing-features-section { max-width: 1140px; margin: 64px auto; padding: 0 24px; }
.pricing-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pf-card {
  background: var(--white); border-radius: var(--r-lg); padding: 24px;
  box-shadow: var(--shadow-panel);
}
.pf-card i  { font-size: 28px; color: var(--orange); margin-bottom: 12px; }
.pf-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.pf-card p  { font-size: 14px; color: var(--body-text); line-height: 1.6; }

/* ── AFFILIATE PAGE ── */
.affiliate-hero {
  max-width: 1200px; margin: 60px auto;
  padding: 40px 30px;
  background: url('/assets/images/bg.Dzcx7dtC.de222c88.png') center / cover no-repeat;
  border-radius: var(--r-3xl);
}
.affiliate-hero-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 32px;
}
.affiliate-hero-left { padding: 30px; flex: 1; min-width: 280px; }
.affiliate-hero-left h2 { font-size: 22px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.affiliate-hero-left h1 { font-size: 40px; font-weight: 700; color: var(--dark); margin-bottom: 16px; line-height: 1.2; }
.dollar-pill {
  display: inline-block; background: var(--orange-dark);
  color: var(--white); border-radius: var(--r-md);
  padding: 8px 20px; font-weight: 700; font-size: 18px;
  margin-bottom: 12px;
}
.aff-secondary { font-size: 14px; color: var(--body-text); margin-top: 16px; }
.aff-secondary a { color: var(--orange); }
.affiliate-hero-right { flex: 1; min-width: 240px; text-align: center; }
.affiliate-hero-right img { max-width: 540px; width: 100%; height: auto; }
.affiliate-why { background: var(--white); padding: 60px 24px; }
.affiliate-why-inner { max-width: 1140px; margin: 0 auto; }
.affiliate-why h2 { font-size: 38px; font-weight: 700; text-align: center; margin-bottom: 40px; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.why-card { text-align: center; padding: 24px; }
.why-card img { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 16px; }
.why-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.why-card p  { font-size: 14px; color: var(--body-text); line-height: 1.7; }
.commission-section {
  background: var(--footer-dark); padding: 60px 24px; color: var(--white); text-align: center;
}
.commission-section h2 { font-size: 38px; font-weight: 700; margin-bottom: 16px; }
.commission-section p { font-size: 15px; color: rgba(255,255,255,.75); margin-bottom: 32px; }
.commission-table-wrap { overflow-x: auto; margin: 0 auto; max-width: 900px; }
table {
  margin: auto; border-collapse: collapse;
  background: var(--white); border-radius: var(--r-2xl); overflow: hidden;
  min-width: 600px; width: 100%;
}
table thead tr { background: var(--footer-dark); color: var(--white); }
table th, table td {
  height: 60px; font-size: 16px; font-weight: 700;
  padding: 10px 16px; text-align: center;
}
table th { color: var(--white); }
table td { color: var(--dark); }
.table-orange { background: #ff84001a; color: var(--orange); }
.affiliate-steps { padding: 80px 24px; background: var(--bg); text-align: center; }
.affiliate-steps h2 { font-size: 38px; font-weight: 700; margin-bottom: 48px; }
.steps-how {
  max-width: 900px; margin: 0 auto 48px;
  display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.step-how { flex: 1; min-width: 200px; text-align: center; }
.step-num {
  width: 60px; height: 60px; border-radius: 50%; background: var(--orange);
  color: var(--white); font-size: 24px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.step-how h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step-how p  { font-size: 14px; color: var(--body-text); line-height: 1.7; }
.affiliate-final-cta { max-width: 520px; margin: 0 auto; text-align: center; padding: 80px 24px; }
.affiliate-final-cta h2 { font-size: 30px; font-weight: 700; margin-bottom: 24px; }

/* ── BLOG PAGE ── */
.blog-header { text-align: center; padding: 60px 24px 32px; background: var(--white); border-bottom: 1px solid var(--border2); }
.blog-header h1 { font-size: 36px; font-weight: 700; color: var(--dark); margin: 0; }
.blog-main { max-width: 1140px; margin: 0 auto; padding: 40px 24px; }
.blog-spotlight { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; margin-bottom: 48px; }
.spotlight-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-panel); }
.spotlight-card img { width: 100%; height: 240px; object-fit: cover; }
.spotlight-body { padding: 24px; }
.spotlight-body h2 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 12px; line-height: 1.4; }
.spotlight-body p  { font-size: 14px; color: var(--body-text); line-height: 1.7; }
.spotlight-meta  { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.blog-sidebar h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.sidebar-list li { border-bottom: 1px solid var(--border2); padding: 12px 0; }
.sidebar-list li a { font-size: 14px; color: var(--dark); font-weight: 600; line-height: 1.4; }
.sidebar-list li a:hover { color: var(--orange); }
.sidebar-meta { font-size: 12px; color: var(--muted); margin-top: 4px; }
.blog-grid-title { font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 24px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.blog-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-panel); transition: box-shadow var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-card); }
.blog-card img { width: 100%; height: 160px; object-fit: cover; }
.blog-card-body { padding: 16px; }
.blog-card-body h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.blog-card-body p  { font-size: 13px; color: var(--body-text); line-height: 1.6; }
.blog-card-meta { font-size: 11px; color: var(--muted); margin-top: 8px; }

/* ── HELP/FAQ PAGE ── */
.faq-page-header { text-align: center; padding: 60px 24px 32px; }
.faq-page-header h1 { font-size: 38px; font-weight: 700; color: var(--dark); margin: 0 0 12px; }
.faq-page-header p  { font-size: 16px; color: var(--body-text); max-width: 560px; margin: 0 auto; }
.faq-cats { max-width: 1140px; margin: 32px auto 0; padding: 0 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.faq-cat-btn {
  padding: 8px 20px; border-radius: var(--r-2xl);
  background: var(--white); border: 1px solid var(--border2);
  color: var(--dark); font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit;
  transition: all var(--transition);
}
.faq-cat-btn.active,
.faq-cat-btn:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.faq-page-content { max-width: 1140px; margin: 0 auto; padding: 32px 24px 80px; }

/* ── PRIVACY / TERMS ── */
.page-header { text-align: center; padding: 60px 24px 32px; background: var(--surface); }
.page-header h1 { font-size: 36px; font-weight: 700; color: var(--dark); margin: 0; }
.prose { max-width: 860px; margin: 0 auto; padding: 40px 24px 80px; font-size: 15px; line-height: 1.8; color: var(--body-text); }
.prose h2 { font-size: 22px; font-weight: 700; color: var(--dark); margin-top: 40px; margin-bottom: 12px; }
.prose h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-top: 28px; margin-bottom: 8px; }
.prose p  { margin-bottom: 16px; }
.prose ul { margin: 12px 0 16px 24px; list-style: disc; }
.prose ul li { margin-bottom: 6px; }
.prose a { color: var(--orange); }

/* ── FOOTER ── */
.site-footer {
  background: var(--footer-bg); color: rgba(255,255,255,.75);
  padding: 55px 50px 25px;
}
.footer-inner {
  max-width: 1140px; margin: 0 auto;
}
.footer-main {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px;
  margin-bottom: 32px;
}
.footer-brand { max-width: 300px; }
.footer-logo  { width: 200px; height: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.65); }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 16px; letter-spacing: .5px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: 14px; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-payment { text-align: center; margin-bottom: 32px; }
.footer-payment img { height: 36px; width: auto; margin: 0 auto; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.social-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 16px; transition: background var(--transition);
}
.social-icon:hover { background: linear-gradient(to bottom, #ffea62, #fc870a); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,.5);
}

/* ── MOBILE MENU ── */
@media (max-width: 1279px) {
  .nav { position: relative; }
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: center; background: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,.12); padding: 16px 0;
    z-index: 999; height: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; text-align: center; }
  .nav-links > li > a { display: block; width: 100%; padding: 14px 0; height: auto; line-height: 1.4; border-bottom: none !important; }
  .nav-links > li > a:hover { color: var(--orange); background: var(--surface); }
  .nav { padding: 0 8px 0 16px; }
  .nav-right { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; margin-left: auto; padding: 8px 8px; }
  .mobile-lang {
    display: flex; justify-content: center; gap: 16px;
    padding: 14px 0; border-top: 1px solid var(--border2); width: 100%;
  }
  .nav-links li.mobile-lang a {
    display: inline-block; width: auto; height: auto; line-height: 1.4;
    padding: 6px 14px; font-size: 15px; color: var(--muted); border-bottom: none !important;
  }
  .nav-links li.mobile-lang a.active { color: var(--orange); font-weight: 700; }
}

@media (max-width: 900px) {
  .pricing-features-grid { grid-template-columns: repeat(2, 1fr); }
  .home-hero-inner { flex-direction: column; padding: 48px 0; }
  .hero-left, .hero-right { width: 100%; }
  .hero-right { display: none; }
  .hero-left h1 { font-size: 28px; }
  .home-split-inner, .home-split-inner.reverse { flex-direction: column; }
  .home-split-img { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-spotlight { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .affiliate-hero-right { display: none; }
  .affiliate-hero-left h1 { font-size: 28px; }
  .plans-grid { flex-direction: column; align-items: center; }
  .plan-card { width: 100%; max-width: 480px; display: flex; justify-content: space-between; align-items: center; }
  .pay-card { width: 100%; max-width: 480px; display: flex; align-items: center; gap: 12px; text-align: left; }
  .platform-section-inner { flex-direction: column; }
  .platform-img { display: none; }
  .footer-main { flex-direction: column; gap: 24px; }
  .home-info-band { margin: 0 8px; border-radius: 24px; }
  .feature-row { flex-direction: column; align-items: center; }
}

@media (max-width: 620px) {
  .pricing-features-grid { grid-template-columns: 1fr; }
  .hero-left h1 { font-size: 26px; }
  .download-header h1, .pricing-header h1, .section-title { font-size: 26px; }
  .platform-tile { width: 80px; height: 80px; font-size: 11px; }
  .platform-tile img { width: 28px; height: 28px; }
  .blog-grid { grid-template-columns: 1fr; }
  .btn-cta-lg, .btn-dark, .btn-outline, .btn-cta {
    width: 90%; max-width: 90%; font-size: 16px; padding: 15px 5px; font-weight: 700; text-align: center;
    display: block; margin: 10px auto;
  }
  .hero-cta-group { flex-direction: column; align-items: center; width: 100%; }
  .hero-cta-group a { width: 90%; max-width: 90%; text-align: center; display: block; margin: 6px auto; }
  .guarantee-inner { flex-direction: column; text-align: center; }
  .affiliate-hero { margin: 16px; border-radius: 24px; }
  /* ensure any standalone CTA link is centered */
  .home-split-text a.btn-cta-lg,
  .platform-text a.btn-cta-lg,
  .guarantee-text a.btn-cta-lg,
  .affiliate-steps a.btn-cta-lg { display: block; margin: 10px auto; }
}

/* ── UTILITY ── */
.text-center  { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.section-sub { font-size: 16px; color: var(--body-text); text-align: center; max-width: 680px; margin: 0 auto 40px; }
