/*
Theme Name: DX Media Theme
Author: DesignX Media
Version: 1.0
*/
/* 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:  #5a6480;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg) !important;
  color: var(--white) !important;
  font-family: 'Poppins', sans-serif !important;
  line-height: 1.6 !important;
  overflow-x: hidden !important;
}

/* Force WordPress to not interfere with our layouts */
body .hero,
body .container,
body .services-grid,
body .svcs-grid,
body .proof-card,
body .testi-grid,
body .footer-top,
body nav {
  all: revert;
}

body .hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; min-height: 88vh; padding: 96px 0 104px; }
body .container { max-width: 1160px; margin: 0 auto; padding: 0 48px; position: relative; z-index: 1; }
body .svcs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
body .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
body .footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
body nav { display: flex; align-items: center; justify-content: space-between; padding: 15px 48px; max-width: 1160px; margin: 0 auto; }
body .nav-links { display: flex; gap: 28px; list-style: none; }

body .proof-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 36px; position: relative; overflow: hidden; }
body .proof-label { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gray2); margin-bottom: 24px; }
body .proof-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
body .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; }
body .proof-lbl { font-size: 12px; color: var(--gray); margin-top: 4px; }
body .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; }
body .proof-author { margin-top: 10px; font-size: 12px; font-weight: 600; color: var(--teal); font-style: normal; display: block; }
body .card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 36px 30px; }
body .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; }
body .hero h1 { font-size: clamp(50px, 5vw, 70px); font-weight: 800; line-height: 1.07; letter-spacing: -.02em; margin-bottom: 22px; }
body .hero-sub { font-size: 16px; line-height: 1.75; color: var(--gray); margin-bottom: 40px; max-width: 460px; }
body .btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

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-sub { font-size: 15px; color: var(--gray); margin-bottom: 48px; max-width: 520px; }

/* ── 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); }

/* ════════ 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; }

/* Nav logo fix */
body .nav-logo img { height: 36px; width: auto; display: block; }

/* Nav layout fix */
body header nav { display: flex; align-items: center; justify-content: space-between; padding: 15px 48px; max-width: 1160px; margin: 0 auto; }
body .nav-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
body .nav-links li { margin: 0; padding: 0; }
body .nav-links a { color: var(--gray); font-size: 13.5px; font-weight: 500; text-decoration: none; }

/* SVG icon fix */
body .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; flex-shrink: 0; }
body .svc-icon svg { width: 22px !important; height: 22px !important; max-width: 22px; max-height: 22px; }

/* Footer grid fix */
body footer .footer-top { display: grid !important; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
body footer .footer-col { display: block; }
body footer .footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
body footer .footer-brand img { height: 34px; width: auto; display: block; margin-bottom: 14px; }
body .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); }

/* Section padding fixes */
body .services-preview { padding: 88px 0; }
body .trust-bar { padding: 24px 0; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.015); }
body .trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
body .trust-clients { display: flex; gap: 40px; align-items: center; }
body .testi-strip { padding: 88px 0; background: var(--bg2); }
body .testi-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; padding: 32px; }
body .testi-quote { font-size: 14px; line-height: 1.7; color: var(--gray); font-style: italic; margin: 12px 0 16px; }
body .testi-author { font-size: 12px; font-weight: 700; color: var(--white); }
body .testi-company { font-size: 11px; color: var(--purple); margin-top: 2px; }
body .cta-banner { padding: 96px 0; text-align: center; position: relative; border-top: 1px solid var(--border); }
body .cta-banner h2 { font-size: 50px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 16px; line-height: 1.1; }
body .cta-banner p { font-size: 16px; color: var(--gray); margin-bottom: 36px; }
body .cta-banner .btn-row { justify-content: center; }

/* Nav fixes - higher specificity */
body > header { position: sticky; top: 0; z-index: 100; background: rgba(7,9,26,.9); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
body > header nav { display: flex !important; align-items: center !important; justify-content: space-between !important; padding: 15px 48px !important; max-width: 1160px !important; margin: 0 auto !important; flex-wrap: nowrap !important; }
body > header .nav-logo img { height: 36px !important; width: auto !important; display: block !important; max-height: 36px !important; }
body > header ul.nav-links { display: flex !important; flex-direction: row !important; gap: 28px !important; list-style: none !important; margin: 0 !important; padding: 0 !important; flex-wrap: nowrap !important; }
body > header ul.nav-links li { margin: 0 !important; padding: 0 !important; display: inline !important; }
body > header ul.nav-links a { color: var(--gray) !important; font-size: 13.5px !important; font-weight: 500 !important; text-decoration: none !important; border-bottom: none !important; }
body > header a.nav-cta { padding: 9px 22px !important; background: linear-gradient(135deg, var(--purple), var(--blue)) !important; color: #fff !important; font-size: 13px !important; font-weight: 600 !important; border-radius: 7px !important; text-decoration: none !important; white-space: nowrap !important; }

/* Remove WordPress extra spacing */
body main { margin: 0 !important; padding: 0 !important; }
body main > section { margin: 0 !important; }
body main > div { margin-top: 0 !important; }
body .wp-site-blocks { padding: 0 !important; margin: 0 !important; }
body .entry-content { margin: 0 !important; padding: 0 !important; }
body .hero { margin-bottom: 0 !important; }

/* Fix min-height on hero so it doesn't add too much space */
body .hero { min-height: auto !important; padding: 80px 0 88px !important; margin: 0 !important; }
body main { margin: 0 !important; padding: 0 !important; display: block !important; }
body main > section:first-child { margin-top: 0 !important; padding-top: 0 !important; }
body .wp-site-blocks { padding-top: 0 !important; padding-bottom: 0 !important; margin: 0 !important; }
body.home { padding-top: 0 !important; margin-top: 0 !important; }
body .site { margin: 0 !important; padding: 0 !important; }
body #page { margin: 0 !important; padding: 0 !important; }
body #content { margin: 0 !important; padding: 0 !important; }
body .entry-content, body .post-content { margin: 0 !important; padding: 0 !important; }

/* About page */
body .about-inner { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 80px !important; align-items: center !important; }
body .about-stat-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 24px !important; }
body .about-stat { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); border-radius: 10px; padding: 24px; text-align: center; }
body .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; }
body .about-visual { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 48px; position: relative; overflow: hidden; }
body .value-letter { font-size: 48px !important; font-weight: 800 !important; background: linear-gradient(135deg, var(--purple), var(--teal)); -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; line-height: 1 !important; margin-bottom: 16px !important; display: block !important; }
body .values-grid { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 20px !important; margin-top: 52px !important; }
body .value-card { border: 1px solid var(--border); border-radius: 12px; padding: 36px; background: var(--bg3); }
body .team-grid { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 20px !important; margin-top: 52px !important; }
body .team-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
body .team-avatar { width: 100%; padding: 48px 0 40px; background: var(--bg2); display: flex; align-items: center; justify-content: center; }
body .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; }
body .team-info { padding: 28px; }
body .why-inner { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 80px !important; align-items: center !important; }

/* Services page */
body .svcs-grid { display: grid !important; grid-template-columns: repeat(2,1fr) !important; gap: 20px !important; margin-top: 52px !important; }
body .svc-card { display: grid !important; grid-template-columns: auto 1fr !important; gap: 24px !important; align-items: start !important; }
body .svc-icon-lg { width: 56px !important; height: 56px !important; min-width: 56px !important; border-radius: 12px; background: rgba(120,78,248,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
body .svc-icon-lg svg { width: 26px !important; height: 26px !important; max-width: 26px !important; max-height: 26px !important; }
body .svc-features { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
body .svc-feat { font-size: 12.5px; color: var(--gray2); display: flex; gap: 8px; align-items: flex-start; list-style: none; }
body .svc-feat::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
body .process-grid { display: grid !important; grid-template-columns: repeat(4,1fr) !important; gap: 2px !important; margin-top: 48px !important; }
body .process-step { background: var(--bg3); padding: 32px 24px; border: 1px solid var(--border); }

/* Contact page */
body .contact-inner { display: grid !important; grid-template-columns: 1fr 1.3fr !important; gap: 80px !important; align-items: start !important; }
body .contact-details { display: flex !important; flex-direction: column !important; gap: 20px !important; margin-top: 36px !important; }
body .contact-detail { display: flex !important; gap: 16px !important; align-items: flex-start !important; }
body .contact-icon { width: 40px !important; height: 40px !important; min-width: 40px !important; border-radius: 10px; background: rgba(120,78,248,.12); display: flex; align-items: center; justify-content: center; font-size: 18px; }
body .contact-form-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 44px; }
body .quick-faq-grid { display: grid !important; grid-template-columns: repeat(2,1fr) !important; gap: 16px !important; margin-top: 48px !important; }
body .faq-item { background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; padding: 24px 28px; }

/* Pricing page */
body .pricing-grid { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 20px !important; margin-top: 52px !important; }
body .pricing-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 40px 36px; position: relative; }
body .pricing-card.featured { border-color: rgba(120,78,248,.5) !important; background: rgba(120,78,248,.07) !important; }
body .pricing-price { font-size: 48px !important; font-weight: 800 !important; background: linear-gradient(135deg, var(--purple), var(--blue)); -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; line-height: 1 !important; display: block !important; }
body .pricing-features { display: flex !important; flex-direction: column !important; gap: 11px !important; margin-bottom: 32px !important; list-style: none !important; padding: 0 !important; }
body .pricing-feat { display: flex !important; gap: 10px !important; font-size: 13px !important; color: var(--gray) !important; list-style: none !important; }
body .pricing-feat-check { color: var(--teal) !important; flex-shrink: 0 !important; }
body .faq-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 16px !important; margin-top: 48px !important; }

/* Blog page */
body .blog-grid { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 24px !important; margin-top: 52px !important; }
body .blog-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; text-decoration: none !important; display: block; color: var(--white) !important; }
body .blog-card * { color: inherit; text-decoration: none; }
body .blog-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
body .blog-body { padding: 28px; }
body .blog-title { font-size: 16px !important; font-weight: 700 !important; line-height: 1.4 !important; margin-bottom: 10px !important; color: var(--white) !important; }
body .blog-excerpt { font-size: 13px !important; color: var(--gray) !important; line-height: 1.65 !important; margin-bottom: 20px !important; }

/* ── GLOBAL SPACING FIX ── */
body main, body #main, body #content, body .site-content { margin: 0 !important; padding: 0 !important; }
body .wp-site-blocks, body .is-root-container { padding: 0 !important; margin: 0 !important; }
body > div { margin: 0; }

/* ── HERO gap fix ── */
body section:first-of-type { margin-top: 0 !important; }
body .hero-glow, body .hero-glow2 { position: absolute !important; }
body section { position: relative; }

/* ── ABOUT page grids ── */
body .about-story { padding: 88px 0 !important; }
body .about-inner { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 80px !important; align-items: center !important; }
body .about-stat-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 24px !important; }
body .why-inner { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 80px !important; align-items: center !important; }
body .values-grid { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 20px !important; margin-top: 52px !important; }
body .team-grid { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 20px !important; margin-top: 52px !important; }
body .testi-grid { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 16px !important; margin-top: 48px !important; }
body .testi-card { background: var(--bg3) !important; border: 1px solid var(--border) !important; border-radius: 12px !important; padding: 32px !important; }

/* ── SERVICES page ── */
body .svcs-grid.services-page { display: grid !important; grid-template-columns: repeat(2,1fr) !important; gap: 20px !important; }
body .svc-card { display: grid !important; grid-template-columns: auto 1fr !important; gap: 24px !important; }
body .svc-icon-lg { width: 56px !important; height: 56px !important; min-width: 56px !important; flex-shrink: 0 !important; }
body .svc-icon-lg svg { width: 26px !important; height: 26px !important; max-width: 26px !important; max-height: 26px !important; }
body .process-grid { display: grid !important; grid-template-columns: repeat(4,1fr) !important; gap: 2px !important; }

/* ── PRICING page ── */
body .pricing-grid { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 20px !important; margin-top: 52px !important; }
body .pricing-card { background: var(--card) !important; border: 1px solid var(--border) !important; border-radius: 16px !important; padding: 40px 36px !important; position: relative !important; }
body .pricing-card.featured { border-color: rgba(120,78,248,.5) !important; background: rgba(120,78,248,.07) !important; }
body .pricing-features { list-style: none !important; padding: 0 !important; display: flex !important; flex-direction: column !important; gap: 11px !important; }
body .faq-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 16px !important; margin-top: 48px !important; }

/* ── CONTACT page ── */
body .contact-inner { display: grid !important; grid-template-columns: 1fr 1.3fr !important; gap: 80px !important; }
body .contact-details { display: flex !important; flex-direction: column !important; gap: 20px !important; margin-top: 36px !important; }
body .contact-detail { display: flex !important; gap: 16px !important; align-items: flex-start !important; }
body .quick-faq-grid { display: grid !important; grid-template-columns: repeat(2,1fr) !important; gap: 16px !important; margin-top: 48px !important; }

/* ── BLOG page ── */
body .blog-grid { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 24px !important; margin-top: 52px !important; }
body .blog-card { display: block !important; text-decoration: none !important; color: var(--white) !important; }
body .blog-img { width: 100% !important; aspect-ratio: 16/9 !important; object-fit: cover !important; display: block !important; }
body .newsletter-form { display: flex !important; gap: 12px !important; margin-top: 28px !important; }

/* =============================================
   WORDPRESS OVERRIDE — COMPREHENSIVE FIX
   ============================================= */

/* Kill ALL WordPress spacing injections */
body,
body.home,
body.page,
body.single,
body #page,
body .site,
body #content,
body .site-content,
body .wp-site-blocks,
body .is-root-container,
body main,
body main#main-content,
body .entry-content,
body .post-content,
body .page-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body main { padding: 0 !important; margin: 0 !important; display: block !important; }
body .wp-site-blocks { padding: 0 !important; }

/* ── GLOBAL SECTION SPACING ── */
body section { position: relative !important; margin: 0 !important; }
body .container { max-width: 1160px !important; margin: 0 auto !important; padding: 0 48px !important; position: relative !important; z-index: 1 !important; }

/* ── HERO ── */
body .hero {
  display: grid !important;
  grid-template-columns: 1.1fr 1fr !important;
  gap: 64px !important;
  align-items: center !important;
  padding: 80px 48px 88px !important;
  max-width: 1160px !important;
  margin: 0 auto !important;
  min-height: auto !important;
}
body .hero-glow, body .hero-glow2 { position: absolute !important; pointer-events: none !important; }
body .hero h1 { font-size: clamp(50px, 5vw, 70px) !important; font-weight: 800 !important; line-height: 1.07 !important; letter-spacing: -.02em !important; margin-bottom: 22px !important; }
body .hero-sub { font-size: 16px !important; line-height: 1.75 !important; color: var(--gray) !important; margin-bottom: 40px !important; max-width: 460px !important; }
body .hero-badge { display: inline-flex !important; align-items: center !important; gap: 9px !important; background: rgba(120,78,248,.1) !important; border: 1px solid rgba(120,78,248,.3) !important; color: var(--purple) !important; padding: 6px 16px !important; border-radius: 20px !important; font-size: 11px !important; font-weight: 600 !important; letter-spacing: .07em !important; text-transform: uppercase !important; margin-bottom: 28px !important; }
body .btn-row { display: flex !important; gap: 14px !important; flex-wrap: wrap !important; }

/* ── PROOF CARD ── */
body .proof-card { background: var(--card) !important; border: 1px solid var(--border) !important; border-radius: 16px !important; padding: 36px !important; position: relative !important; overflow: hidden !important; }
body .proof-stats { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 20px !important; margin-bottom: 28px !important; }
body .proof-num { font-size: 36px !important; font-weight: 800 !important; line-height: 1 !important; background: linear-gradient(135deg, var(--purple), var(--blue)) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }
body .proof-lbl { font-size: 12px !important; color: var(--gray) !important; margin-top: 4px !important; }
body .proof-quote { background: rgba(255,255,255,.04) !important; border: 1px solid rgba(255,255,255,.06) !important; border-radius: 10px !important; padding: 20px !important; font-size: 13px !important; line-height: 1.65 !important; color: var(--gray) !important; font-style: italic !important; }
body .proof-author { margin-top: 10px !important; font-size: 12px !important; font-weight: 600 !important; color: var(--teal) !important; font-style: normal !important; display: block !important; }

/* ── TRUST BAR ── */
body .trust-bar { padding: 24px 0 !important; border-bottom: 1px solid var(--border) !important; background: rgba(255,255,255,.015) !important; }
body .trust-bar-inner { display: flex !important; align-items: center !important; justify-content: center !important; gap: 48px !important; flex-wrap: wrap !important; }
body .trust-clients { display: flex !important; gap: 40px !important; flex-wrap: wrap !important; }

/* ── SERVICES PREVIEW (homepage) ── */
body .services-preview { padding: 88px 0 !important; }
body .svcs-grid { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 16px !important; }
body .svc-name { font-size: 16px !important; font-weight: 700 !important; margin-bottom: 9px !important; }
body .svc-desc { font-size: 13px !important; line-height: 1.7 !important; color: var(--gray) !important; }
body .svc-icon { width: 44px !important; height: 44px !important; min-width: 44px !important; border-radius: 10px !important; background: rgba(120,78,248,.12) !important; display: flex !important; align-items: center !important; justify-content: center !important; margin-bottom: 18px !important; }
body .svc-icon svg { width: 22px !important; height: 22px !important; max-width: 22px !important; max-height: 22px !important; }

/* ── TESTIMONIALS ── */
body .testi-strip { padding: 88px 0 !important; background: var(--bg2) !important; }
body .testi-grid { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 16px !important; margin-top: 48px !important; }
body .testi-card { background: var(--bg3) !important; border: 1px solid var(--border) !important; border-radius: 12px !important; padding: 32px !important; margin: 0 !important; }
body .testi-quote { font-size: 14px !important; line-height: 1.7 !important; color: var(--gray) !important; font-style: italic !important; margin: 12px 0 16px !important; }
body .testi-author { font-size: 12px !important; font-weight: 700 !important; color: var(--white) !important; }
body .testi-company { font-size: 11px !important; color: var(--purple) !important; margin-top: 2px !important; }
body .stars { display: flex !important; gap: 2px !important; }
body .star { color: #fbbf24 !important; font-size: 15px !important; }

/* ── CTA BANNER ── */
body .cta-banner { padding: 96px 0 !important; text-align: center !important; position: relative !important; overflow: hidden !important; border-top: 1px solid var(--border) !important; }
body .cta-banner h2 { font-size: 50px !important; font-weight: 800 !important; letter-spacing: -.02em !important; margin-bottom: 16px !important; line-height: 1.1 !important; }
body .cta-banner p { font-size: 16px !important; color: var(--gray) !important; margin-bottom: 36px !important; }
body .cta-banner .btn-row { justify-content: center !important; }

/* ── PAGE HERO (inner pages) ── */
body .page-hero { padding: 80px 0 72px !important; text-align: center !important; position: relative !important; overflow: hidden !important; border-bottom: 1px solid var(--border) !important; }
body .page-hero h1 { font-size: clamp(40px, 5vw, 60px) !important; font-weight: 800 !important; letter-spacing: -.02em !important; line-height: 1.1 !important; margin-bottom: 16px !important; }
body .page-hero p { font-size: 16px !important; color: var(--gray) !important; max-width: 520px !important; margin: 0 auto !important; }
body .page-hero-label { font-size: 11px !important; font-weight: 700 !important; letter-spacing: .15em !important; text-transform: uppercase !important; color: var(--purple) !important; margin-bottom: 14px !important; }

/* ── ABOUT PAGE ── */
body .about-story { padding: 88px 0 !important; }
body .about-inner { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 80px !important; align-items: center !important; }
body .about-visual { background: var(--card) !important; border: 1px solid var(--border) !important; border-radius: 16px !important; padding: 48px !important; position: relative !important; overflow: hidden !important; }
body .about-stat-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 24px !important; }
body .about-stat { background: rgba(255,255,255,.04) !important; border: 1px solid rgba(255,255,255,.06) !important; border-radius: 10px !important; padding: 24px !important; text-align: center !important; }
body .about-stat-num { font-size: 36px !important; font-weight: 800 !important; background: linear-gradient(135deg, var(--purple), var(--blue)) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }
body .values { padding: 88px 0 !important; background: var(--bg2) !important; }
body .values-grid { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 20px !important; margin-top: 52px !important; }
body .value-card { border: 1px solid var(--border) !important; border-radius: 12px !important; padding: 36px !important; background: var(--bg3) !important; }
body .value-letter { font-size: 48px !important; font-weight: 800 !important; background: linear-gradient(135deg, var(--purple), var(--teal)) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; line-height: 1 !important; margin-bottom: 16px !important; display: block !important; }
body .team { padding: 88px 0 !important; }
body .team-grid { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 20px !important; margin-top: 52px !important; }
body .team-card { background: var(--card) !important; border: 1px solid var(--border) !important; border-radius: 16px !important; overflow: hidden !important; }
body .team-avatar { width: 100% !important; padding: 48px 0 40px !important; background: var(--bg2) !important; display: flex !important; align-items: center !important; justify-content: center !important; }
body .team-initials { width: 80px !important; height: 80px !important; border-radius: 50% !important; background: linear-gradient(135deg, var(--purple), var(--blue)) !important; display: flex !important; align-items: center !important; justify-content: center !important; font-size: 26px !important; font-weight: 800 !important; color: #fff !important; }
body .team-info { padding: 28px !important; }
body .why { padding: 88px 0 !important; }
body .why-inner { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 80px !important; align-items: center !important; }
body .why-list { display: flex !important; flex-direction: column !important; gap: 24px !important; margin-top: 40px !important; }
body .why-item { display: flex !important; gap: 18px !important; }
body .why-num { width: 36px !important; height: 36px !important; min-width: 36px !important; border-radius: 8px !important; background: linear-gradient(135deg, var(--purple), var(--blue)) !important; display: flex !important; align-items: center !important; justify-content: center !important; font-size: 13px !important; font-weight: 700 !important; color: #fff !important; }
body .why-visual { background: var(--card) !important; border: 1px solid var(--border) !important; border-radius: 16px !important; padding: 48px !important; position: relative !important; overflow: hidden !important; }
body .why-quote { font-size: 18px !important; font-weight: 500 !important; line-height: 1.65 !important; color: var(--white) !important; margin-bottom: 24px !important; font-style: italic !important; position: relative !important; }
body .why-cite { font-size: 12px !important; color: var(--teal) !important; font-weight: 600 !important; letter-spacing: .07em !important; text-transform: uppercase !important; position: relative !important; }
body .why-stars { display: flex !important; gap: 3px !important; margin-bottom: 16px !important; position: relative !important; }

/* ── SERVICES PAGE ── */
body .svcs-grid.services-2col,
body section .svcs-grid:not(.homepage) { display: grid !important; grid-template-columns: repeat(2,1fr) !important; gap: 20px !important; margin-top: 52px !important; }
body .svc-card { display: grid !important; grid-template-columns: auto 1fr !important; gap: 24px !important; align-items: start !important; }
body .svc-icon-lg { width: 56px !important; height: 56px !important; min-width: 56px !important; border-radius: 12px !important; background: rgba(120,78,248,.12) !important; display: flex !important; align-items: center !important; justify-content: center !important; flex-shrink: 0 !important; }
body .svc-icon-lg svg { width: 26px !important; height: 26px !important; max-width: 26px !important; max-height: 26px !important; }
body .svc-features { display: flex !important; flex-direction: column !important; gap: 6px !important; margin-top: 12px !important; list-style: none !important; padding: 0 !important; }
body .svc-feat { font-size: 12.5px !important; color: var(--gray2) !important; display: flex !important; gap: 8px !important; align-items: flex-start !important; list-style: none !important; }
body .svc-feat::before { content: '✓' !important; color: var(--teal) !important; font-weight: 700 !important; flex-shrink: 0 !important; }
body .process { padding: 88px 0 !important; background: var(--bg2) !important; }
body .process-grid { display: grid !important; grid-template-columns: repeat(4,1fr) !important; gap: 2px !important; margin-top: 48px !important; }
body .process-step { background: var(--bg3) !important; padding: 32px 24px !important; border: 1px solid var(--border) !important; }
body .process-num { font-size: 10px !important; font-weight: 800 !important; color: var(--purple) !important; letter-spacing: .14em !important; margin-bottom: 14px !important; }

/* ── PRICING PAGE ── */
body .pricing-grid { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 20px !important; margin-top: 52px !important; }
body .pricing-card { background: var(--card) !important; border: 1px solid var(--border) !important; border-radius: 16px !important; padding: 40px 36px !important; position: relative !important; transition: transform .2s, border-color .2s !important; }
body .pricing-card.featured { border-color: rgba(120,78,248,.5) !important; background: rgba(120,78,248,.07) !important; }
body .pricing-card.featured::before { content: 'Most Popular' !important; position: absolute !important; top: -12px !important; left: 50% !important; transform: translateX(-50%) !important; background: linear-gradient(135deg, var(--purple), var(--blue)) !important; color: #fff !important; font-size: 10px !important; font-weight: 700 !important; padding: 4px 14px !important; border-radius: 20px !important; letter-spacing: .08em !important; text-transform: uppercase !important; white-space: nowrap !important; }
body .pricing-tier { font-size: 10px !important; font-weight: 700 !important; color: var(--purple) !important; letter-spacing: .14em !important; text-transform: uppercase !important; margin-bottom: 10px !important; }
body .pricing-name { font-size: 22px !important; font-weight: 800 !important; margin-bottom: 20px !important; }
body .pricing-price { font-size: 48px !important; font-weight: 800 !important; line-height: 1 !important; background: linear-gradient(135deg, var(--purple), var(--blue)) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; display: block !important; }
body .pricing-freq { font-size: 13px !important; color: var(--gray) !important; margin-bottom: 28px !important; margin-top: 4px !important; }
body .pricing-divider { border: none !important; border-top: 1px solid var(--border) !important; margin-bottom: 24px !important; }
body .pricing-features { list-style: none !important; padding: 0 !important; margin: 0 0 32px !important; display: flex !important; flex-direction: column !important; gap: 11px !important; }
body .pricing-feat { display: flex !important; gap: 10px !important; font-size: 13px !important; color: var(--gray) !important; list-style: none !important; }
body .pricing-feat-check { color: var(--teal) !important; flex-shrink: 0 !important; font-size: 14px !important; }
body .pricing-btn { width: 100% !important; padding: 13px !important; font-size: 14px !important; font-weight: 700 !important; border-radius: 8px !important; cursor: pointer !important; font-family: 'Poppins', sans-serif !important; display: block !important; text-align: center !important; text-decoration: none !important; }
body .pricing-btn-p { background: linear-gradient(135deg, var(--purple), var(--blue)) !important; color: #fff !important; border: none !important; }
body .pricing-btn-g { background: transparent !important; color: var(--gray) !important; border: 1px solid rgba(255,255,255,.12) !important; }
body .faq-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 16px !important; margin-top: 48px !important; }
body .faq-item { background: var(--bg3) !important; border: 1px solid var(--border) !important; border-radius: 12px !important; padding: 28px 32px !important; }
body .faq-q { font-size: 14px !important; font-weight: 600 !important; margin-bottom: 8px !important; color: var(--white) !important; }
body .faq-a { font-size: 13px !important; color: var(--gray) !important; line-height: 1.7 !important; }

/* ── CONTACT PAGE ── */
body .contact-section { padding: 88px 0 !important; }
body .contact-inner { display: grid !important; grid-template-columns: 1fr 1.3fr !important; gap: 80px !important; align-items: start !important; }
body .contact-info { padding-top: 4px !important; }
body .contact-details { display: flex !important; flex-direction: column !important; gap: 20px !important; margin-top: 36px !important; }
body .contact-detail { display: flex !important; gap: 16px !important; align-items: flex-start !important; }
body .contact-icon { width: 40px !important; height: 40px !important; min-width: 40px !important; border-radius: 10px !important; background: rgba(120,78,248,.12) !important; display: flex !important; align-items: center !important; justify-content: center !important; font-size: 18px !important; flex-shrink: 0 !important; }
body .contact-form-card { background: var(--card) !important; border: 1px solid var(--border) !important; border-radius: 16px !important; padding: 44px !important; position: relative !important; overflow: hidden !important; }
body .contact-form-card::before { content: '' !important; position: absolute !important; top: 0 !important; left: 0 !important; right: 0 !important; height: 2px !important; background: linear-gradient(90deg, var(--purple), var(--blue), var(--teal)) !important; }
body .form-title { font-size: 20px !important; font-weight: 700 !important; margin-bottom: 6px !important; }
body .form-sub { font-size: 13px !important; color: var(--gray) !important; margin-bottom: 28px !important; }
body .form-row { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 16px !important; }
body .form-group { margin-bottom: 18px !important; }
body .form-group label { display: block !important; font-size: 11px !important; font-weight: 600 !important; color: var(--gray) !important; margin-bottom: 7px !important; letter-spacing: .06em !important; text-transform: uppercase !important; }
body .form-group input,
body .form-group select,
body .form-group textarea { width: 100% !important; padding: 12px 16px !important; background: rgba(255,255,255,.05) !important; border: 1px solid rgba(255,255,255,.1) !important; border-radius: 8px !important; color: var(--white) !important; font-family: 'Poppins', sans-serif !important; font-size: 14px !important; outline: none !important; }
body .form-group textarea { resize: vertical !important; min-height: 110px !important; }
body .form-submit { width: 100% !important; padding: 14px !important; background: linear-gradient(135deg, var(--purple), var(--blue)) !important; color: #fff !important; font-size: 14px !important; font-weight: 700 !important; border: none !important; border-radius: 8px !important; cursor: pointer !important; font-family: 'Poppins', sans-serif !important; }
body .quick-faq { padding: 88px 0 !important; background: var(--bg2) !important; }
body .quick-faq-grid { display: grid !important; grid-template-columns: repeat(2,1fr) !important; gap: 16px !important; margin-top: 48px !important; }

/* ── BLOG PAGE ── */
body .blog-grid { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 24px !important; margin-top: 52px !important; }
body .blog-card { background: var(--card) !important; border: 1px solid var(--border) !important; border-radius: 12px !important; overflow: hidden !important; display: block !important; text-decoration: none !important; color: var(--white) !important; transition: transform .2s, border-color .2s !important; }
body .blog-card:hover { transform: translateY(-4px) !important; border-color: rgba(120,78,248,.35) !important; }
body .blog-img { width: 100% !important; aspect-ratio: 16/9 !important; object-fit: cover !important; display: block !important; }
body .blog-body { padding: 28px !important; }
body .blog-cat { font-size: 10px !important; font-weight: 700 !important; color: var(--teal) !important; letter-spacing: .12em !important; text-transform: uppercase !important; margin-bottom: 10px !important; }
body .blog-title { font-size: 16px !important; font-weight: 700 !important; line-height: 1.4 !important; margin-bottom: 10px !important; color: var(--white) !important; }
body .blog-excerpt { font-size: 13px !important; color: var(--gray) !important; line-height: 1.65 !important; margin-bottom: 20px !important; }
body .blog-meta { display: flex !important; justify-content: space-between !important; align-items: center !important; font-size: 11px !important; color: var(--gray2) !important; }
body .blog-read { color: var(--purple) !important; font-weight: 600 !important; font-size: 12px !important; }
body .newsletter { padding: 88px 0 !important; background: var(--bg2) !important; }
body .newsletter-inner { max-width: 520px !important; margin: 0 auto !important; text-align: center !important; }
body .newsletter-form { display: flex !important; gap: 12px !important; margin-top: 28px !important; }
body .newsletter-input { flex: 1 !important; padding: 13px 18px !important; background: rgba(255,255,255,.05) !important; border: 1px solid rgba(255,255,255,.12) !important; border-radius: 8px !important; color: var(--white) !important; font-family: 'Poppins', sans-serif !important; font-size: 14px !important; outline: none !important; }
body .newsletter-btn { padding: 13px 24px !important; background: linear-gradient(135deg, var(--purple), var(--blue)) !important; color: #fff !important; font-size: 13px !important; font-weight: 700 !important; border: none !important; border-radius: 8px !important; cursor: pointer !important; font-family: 'Poppins', sans-serif !important; white-space: nowrap !important; }

/* ── FOOTER ── */
body footer { background: #040614 !important; border-top: 1px solid var(--border) !important; padding: 48px !important; position: relative !important; z-index: 1 !important; }
body .footer-top { display: grid !important; grid-template-columns: 1.4fr 1fr 1fr 1fr !important; gap: 48px !important; margin-bottom: 40px !important; }
body .footer-brand img { height: 34px !important; width: auto !important; display: block !important; margin-bottom: 14px !important; }
body .footer-brand p { font-size: 13px !important; color: var(--gray) !important; line-height: 1.7 !important; max-width: 220px !important; }
body .footer-col h4 { font-size: 11px !important; font-weight: 700 !important; letter-spacing: .1em !important; text-transform: uppercase !important; color: var(--white) !important; margin-bottom: 14px !important; }
body .footer-col ul { list-style: none !important; padding: 0 !important; margin: 0 !important; display: flex !important; flex-direction: column !important; gap: 9px !important; }
body .footer-col ul a { font-size: 13px !important; color: var(--gray) !important; text-decoration: none !important; }
body .footer-bottom { display: flex !important; justify-content: space-between !important; align-items: center !important; padding-top: 24px !important; border-top: 1px solid rgba(255,255,255,.05) !important; font-size: 12px !important; color: var(--gray2) !important; }
body .footer-bottom a { color: var(--gray2) !important; text-decoration: none !important; margin-left: 20px !important; }

/* ── BUTTONS ── */
body .btn-primary { padding: 13px 28px !important; background: linear-gradient(135deg, var(--purple), var(--blue)) !important; color: #fff !important; font-size: 14px !important; font-weight: 600 !important; border: none !important; border-radius: 8px !important; cursor: pointer !important; font-family: 'Poppins', sans-serif !important; text-decoration: none !important; display: inline-block !important; }
body .btn-ghost { padding: 13px 28px !important; background: transparent !important; color: var(--gray) !important; font-size: 14px !important; font-weight: 500 !important; border: 1px solid rgba(255,255,255,.12) !important; border-radius: 8px !important; cursor: pointer !important; font-family: 'Poppins', sans-serif !important; text-decoration: none !important; display: inline-block !important; }

/* ── NAV ── */
body > header { position: sticky !important; top: 0 !important; z-index: 100 !important; background: rgba(7,9,26,.9) !important; backdrop-filter: blur(20px) !important; border-bottom: 1px solid var(--border) !important; width: 100% !important; }
body > header nav { display: flex !important; align-items: center !important; justify-content: space-between !important; padding: 15px 48px !important; max-width: 1160px !important; margin: 0 auto !important; flex-wrap: nowrap !important; }
body > header .nav-logo img { height: 36px !important; width: auto !important; display: block !important; }
body > header ul.nav-links { display: flex !important; flex-direction: row !important; gap: 28px !important; list-style: none !important; margin: 0 !important; padding: 0 !important; }
body > header ul.nav-links li { margin: 0 !important; padding: 0 !important; display: inline !important; }
body > header ul.nav-links a { color: var(--gray) !important; font-size: 13.5px !important; font-weight: 500 !important; text-decoration: none !important; border-bottom: none !important; }
body > header ul.nav-links a.active,
body > header ul.nav-links a:hover { color: var(--white) !important; }
body > header a.nav-cta { padding: 9px 22px !important; background: linear-gradient(135deg, var(--purple), var(--blue)) !important; color: #fff !important; font-size: 13px !important; font-weight: 600 !important; border-radius: 7px !important; text-decoration: none !important; white-space: nowrap !important; }

/* ── CARD SHARED ── */
body .card { background: var(--card) !important; border: 1px solid var(--border) !important; border-radius: 12px !important; padding: 36px 30px !important; }
body .sec-label { font-size: 11px !important; font-weight: 700 !important; letter-spacing: .15em !important; text-transform: uppercase !important; color: var(--purple) !important; margin-bottom: 10px !important; display: block !important; }
body .sec-title { font-size: 40px !important; font-weight: 800 !important; letter-spacing: -.02em !important; line-height: 1.1 !important; margin-bottom: 12px !important; }
body .sec-sub { font-size: 15px !important; color: var(--gray) !important; margin-bottom: 48px !important; max-width: 520px !important; }

/* ── TOP SPACING FIX ── */
html { margin-top: 0 !important; }
body { margin-top: 0 !important; padding-top: 0 !important; }
body #wpadminbar ~ * { padding-top: 0 !important; }
body.admin-bar header { top: 32px !important; }
body.admin-bar { margin-top: 0 !important; }
.page-hero, .hero-section, section:first-of-type { margin-top: 0 !important; }

/* ── SERVICES HOVER LINE ── */
body .card-hover { position: relative !important; overflow: hidden !important; transition: transform .2s, border-color .2s, box-shadow .2s !important; }
body .card-hover::before { content: '' !important; position: absolute !important; top: 0 !important; left: 0 !important; right: 0 !important; height: 2px !important; background: linear-gradient(90deg, var(--purple), var(--blue), var(--teal)) !important; transform: scaleX(0) !important; transition: transform .3s !important; transform-origin: left !important; }
body .card-hover:hover::before { transform: scaleX(1) !important; }
body .card-hover:hover { transform: translateY(-4px) !important; border-color: rgba(120,78,248,.35) !important; box-shadow: 0 16px 48px rgba(120,78,248,.1) !important; }

/* ── PRICING NOTE LINK FIX ── */
body .pricing-note { text-align: center !important; margin-top: 28px !important; font-size: 13px !important; color: var(--gray) !important; }
body .pricing-note a { color: var(--purple) !important; text-decoration: none !important; margin: 0 4px !important; }

/* ── TEAM CARD FIX ── */
body .team-card { background: var(--card) !important; border: 1px solid var(--border) !important; border-radius: 16px !important; overflow: hidden !important; transition: border-color .2s !important; display: flex !important; flex-direction: column !important; }
body .team-avatar { width: 100% !important; padding: 40px 0 32px !important; background: var(--bg2) !important; display: flex !important; align-items: center !important; justify-content: center !important; position: relative !important; }
body .team-avatar::before { content: '' !important; position: absolute !important; inset: 0 !important; background: radial-gradient(circle at 50% 60%, rgba(120,78,248,.12) 0%, transparent 65%) !important; }
body .team-initials { width: 80px !important; height: 80px !important; border-radius: 50% !important; background: linear-gradient(135deg, var(--purple), var(--blue)) !important; display: flex !important; align-items: center !important; justify-content: center !important; font-size: 26px !important; font-weight: 800 !important; color: #fff !important; position: relative !important; z-index: 1 !important; }
body .team-info { padding: 28px !important; }
body .team-name { font-size: 18px !important; font-weight: 700 !important; margin-bottom: 4px !important; color: var(--white) !important; }
body .team-role { font-size: 11px !important; color: var(--teal) !important; font-weight: 600 !important; text-transform: uppercase !important; letter-spacing: .08em !important; margin-bottom: 12px !important; display: block !important; }
body .team-bio { font-size: 13px !important; color: var(--gray) !important; line-height: 1.65 !important; }

/* ── LEGAL PAGES ── */
body .legal-body { padding: 72px 0 96px !important; }
body .legal-content { max-width: 760px !important; }
body .legal-content h2 { font-size: 22px !important; font-weight: 700 !important; margin: 48px 0 14px !important; color: var(--white) !important; }
body .legal-content p { font-size: 14.5px !important; color: var(--gray) !important; line-height: 1.85 !important; margin-bottom: 16px !important; }
body .legal-content ul { margin: 0 0 16px 20px !important; display: flex !important; flex-direction: column !important; gap: 8px !important; list-style: disc !important; }
body .legal-content ul li { font-size: 14px !important; color: var(--gray) !important; line-height: 1.7 !important; }
body .legal-content a { color: var(--purple) !important; text-decoration: none !important; }
body .legal-divider { border: none !important; border-top: 1px solid var(--border) !important; margin: 40px 0 !important; }
body .legal-meta { font-size: 13px !important; color: var(--gray2) !important; margin-bottom: 48px !important; display: block !important; }

/* ── ADMIN BAR SPACING FIX ── */
body.admin-bar .page-hero,
body.admin-bar section:first-of-type,
body.admin-bar .hero { margin-top: 0 !important; padding-top: 80px !important; }
html { margin-top: 0 !important; }
body.admin-bar { margin-top: 0 !important; }