/* ============================================================
   ZangCash Pro — Main Stylesheet
   Light Blue Palette | Professional | Responsive
   ============================================================ */

/* ── FONTS ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');

/* ── CSS VARIABLES ──────────────────────────────────────────── */
:root {
  --blue-50:    #eff6ff;
  --blue-100:   #dbeafe;
  --blue-200:   #bfdbfe;
  --blue-300:   #93c5fd;
  --blue-400:   #60a5fa;
  --blue-500:   #3b82f6;
  --blue-600:   #2563eb;
  --blue-700:   #1d4ed8;
  --blue-800:   #1e3a8a;
  --blue-900:   #0f2460;

  --sky-400:    #38bdf8;
  --sky-500:    #0ea5e9;
  --sky-600:    #0284c7;

  --accent:     #f59e0b;
  --accent-lt:  #fef3c7;
  --green:      #10b981;
  --green-lt:   #d1fae5;
  --red:        #ef4444;

  --text-dark:  #0f172a;
  --text-base:  #1e293b;
  --text-mid:   #475569;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  --bg-white:   #ffffff;
  --bg-light:   #f0f7ff;
  --bg-card:    #f8fbff;
  --bg-dark:    #0f2460;

  --border:     #e2edf8;
  --border-mid: #bfdbfe;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(30,90,255,.08);
  --shadow:     0 4px 16px rgba(30,90,255,.12);
  --shadow-lg:  0 12px 40px rgba(30,90,255,.16);
  --shadow-xl:  0 20px 60px rgba(30,90,255,.20);

  --font-body:  'Inter', system-ui, sans-serif;
  --font-head:  'Sora', 'Inter', sans-serif;

  --max-w:      1180px;
  --transition: .25s ease;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-base);
  background: var(--bg-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-700); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; }

/* ── UTILITIES ───────────────────────────────────────────────── */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.sr-only     { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap; }

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.25; color: var(--text-dark); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-title { margin-bottom: 10px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-mid); max-width: 600px; }
.section-header { margin-bottom: 48px; }
.section-header.text-center .section-subtitle { margin: 0 auto; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--sky-600));
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,.45);
}
.btn-outline {
  border: 2px solid var(--blue-600);
  color: var(--blue-600);
  background: transparent;
}
.btn-outline:hover {
  background: var(--blue-600);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--blue-700);
  font-weight: 700;
}
.btn-white:hover { background: var(--blue-50); color: var(--blue-800); }
.btn-accent {
  background: linear-gradient(135deg, var(--accent), #e07d0c);
  color: #fff;
  box-shadow: 0 4px 14px rgba(245,158,11,.35);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,.45); color:#fff; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }

/* ── NAVBAR ──────────────────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--blue-600), var(--sky-500));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
}
.logo-text span { color: var(--blue-600); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--blue-600); background: var(--blue-50); }
.nav-links a.active { color: var(--blue-600); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-dark); border-radius: 2px;
  transition: all .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 20px 20px;
}
#mobile-menu.open { display: block; }
#mobile-menu a {
  display: block;
  padding: 10px 0;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-base);
  border-bottom: 1px solid var(--border);
}
#mobile-menu a:last-child { border-bottom: none; }

/* ── HERO ────────────────────────────────────────────────────── */
#hero {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--sky-600) 60%, var(--blue-500) 100%);
  color: #fff;
  padding: 88px 0 80px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.hero-badge .dot { width:8px;height:8px;background:var(--accent);border-radius:50%;animation:pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.5} }
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title .highlight {
  background: linear-gradient(90deg, var(--accent), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.88); margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 1.8rem; font-weight: 800; color: #fff; font-family: var(--font-head); line-height: 1; }
.hero-stat .lbl { font-size: .75rem; color: rgba(255,255,255,.7); margin-top: 2px; }
.hero-card-wrap { position: relative; }
.hero-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #fff;
}
.hero-card h3 { font-size: 1.1rem; color:#fff; margin-bottom: 18px; }
.earn-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.earn-item:last-child { border-bottom: none; }
.earn-item .icon { width:36px;height:36px;border-radius:10px;background:rgba(255,255,255,.18);display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0; }
.earn-item .info { flex: 1; }
.earn-item .info .name { font-size:.9rem;font-weight:600; }
.earn-item .info .sub  { font-size:.78rem;opacity:.75; }
.earn-item .amount { font-weight:700;font-size:.95rem;color:var(--accent); }
.floating-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dark);
  animation: floatBadge 3s ease-in-out infinite;
}
.floating-badge.top-left  { top:-20px; left:-20px; animation-delay: 0s; }
.floating-badge.bot-right { bottom:-18px; right:-10px; animation-delay: 1.5s; }
@keyframes floatBadge { 0%,100%{transform:translateY(0)}50%{transform:translateY(-6px)} }

/* ── SEARCH BAR ──────────────────────────────────────────────── */
#search-section {
  background: var(--bg-white);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.search-wrap {
  display: flex;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid var(--blue-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.search-wrap:focus-within {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-lg);
}
.search-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--text-base);
  background: transparent;
}
.search-wrap button {
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--blue-600), var(--sky-600));
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity var(--transition);
}
.search-wrap button:hover { opacity: .9; }
#search-results {
  max-width: 680px;
  margin: 12px auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: none;
  overflow: hidden;
}
#search-results.active { display: block; }
#search-results a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-base);
  font-size: .9rem;
}
#search-results a:last-child { border-bottom: none; }
#search-results a:hover { background: var(--bg-light); }
#search-results a .res-icon { font-size: 1rem; width: 28px; text-align: center; }
#search-results a .res-title { font-weight: 600; }
#search-results a .res-cat   { font-size: .78rem; color: var(--text-light); }

/* ── TRUST BAR ───────────────────────────────────────────────── */
#trust-bar {
  background: var(--blue-50);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue-700);
}
.trust-item .icon { font-size: 1.1rem; }

/* ── CATEGORY GRID ───────────────────────────────────────────── */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-light); }
.section-dark { background: var(--bg-dark); color: #fff; }
.section-dark h2,.section-dark h3,.section-dark .section-label { color: #fff; }
.section-dark .section-label { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); color:#fff; }
.section-dark p { color: rgba(255,255,255,.75); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.cat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-600), var(--sky-500));
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 0;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cat-card:hover::after { opacity: 1; }
.cat-card:hover .cat-icon,
.cat-card:hover .cat-name,
.cat-card:hover .cat-count { color: #fff; }
.cat-card:hover .cat-name  { color: #fff; }
.cat-card > * { position: relative; z-index: 1; }
.cat-icon  { font-size: 2rem; margin-bottom: 14px; display: block; }
.cat-name  { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; font-family: var(--font-head); }
.cat-count { font-size: .8rem; color: var(--text-light); }

/* ── SERVICE CARDS ───────────────────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--blue-200); }
.sc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.sc-icon { width:42px;height:42px;border-radius:10px;background:var(--blue-50);display:flex;align-items:center;justify-content:center;font-size:1.3rem;flex-shrink:0; }
.sc-title { font-size: .95rem; font-weight: 700; color: var(--text-dark); line-height: 1.3; }
.sc-desc  { font-size: .85rem; color: var(--text-mid); flex: 1; margin-bottom: 16px; }
.sc-link  { font-size: .85rem; font-weight: 600; color: var(--blue-600); display: flex; align-items: center; gap: 4px; margin-top: auto; }
.sc-link:hover { color: var(--blue-700); }

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(100% / 10);
  right: calc(100% / 10);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-200), var(--sky-400));
}
.step-item { text-align: center; padding: 20px 24px; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue-600), var(--sky-500));
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}
.step-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.step-desc  { font-size: .85rem; color: var(--text-mid); }

/* ── EARNINGS SHOWCASE ───────────────────────────────────────── */
.earnings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.earning-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}
.earning-card:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); }
.ec-amount { font-size: 2rem; font-weight: 800; color: var(--accent); font-family: var(--font-head); }
.ec-label  { font-size: .85rem; color: rgba(255,255,255,.75); margin-top: 4px; }
.ec-meta   { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 8px; }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.testi-card::before {
  content: '"';
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--blue-100);
  line-height: 1;
  position: absolute;
  top: 10px; left: 20px;
}
.testi-stars { color: #f59e0b; font-size: .9rem; margin-bottom: 12px; }
.testi-quote { font-size: .95rem; color: var(--text-mid); font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue-600), var(--sky-500));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff; font-weight: 700;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .9rem; color: var(--text-dark); }
.testi-loc  { font-size: .78rem; color: var(--text-light); }
.testi-amount {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-lt);
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 4px;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width: 780px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--blue-300); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  background: none;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-light); }
.faq-item.open .faq-question { background: var(--blue-50); color: var(--blue-700); }
.faq-chevron {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--blue-100); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: var(--blue-600);
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--blue-600); color: #fff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding var(--transition);
  padding: 0 22px;
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 600px; padding: 0 22px 18px; }

/* ── CTA SECTION ─────────────────────────────────────────────── */
#cta-section {
  background: linear-gradient(135deg, var(--blue-800), var(--sky-600));
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
#cta-section::before {
  content:'';
  position:absolute;
  width:600px;height:600px;
  background:rgba(255,255,255,.05);
  border-radius:50%;
  top:-200px; right:-100px;
}
#cta-section h2 { color: #fff; margin-bottom: 14px; }
#cta-section p  { color: rgba(255,255,255,.82); margin-bottom: 32px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────────── */
#footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: .88rem; margin-top: 14px; line-height: 1.7; color: rgba(255,255,255,.6); }
.footer-col h4 { font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-col a  { display: block; font-size: .85rem; color: rgba(255,255,255,.6); padding: 4px 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--sky-400); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width:36px;height:36px;
  background:rgba(255,255,255,.1);
  border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  font-size:1rem;color:rgba(255,255,255,.7);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--blue-600); color: #fff; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--sky-400); }

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb-bar {
  background: var(--bg-light);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: .82rem;
}
.breadcrumb { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { color: var(--blue-600); font-weight: 500; }
.breadcrumb a:hover { color: var(--blue-700); }
.breadcrumb .sep { color: var(--text-light); }
.breadcrumb .current { color: var(--text-mid); }

/* ── SERVICE PAGE SPECIFIC ───────────────────────────────────── */
.service-hero {
  background: linear-gradient(135deg, var(--blue-800), var(--sky-600));
  padding: 60px 0 50px;
  color: #fff;
}
.service-hero h1 { color: #fff; margin-bottom: 12px; }
.service-hero .intro-text { font-size: 1.05rem; color: rgba(255,255,255,.85); max-width: 680px; }
.service-hero .meta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 20px; }
.service-hero .meta-tag {
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 600;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff; border-radius: 100px; padding: 5px 14px;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.main-content { min-width: 0; }
.side-sticky { position: sticky; top: 88px; }

.prose-section { padding: 48px 0; border-bottom: 1px solid var(--border); }
.prose-section:last-of-type { border-bottom: none; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.benefit-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.benefit-item:hover { border-color: var(--blue-300); box-shadow: var(--shadow-sm); }
.ben-icon {
  width:44px;height:44px;
  background: linear-gradient(135deg, var(--blue-600), var(--sky-500));
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  font-size:1.2rem;color:#fff;flex-shrink:0;
}
.ben-title { font-size:.9rem;font-weight:700;color:var(--text-dark);margin-bottom:4px; }
.ben-desc  { font-size:.82rem;color:var(--text-mid); }

.who-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.who-item {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 14px 16px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--text-base);
}
.who-item::before { content: '✓'; color: var(--blue-600); font-weight: 700; flex-shrink: 0; }

.locations-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.loc-tag {
  padding: 6px 14px;
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue-700);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.compare-table th {
  padding: 14px 20px;
  font-size: .9rem;
  font-weight: 700;
  text-align: left;
}
.compare-table th:first-child { background: #fff4f4; color: var(--red); }
.compare-table th:last-child  { background: var(--blue-600); color: #fff; }
.compare-table td {
  padding: 13px 20px;
  font-size: .88rem;
  border-top: 1px solid var(--border);
  vertical-align: top;
}
.compare-table tr td:first-child { background: #fffafa; color: var(--text-mid); }
.compare-table tr td:first-child::before { content: '✗ '; color: var(--red); font-weight: 700; }
.compare-table tr td:last-child { background: #f0f7ff; color: var(--text-base); }
.compare-table tr td:last-child::before { content: '✓ '; color: var(--green); font-weight: 700; }

.kw-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.kw-tag {
  padding: 5px 12px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-sm);
  font-size: .78rem;
  color: var(--blue-700);
}

/* Sidebar */
.sidebar-card {
  background: linear-gradient(135deg, var(--blue-700), var(--sky-600));
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #fff;
  margin-bottom: 20px;
}
.sidebar-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 10px; }
.sidebar-card p  { color: rgba(255,255,255,.82); font-size: .88rem; margin-bottom: 20px; }
.sidebar-card .btn { width: 100%; justify-content: center; }
.sidebar-related h4 { font-size: .9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.sidebar-related a  { display: flex; align-items: center; gap: 8px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: .85rem; color: var(--text-base); }
.sidebar-related a:last-child { border-bottom: none; }
.sidebar-related a:hover { color: var(--blue-600); }
.sidebar-related a::before { content: '→'; color: var(--blue-400); }

/* ── PAGINATION ──────────────────────────────────────────────── */
.pagination { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 40px; justify-content: center; }
.pagination a, .pagination span {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: all var(--transition);
}
.pagination a:hover { border-color: var(--blue-400); color: var(--blue-600); }
.pagination .active { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }

/* ── TOAST ───────────────────────────────────────────────────── */
#toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--text-dark);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: .88rem;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all .35s ease;
  display: flex; align-items: center; gap: 10px;
  max-width: 320px;
}
#toast.show { transform: translateY(0); opacity: 1; }
#toast.success { background: var(--green); }
#toast.error   { background: var(--red); }

/* ── BACK TO TOP ─────────────────────────────────────────────── */
#back-top {
  position: fixed;
  bottom: 80px; right: 24px;
  width: 44px; height: 44px;
  background: var(--blue-600);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
  font-size: 1.1rem;
}
#back-top.visible { opacity: 1; pointer-events: auto; }
#back-top:hover   { background: var(--blue-700); transform: translateY(-2px); }

/* ── LOADING SKELETON ────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, #e8f4ff 25%, #d0e8ff 50%, #e8f4ff 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ── ANIMATIONS ──────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── SITEMAP PAGE ────────────────────────────────────────────── */
.sitemap-links { column-count: 3; column-gap: 24px; }
.sitemap-links a { display: block; padding: 4px 0; font-size: .85rem; break-inside: avoid; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner         { grid-template-columns: 1fr; }
  .hero-card-wrap     { display: none; }
  .content-layout     { grid-template-columns: 1fr; }
  .side-sticky        { position: static; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
}
@media (max-width: 768px) {
  .nav-links,.nav-cta { display: none; }
  .burger             { display: flex; }
  h1                  { font-size: 2rem; }
  h2                  { font-size: 1.6rem; }
  .section            { padding: 52px 0; }
  .cat-grid           { grid-template-columns: repeat(2, 1fr); }
  .service-grid       { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; gap: 32px; }
  .testi-grid         { grid-template-columns: 1fr; }
  .compare-table th,
  .compare-table td   { padding: 10px 14px; font-size: .82rem; }
  .sitemap-links      { column-count: 1; }
  .hero-stats         { gap: 20px; }
  .trust-inner        { gap: 20px; }
}
@media (max-width: 480px) {
  .container          { padding: 0 14px; }
  .cat-grid           { grid-template-columns: repeat(2, 1fr); }
  .hero-title         { font-size: 1.8rem; }
  .hero-actions       { flex-direction: column; }
  .hero-actions .btn  { width: 100%; justify-content: center; }
  .btn-lg             { padding: 14px 24px; }
}

/* ── PRINT ───────────────────────────────────────────────────── */
@media print {
  #navbar,#back-top,#toast,.btn,.hero-card-wrap,#cta-section { display: none !important; }
  body { font-size: 12pt; }
  a    { color: inherit; }
}