/* DesignX Media — Shared Stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:     #07091a;
  --bg2:    #0c0f26;
  --bg3:    #111535;
  --card:   rgba(17,21,53,.85);
  --border: rgba(120,78,248,.15);
  --purple: #784ef8;
  --blue:   #1e87f6;
  --teal:   #00d48a;
  --white:  #f0f2ff;
  --gray:   #8892b0;
  --gray2:  #7c85a0;        /* A11y: lightened from #5a6480 to pass 4.5:1 on dark backgrounds */
  --purple-text: #a98cff;  /* A11y: lighter purple ONLY for small text/links (brand --purple stays for fills/borders) */
  --blue-btn: #1a72d4;     /* A11y: slightly darker blue ONLY for button gradients so white labels pass 4.5:1 */
  --focus:  #a98cff;       /* Focus ring color */
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(120,78,248,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,78,248,.035) 1px, transparent 1px);
  background-size: 52px 52px;
}

/* ── Utilities ── */
.grad-text {
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 50%, var(--teal) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.container { max-width: 1160px; margin: 0 auto; padding: 0 48px; position: relative; z-index: 1; }
section { position: relative; z-index: 1; }

/* ── Buttons ── */
.btn-primary {
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff; font-size: 14px; font-weight: 600; border: none;
  border-radius: 8px; cursor: pointer; font-family: 'Poppins', sans-serif;
  transition: opacity .2s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { opacity: .85; }
.btn-ghost {
  padding: 13px 28px; background: transparent; color: var(--gray);
  font-size: 14px; font-weight: 500; border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; cursor: pointer; font-family: 'Poppins', sans-serif;
  transition: all .2s; text-decoration: none; display: inline-block;
}
.btn-ghost:hover { border-color: rgba(120,78,248,.5); color: var(--white); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Section labels ── */
.sec-label { font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--purple); margin-bottom: 10px; }
.sec-title { font-size: 40px; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 12px; }
.sec-title-sm { font-size: 32px; }   /* narrower columns: newsletter, contact intro */
.sec-sub { font-size: 15px; color: var(--gray); margin-bottom: 48px; max-width: 520px; }

/* ── Section layout ──
   Page templates use these instead of inline style="padding:…". An inline
   style outranks every selector, so any value set that way is unreachable
   from responsive.css and can never scale down. Keep layout in classes. */
.section { padding: 88px 0; }
.post-body { padding: 72px 0 96px; }
.hero-section { position: relative; overflow: hidden; }

/* ── Cards ── */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 36px 30px;
  backdrop-filter: blur(8px);
}
.card-hover { transition: transform .2s, border-color .2s, box-shadow .2s; position: relative; overflow: hidden; }
.card-hover::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--blue), var(--teal));
  transform: scaleX(0); transition: transform .3s; transform-origin: left;
}
.card-hover:hover::before { transform: scaleX(1); }
.card-hover:hover { transform: translateY(-4px); border-color: rgba(120,78,248,.35); box-shadow: 0 16px 48px rgba(120,78,248,.1); }

/* ════════ HEADER / NAV ════════ */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,9,26,.9); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 48px; max-width: 1160px; margin: 0 auto;
}
.nav-logo img { height: 36px; display: block; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--gray); font-size: 13.5px; font-weight: 500;
  text-decoration: none; transition: color .2s; padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); border-color: var(--purple); }
.nav-cta {
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff; font-size: 13px; font-weight: 600;
  border: none; border-radius: 7px; cursor: pointer;
  font-family: 'Poppins', sans-serif; transition: opacity .2s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { opacity: .85; }

/* ════════ PAGE HERO (inner pages) ════════ */
.page-hero {
  padding: 80px 0 72px; text-align: center; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-glow {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 400px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(120,78,248,.07) 0%, transparent 65%);
}
.page-hero-label { font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--purple); margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(40px, 5vw, 60px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 16px; }
.page-hero p { font-size: 16px; color: var(--gray); max-width: 520px; margin: 0 auto; }

/* ════════ TRUST BAR ════════ */
.trust-bar {
  padding: 24px 0; border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.015);
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-label-sm { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gray2); }
.trust-clients { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; justify-content: center; }
.trust-client { font-size: 14px; font-weight: 600; color: var(--gray2); opacity: .7; }

/* ════════ FOOTER ════════ */
footer {
  background: #040614; border-top: 1px solid var(--border);
  padding: 48px; position: relative; z-index: 1;
}
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand img { height: 34px; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 13px; color: var(--gray); line-height: 1.7; max-width: 220px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 13px; color: var(--gray); text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.05);
  font-size: 12px; color: var(--gray2);
}
.footer-bottom a { color: var(--gray2); text-decoration: none; margin-left: 20px; }
.footer-bottom a:hover { color: var(--gray); }
.footer-nap { font-size: 12px; color: var(--gray2); text-align: center; padding: 4px 0 20px; border-top: 1px solid rgba(255,255,255,.05); margin-top: -8px; }
.nap-phone {
  color: inherit;
  text-decoration: none;
}
/* ════════ FORMS ════════ */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 11px; font-weight: 600; color: var(--gray); margin-bottom: 7px; letter-spacing: .06em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; color: var(--white); font-family: 'Poppins', sans-serif; font-size: 14px;
  outline: none; transition: border-color .2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray2); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(120,78,248,.5); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--bg3); color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff; font-size: 14px; font-weight: 700; border: none;
  border-radius: 8px; cursor: pointer; font-family: 'Poppins', sans-serif;
  transition: opacity .2s;
}
.form-submit:hover { opacity: .87; }

/* ════════ CTA BANNER ════════ */
.cta-banner {
  padding: 96px 0; text-align: center; position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(120,78,248,.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { font-size: 50px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 16px; line-height: 1.1; position: relative; }
.cta-banner p { font-size: 16px; color: var(--gray); margin-bottom: 36px; position: relative; }
.cta-banner .btn-row { justify-content: center; position: relative; }

/* ════════ STAR RATINGS ════════ */
.stars { display: flex; gap: 2px; }
.star { color: #fbbf24; font-size: 15px; }

/* ═══════════════════════════════════════════════════════════
   ACCESSIBILITY REMEDIATION (WCAG 2.1 AA)
   Appended block — do not edit above; all overrides live here.
   ═══════════════════════════════════════════════════════════ */

/* 1. Skip link — visually hidden until focused */
.skip-link {
  position: absolute; left: 8px; top: -48px;
  z-index: 1000; padding: 10px 18px;
  background: #0c0f26; color: #fff;
  border: 2px solid var(--focus); border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: top .15s ease;
}
.skip-link:focus { top: 8px; }

/* 2. Screen-reader-only utility for hidden link context */
.sr-only {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* 3. Visible keyboard focus on every interactive element */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--focus) !important;
  outline-offset: 2px !important;
  border-radius: 4px;
}
/* Form fields already null their outline on :focus — restore a visible ring */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible,
.newsletter-input:focus-visible {
  outline: 2px solid var(--focus) !important;
  outline-offset: 2px !important;
  border-color: var(--focus) !important;
}

/* 4. Contrast — small purple TEXT/links lightened to pass 4.5:1 (brand fills untouched) */
.sec-label,
.page-hero-label,
.pricing-tier,
.svc-num,
.testi-company,
.blog-read,
.hero-badge { color: var(--purple-text) !important; }

/* trust-client: drop opacity that was crushing contrast */
.trust-client { color: var(--gray2) !important; opacity: 1 !important; }

/* 5. Contrast — white labels on button gradients: use darker blue endpoint */
.btn-primary,
.nav-cta,
.form-submit,
.pricing-btn-p,
.newsletter-btn,
.why-num,
.cta-banner .btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--blue-btn)) !important;
}
.pricing-card.featured::before {
  background: linear-gradient(135deg, var(--purple), var(--blue-btn)) !important;
}

/* 6. In-body / paragraph links must be distinguishable by more than color */
.pricing-note a,
.legal-content p a,
.legal-content li a,
.post-content p a { text-decoration: underline !important; color: var(--purple-text) !important; }

/* 7. Reduced motion — disable all animation/transition for users who ask */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto !important; }
  .hero-badge-dot { animation: none !important; }
}

/* ╔═══════════════════════════════════════════════════════════╗
   ║  PAGE-SPECIFIC STYLES (consolidated from page templates)  ║
   ╚═══════════════════════════════════════════════════════════╝ */

/* ═══════════════════════════════════════════════════════════
   PAGE: Home (front-page)
   ═══════════════════════════════════════════════════════════ */
/* ── Home Hero ── */
.hero {
  padding: 96px 0 104px; display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: center; min-height: 88vh;
}
.hero-glow { position: absolute; left: 25%; top: 20%; transform: translate(-50%,-50%); width: 900px; height: 700px; pointer-events: none; background: radial-gradient(ellipse, rgba(120,78,248,.08) 0%, transparent 60%); }
.hero-glow2 { position: absolute; right: 5%; bottom: 10%; width: 400px; height: 400px; pointer-events: none; background: radial-gradient(ellipse, rgba(0,212,138,.05) 0%, transparent 65%); }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(120,78,248,.1); border: 1px solid rgba(120,78,248,.3); color: var(--purple); padding: 6px 16px; border-radius: 20px; font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 28px; }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero h1 { font-size: clamp(50px, 5vw, 70px); font-weight: 800; line-height: 1.07; letter-spacing: -.02em; margin-bottom: 22px; }
.hero-sub { font-size: 16px; line-height: 1.75; color: var(--gray); margin-bottom: 40px; max-width: 460px; }
/* Proof card */
.proof-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 36px; backdrop-filter: blur(8px); position: relative; overflow: hidden; }
.proof-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--purple), var(--blue), var(--teal)); }
.proof-label { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gray2); margin-bottom: 24px; }
.proof-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.proof-num { font-size: 36px; font-weight: 800; line-height: 1; background: linear-gradient(135deg, var(--purple), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.proof-lbl { font-size: 12px; color: var(--gray); margin-top: 4px; }
.proof-quote { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); border-radius: 10px; padding: 20px; font-size: 13px; line-height: 1.65; color: var(--gray); font-style: italic; }
.proof-author { margin-top: 10px; font-size: 12px; font-weight: 600; color: var(--teal); font-style: normal; }

/* Services preview */
.services-preview { padding: 88px 0; }
.svcs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(120,78,248,.12); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.svc-icon svg { width: 22px; height: 22px; }
.svc-name { font-size: 16px; font-weight: 700; margin-bottom: 9px; }
.svc-desc { font-size: 13px; line-height: 1.7; color: var(--gray); }
.svcs-more { text-align: center; margin-top: 36px; }

/* Testimonial strip */
.testi-strip { padding: 88px 0; background: var(--bg2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.testi-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; padding: 32px; }
.testi-quote { font-size: 14px; line-height: 1.7; color: var(--gray); font-style: italic; margin: 14px 0 16px; }
.testi-author { font-size: 12px; font-weight: 700; color: var(--white); }
.testi-company { font-size: 11px; color: var(--purple); margin-top: 2px; }

/* Responsive */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; gap: 40px; min-height: 0; padding: 64px 0 72px; }
  .proof-stats { grid-template-columns: 1fr 1fr; }
  .svcs-grid, .testi-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   PAGE: Blog index (home)
   ═══════════════════════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.blog-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: transform .2s, border-color .2s; text-decoration: none; display: block; color: var(--white); }
.blog-card:hover { transform: translateY(-4px); border-color: rgba(120,78,248,.35); }
.blog-img { width: 100%; aspect-ratio: 16/9; display: block; position: relative; overflow: hidden; background: linear-gradient(135deg,rgba(120,78,248,.2),rgba(30,135,246,.15)); }
.blog-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 28px; }
.blog-cat { font-size: 10px; font-weight: 700; color: var(--teal); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.blog-title { font-size: 16px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; color: var(--white); }
.blog-excerpt { font-size: 13px; color: var(--gray); line-height: 1.65; margin-bottom: 20px; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: var(--gray2); }
.blog-read { color: var(--purple-text); font-weight: 600; font-size: 12px; }
.newsletter { padding: 88px 0; background: var(--bg2); }
.newsletter-inner { max-width: 520px; margin: 0 auto; text-align: center; }
.newsletter-form { display: flex; gap: 12px; margin-top: 28px; }
.newsletter-input { flex: 1; padding: 13px 18px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; color: var(--white); font-family: 'Poppins', sans-serif; font-size: 14px; }
.newsletter-btn { padding: 13px 24px; background: linear-gradient(135deg, var(--purple), var(--blue-btn)); color: #fff; font-size: 13px; font-weight: 700; border: none; border-radius: 8px; cursor: pointer; font-family: 'Poppins', sans-serif; white-space: nowrap; }

/* ═══════════════════════════════════════════════════════════
   PAGE: About
   ═══════════════════════════════════════════════════════════ */
.about-story { padding: 88px 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 48px; position: relative; overflow: hidden; }
.about-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 10%, rgba(120,78,248,.15) 0%, transparent 55%); }
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; position: relative; }
.about-stat { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); border-radius: 10px; padding: 24px; text-align: center; }
.about-stat-num { font-size: 36px; font-weight: 800; background: linear-gradient(135deg, var(--purple), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-stat-lbl { font-size: 12px; color: var(--gray); margin-top: 4px; }
.values { padding: 88px 0; background: var(--bg2); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.value-card { border: 1px solid var(--border); border-radius: 12px; padding: 36px; background: var(--bg3); }
.value-letter { font-size: 48px; font-weight: 800; background: linear-gradient(135deg, var(--purple), var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 16px; }
.value-name { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.value-desc { font-size: 13.5px; color: var(--gray); line-height: 1.7; }
.team { padding: 88px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.team-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color .2s; }
.team-card:hover { border-color: rgba(120,78,248,.4); }
.team-avatar { width: 100%; padding: 48px 0 40px; background: var(--bg2); display: flex; align-items: center; justify-content: center; position: relative; }
.team-avatar::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 60%, rgba(120,78,248,.12) 0%, transparent 65%); }
.team-initials { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--blue)); display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 800; color: #fff; position: relative; }
.team-info { padding: 28px; }
.team-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 11px; color: var(--teal); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.team-bio { font-size: 13px; color: var(--gray); line-height: 1.65; }
.testi-section { padding: 88px 0; background: var(--bg2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.testi-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; padding: 32px; }
.testi-quote { font-size: 14px; line-height: 1.7; color: var(--gray); font-style: italic; margin: 12px 0 16px; }
.testi-author { font-size: 12px; font-weight: 700; color: var(--white); }
.testi-company { font-size: 11px; color: var(--purple-text); margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════
   PAGE: Services
   ═══════════════════════════════════════════════════════════ */
.svcs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 52px; }
.svc-card { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; }
.svc-icon-lg { width: 56px; height: 56px; border-radius: 12px; background: rgba(120,78,248,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.svc-icon-lg svg { width: 26px; height: 26px; }
.svc-num { font-size: 10px; font-weight: 700; color: var(--purple-text); letter-spacing: .12em; margin-bottom: 8px; }
.svc-name { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.svc-desc { font-size: 13.5px; line-height: 1.7; color: var(--gray); margin-bottom: 14px; }
.svc-features { display: flex; flex-direction: column; gap: 6px; }
.svc-feat { font-size: 12.5px; color: var(--gray2); display: flex; gap: 8px; align-items: flex-start; }
.svc-feat::before { content: '\2713'; color: var(--teal); font-weight: 700; flex-shrink: 0; font-size: 13px; }
.process { padding: 88px 0; background: var(--bg2); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 48px; }
.process-step { background: var(--bg3); padding: 32px 24px; border: 1px solid var(--border); }
.process-num { font-size: 10px; font-weight: 800; color: var(--purple-text); letter-spacing: .14em; margin-bottom: 14px; }
.process-step h3 { font-size: 15px; font-weight: 700; margin-bottom: 9px; }
.process-step p { font-size: 12.5px; color: var(--gray); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════
   PAGE: Pricing
   ═══════════════════════════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.pricing-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 40px 36px; transition: transform .2s, border-color .2s; position: relative; }
.pricing-card.featured { border-color: rgba(120,78,248,.5); background: rgba(120,78,248,.07); }
.pricing-card.featured::before { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--purple), var(--blue-btn)); color: #fff; font-size: 10px; font-weight: 700; padding: 4px 14px; border-radius: 20px; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.pricing-card:hover { transform: translateY(-4px); border-color: rgba(120,78,248,.4); }
.pricing-tier { font-size: 10px; font-weight: 700; color: var(--purple-text); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px; }
.pricing-name { font-size: 22px; font-weight: 800; margin-bottom: 20px; }
.pricing-price { font-size: 48px; font-weight: 800; line-height: 1; background: linear-gradient(135deg, var(--purple), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pricing-freq { font-size: 13px; color: var(--gray); margin-bottom: 28px; margin-top: 4px; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 24px; }
.pricing-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.pricing-feat { display: flex; gap: 10px; font-size: 13px; color: var(--gray); }
.pricing-feat-check { color: var(--teal); flex-shrink: 0; font-size: 14px; }
.pricing-btn { width: 100%; padding: 13px; font-size: 14px; font-weight: 700; border-radius: 8px; cursor: pointer; font-family: 'Poppins', sans-serif; transition: opacity .2s; text-decoration: none; display: block; text-align: center; }
.pricing-btn-p { background: linear-gradient(135deg, var(--purple), var(--blue-btn)); color: #fff; border: none; }
.pricing-btn-g { background: transparent; color: var(--gray); border: 1px solid rgba(255,255,255,.12); }
.pricing-btn:hover { opacity: .85; }
.pricing-note { text-align: center; margin-top: 28px; font-size: 13px; color: var(--gray); }
.pricing-note a { color: var(--purple-text); text-decoration: underline; }
.faq { padding: 88px 0; background: var(--bg2); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.faq-item { background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; padding: 28px 32px; }
.faq-q { font-size: 14px; font-weight: 600; margin-bottom: 10px; color: var(--white); }
.faq-a { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   PAGE: Contact
   ═══════════════════════════════════════════════════════════ */
.contact-section { padding: 88px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-info { padding-top: 4px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(120,78,248,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; color: var(--purple-text); }
.contact-detail h3 { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.contact-detail p { font-size: 13px; color: var(--gray); }
.contact-form-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 44px; position: relative; overflow: hidden; }
.contact-form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--purple), var(--blue), var(--teal)); }
.form-title { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.form-sub { font-size: 13px; color: var(--gray); margin-bottom: 28px; }
.quick-faq { padding: 88px 0; background: var(--bg2); }
.quick-faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; }
.faq-item { background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; padding: 24px 28px; }
.faq-q { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.faq-a { font-size: 13px; color: var(--gray); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════
   PAGE: Single post
   ═══════════════════════════════════════════════════════════ */
.single-post-inner { max-width: 760px; margin: 0 auto; }
.post-content { font-size: 15px; line-height: 1.85; color: var(--gray); }
.post-content h2, .post-content h3 { color: var(--white); font-weight: 700; margin: 36px 0 14px; line-height: 1.2; }
.post-content h2 { font-size: 26px; }
.post-content h3 { font-size: 20px; }
.post-content p { margin-bottom: 20px; }
.post-content ul, .post-content ol { margin: 0 0 20px 24px; }
.post-content li { margin-bottom: 8px; }
.post-content a { color: var(--purple-text); text-decoration: underline; }
.post-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 24px 0; }
.post-content blockquote { border-left: 3px solid var(--purple); padding-left: 20px; margin: 24px 0; font-style: italic; color: var(--gray); }
.post-content strong { color: var(--white); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   PAGE: Legal / Accessibility
   ═══════════════════════════════════════════════════════════ */
.legal-body { padding: 72px 0 96px; }
.legal-content { max-width: 760px; }
.legal-content h2 { font-size: 22px; font-weight: 700; margin: 48px 0 14px; color: var(--white); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 14.5px; color: var(--gray); line-height: 1.85; margin-bottom: 16px; }
.legal-content a { color: var(--purple-text); text-decoration: underline; }
.legal-meta { font-size: 13px; color: var(--gray2); margin-bottom: 48px; display: block; }
.owner-note { background: rgba(120,78,248,.08); border: 1px dashed rgba(120,78,248,.4); border-radius: 10px; padding: 20px 24px; color: var(--white); font-size: 14px; margin: 16px 0; }