/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── DESIGN TOKENS ── */
:root {
  --bg:        #05070F;
  --surface:   #0A0D1A;
  --surface2:  #0E1220;
  --card-bg:   rgba(14,18,32,.8);
  --border:    rgba(255,255,255,.08);
  --white:     #F0F2FF;
  --muted:     #8B92B8;
  --accent:    #4F6EF7;
  --accent2:   #7C3AED;
  --gradient:  linear-gradient(135deg, #4F6EF7 0%, #7C3AED 100%);
  --radius:    16px;
  --radius-sm: 10px;
  --nav-h:     72px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --container: 1200px;
}

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

html { scroll-behavior: smooth; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

/* ── TYPOGRAPHY ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(79,110,247,.1);
  border: 1px solid rgba(79,110,247,.25);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  letter-spacing: .02em;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(79,110,247,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(79,110,247,.45); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .3s, box-shadow .3s;
}
#navbar.scrolled {
  background: rgba(5,7,15,.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s;
  letter-spacing: .02em;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(5,7,15,.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

/* ── ORB DECORATION ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* ── CARDS ── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero .orb1 { width: 500px; height: 500px; background: rgba(79,110,247,.15); top: -100px; left: 50%; transform: translateX(-50%); }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.page-hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p { color: var(--muted); font-size: 14px; line-height: 1.75; margin: 14px 0 20px; max-width: 280px; }
.footer-col-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--muted); transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: var(--muted); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--surface2);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 14px;
  color: var(--white);
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all .35s ease;
  max-width: 300px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── SCROLL FADE ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

/* ── HERO ── */
#home { position:relative; min-height:100vh; display:flex; align-items:center; overflow:hidden; padding-top:var(--nav-h); }
.hero-orb1 { width:600px; height:600px; background:rgba(79,110,247,.18); top:-100px; right:-100px; }
.hero-orb2 { width:400px; height:400px; background:rgba(124,58,237,.15); bottom:0; left:-100px; }
.hero-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; position:relative; z-index:1; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(79,110,247,.1); border:1px solid rgba(79,110,247,.25); border-radius:50px; padding:6px 14px 6px 8px; font-size:13px; color:var(--accent); margin-bottom:24px; }
.hero-badge .dot { width:8px; height:8px; background:var(--accent); border-radius:50%; animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.hero-h1 { font-family:var(--font-head); font-size:clamp(38px,5vw,64px); font-weight:800; line-height:1.1; color:var(--white); margin-bottom:22px; }
.hero-h1 em { font-style:normal; background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hero-sub { font-size:18px; color:var(--muted); margin-bottom:36px; line-height:1.7; max-width:480px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:48px; }
.hero-stats { display:flex; gap:32px; padding-top:32px; border-top:1px solid var(--border); }
.hero-stat strong { display:block; font-family:var(--font-head); font-size:24px; font-weight:800; background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hero-stat span { font-size:13px; color:var(--muted); }
/* Dashboard */
.dashboard-card { background:var(--card-bg); border:1px solid var(--border); border-radius:var(--radius); padding:28px; backdrop-filter:blur(20px); position:relative; }
.dashboard-card::before { content:''; position:absolute; inset:-1px; border-radius:inherit; background:var(--gradient); z-index:-1; opacity:.3; }
.dash-title { font-family:var(--font-head); font-size:13px; font-weight:700; color:var(--muted); letter-spacing:.08em; text-transform:uppercase; margin-bottom:20px; }
.dash-metric { display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; }
.dash-metric-label { font-size:14px; color:var(--muted); }
.dash-metric-val { font-family:var(--font-head); font-weight:700; font-size:14px; color:var(--white); }
.dash-bar { height:6px; background:rgba(255,255,255,.08); border-radius:6px; margin-top:6px; overflow:hidden; }
.dash-bar-fill { height:100%; border-radius:6px; background:var(--gradient); animation:fillBar 1.5s ease forwards; }
@keyframes fillBar { from{width:0} }
.metric-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.metric-mini { background:rgba(79,110,247,.08); border:1px solid var(--border); border-radius:var(--radius-sm); padding:14px; text-align:center; }
.metric-mini strong { display:block; font-family:var(--font-head); font-size:22px; font-weight:800; color:var(--white); }
.metric-mini span { font-size:12px; color:var(--muted); }
/* Services */
#services { background:var(--surface); }
.services-header { text-align:center; margin-bottom:60px; }
.services-header .section-sub { margin:0 auto; }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.service-card { background:var(--card-bg); border:1px solid var(--border); border-radius:var(--radius); padding:32px; transition:all .3s; backdrop-filter:blur(10px); }
.service-card:hover { transform:translateY(-6px); border-color:var(--accent); box-shadow:0 20px 60px rgba(79,110,247,.2); }
.service-icon { width:56px; height:56px; background:rgba(79,110,247,.12); border:1px solid rgba(79,110,247,.25); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; font-size:24px; margin-bottom:20px; }
.service-title { font-family:var(--font-head); font-size:18px; font-weight:700; color:var(--white); margin-bottom:10px; }
.service-desc { font-size:14px; color:var(--muted); line-height:1.7; }
/* About */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-list { margin-top:28px; display:flex; flex-direction:column; gap:16px; }
.about-item { display:flex; gap:14px; align-items:flex-start; }
.about-check { width:24px; height:24px; background:rgba(79,110,247,.15); border:1px solid rgba(79,110,247,.3); border-radius:6px; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px; font-size:12px; }
.about-item-text strong { display:block; color:var(--white); font-weight:600; margin-bottom:2px; }
.about-item-text span { font-size:14px; color:var(--muted); }
.about-card { background:var(--surface2); border:1px solid var(--border); border-radius:var(--radius); padding:36px; }
.about-card-badge { background:var(--gradient); color:var(--white); font-family:var(--font-head); font-size:13px; font-weight:700; padding:6px 14px; border-radius:50px; display:inline-block; margin-bottom:20px; }
.about-card-text { font-size:16px; color:var(--muted); line-height:1.75; margin-bottom:28px; }
.about-stats { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.about-stat { background:rgba(79,110,247,.07); border:1px solid var(--border); border-radius:var(--radius-sm); padding:16px; text-align:center; }
.about-stat strong { display:block; font-family:var(--font-head); font-size:26px; font-weight:800; background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.about-stat span { font-size:12px; color:var(--muted); }
/* Team */
.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:56px; }
.team-card { background:var(--card-bg); border:1px solid var(--border); border-radius:var(--radius); padding:28px; text-align:center; transition:all .3s; }
.team-card:hover { transform:translateY(-4px); border-color:var(--accent); }
.team-avatar { width:72px; height:72px; border-radius:50%; background:var(--gradient); display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-size:22px; font-weight:800; color:var(--white); margin:0 auto 16px; }
.team-name { font-family:var(--font-head); font-size:17px; font-weight:700; color:var(--white); margin-bottom:4px; }
.team-role { font-size:13px; color:var(--muted); margin-bottom:16px; }
.team-socials { display:flex; gap:10px; justify-content:center; }
.team-social { width:34px; height:34px; background:rgba(79,110,247,.1); border:1px solid var(--border); border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:13px; transition:all .2s; }
.team-social:hover { background:var(--accent); border-color:var(--accent); }
/* Blog */
.blog-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:56px; flex-wrap:wrap; gap:20px; }
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.blog-card { background:var(--card-bg); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; transition:all .3s; display:flex; flex-direction:column; }
.blog-card:hover { transform:translateY(-4px); border-color:var(--accent); box-shadow:0 16px 48px rgba(79,110,247,.15); }
.blog-card-top { background:var(--surface2); padding:32px 28px; display:flex; align-items:center; justify-content:space-between; border-bottom:1px solid var(--border); }
.blog-emoji { font-size:36px; }
.blog-status { font-size:11px; font-family:var(--font-head); font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:4px 10px; border-radius:50px; }
.status-live { background:rgba(34,197,94,.12); color:#4ade80; border:1px solid rgba(34,197,94,.25); }
.status-soon { background:rgba(251,191,36,.08); color:#fbbf24; border:1px solid rgba(251,191,36,.2); }
.blog-body { padding:28px; flex:1; display:flex; flex-direction:column; }
.blog-meta { font-size:12px; color:var(--muted); margin-bottom:12px; }
.blog-title { font-family:var(--font-head); font-size:17px; font-weight:700; color:var(--white); margin-bottom:12px; line-height:1.4; }
.blog-excerpt { font-size:14px; color:var(--muted); line-height:1.7; flex:1; margin-bottom:20px; }
.blog-link { display:inline-flex; align-items:center; gap:6px; font-family:var(--font-head); font-size:13px; font-weight:700; color:var(--accent); transition:gap .2s; }
.blog-link:hover { gap:10px; }
/* CTA Banner */
.cta-banner { background:var(--surface2); border:1px solid var(--border); border-radius:var(--radius); padding:64px; text-align:center; position:relative; overflow:hidden; margin-top:80px; }
.cta-banner::before { content:''; position:absolute; width:500px; height:500px; background:radial-gradient(circle,rgba(79,110,247,.2) 0%,transparent 70%); top:50%; left:50%; transform:translate(-50%,-50%); pointer-events:none; }
.cta-banner h2 { font-family:var(--font-head); font-size:clamp(26px,3.5vw,40px); font-weight:800; color:var(--white); margin-bottom:14px; }
.cta-banner p { color:var(--muted); font-size:17px; margin-bottom:32px; }
/* Contact */
.contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:60px; align-items:start; }
.contact-info-item { display:flex; gap:16px; align-items:flex-start; margin-bottom:28px; }
.contact-icon { width:48px; height:48px; background:rgba(79,110,247,.1); border:1px solid rgba(79,110,247,.2); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.contact-info-label { font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:.08em; margin-bottom:4px; }
.contact-info-val { color:var(--white); font-weight:500; }
.contact-form { background:var(--card-bg); border:1px solid var(--border); border-radius:var(--radius); padding:36px; backdrop-filter:blur(10px); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { margin-bottom:20px; }
.form-group label { display:block; font-size:13px; font-weight:600; color:var(--muted); margin-bottom:8px; }
.form-group input, .form-group textarea { width:100%; background:rgba(255,255,255,.04); border:1px solid var(--border); border-radius:var(--radius-sm); padding:13px 16px; color:var(--white); font-family:var(--font-body); font-size:15px; transition:border-color .2s,box-shadow .2s; outline:none; resize:none; }
.form-group input::placeholder, .form-group textarea::placeholder { color:rgba(139,146,184,.5); }
.form-group input:focus, .form-group textarea:focus { border-color:var(--accent); box-shadow:0 0 0 3px rgba(79,110,247,.15); }
.form-group textarea { height:120px; }
.form-submit { width:100%; justify-content:center; font-size:16px; padding:15px; }
/* Newsletter */
.newsletter-box { background:var(--surface2); border:1px solid var(--border); border-radius:var(--radius); padding:56px; text-align:center; position:relative; overflow:hidden; margin-top:80px; }
.newsletter-box::before { content:''; position:absolute; width:400px; height:400px; background:radial-gradient(circle,rgba(79,110,247,.18) 0%,transparent 70%); top:50%; left:50%; transform:translate(-50%,-50%); pointer-events:none; }
.newsletter-box h2 { font-family:var(--font-head); font-size:28px; font-weight:800; color:var(--white); margin-bottom:12px; }
.newsletter-box p { color:var(--muted); font-size:16px; margin-bottom:28px; }
.newsletter-form { display:flex; gap:12px; max-width:480px; margin:0 auto; flex-wrap:wrap; justify-content:center; }
.newsletter-form input { flex:1; min-width:220px; background:rgba(255,255,255,.05); border:1px solid var(--border); border-radius:50px; padding:13px 20px; color:var(--white); font-family:var(--font-body); font-size:15px; outline:none; }
.newsletter-form input:focus { border-color:var(--accent); }
/* Article */
.article-wrap { max-width:780px; margin:0 auto; }
.article-meta { display:flex; align-items:center; gap:16px; flex-wrap:wrap; margin-bottom:36px; font-size:13px; color:var(--muted); }
.article-meta .tag { background:rgba(79,110,247,.1); border:1px solid rgba(79,110,247,.25); color:var(--accent); padding:4px 12px; border-radius:50px; font-family:var(--font-head); font-weight:700; font-size:11px; letter-spacing:.08em; text-transform:uppercase; }
.article-hero-emoji { font-size:80px; text-align:center; margin-bottom:28px; }
.article-title { font-family:var(--font-head); font-size:clamp(26px,4vw,42px); font-weight:800; line-height:1.2; color:var(--white); margin-bottom:24px; }
.article-lead { font-size:18px; color:var(--muted); line-height:1.8; margin-bottom:40px; padding-bottom:40px; border-bottom:1px solid var(--border); }
.article-body h2 { font-family:var(--font-head); font-size:24px; font-weight:800; color:var(--white); margin:48px 0 16px; }
.article-body p { font-size:16px; color:var(--muted); line-height:1.85; margin-bottom:18px; }
.article-body strong { color:var(--white); }
.tool-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin:24px 0 32px; }
.tool-item { background:rgba(79,110,247,.07); border:1px solid var(--border); border-radius:var(--radius-sm); padding:18px; }
.tool-item strong { display:block; color:var(--white); font-size:15px; margin-bottom:4px; }
.tool-item span { font-size:13px; color:var(--muted); line-height:1.6; }
.step-box { background:var(--surface2); border:1px solid var(--border); border-left:3px solid var(--accent); border-radius:var(--radius-sm); padding:20px 24px; margin:20px 0; }
.step-box strong { color:var(--white); display:block; margin-bottom:6px; font-family:var(--font-head); }
.free-list { background:var(--surface2); border:1px solid var(--border); border-radius:var(--radius-sm); padding:24px; margin:24px 0; }
.free-list li { display:flex; gap:12px; padding:10px 0; border-bottom:1px solid var(--border); font-size:15px; color:var(--muted); }
.free-list li:last-child { border-bottom:none; }
.free-list li strong { color:var(--white); min-width:180px; flex-shrink:0; }
.article-cta { background:var(--surface2); border:1px solid var(--border); border-radius:var(--radius); padding:40px; text-align:center; margin-top:64px; position:relative; overflow:hidden; }
.article-cta::before { content:''; position:absolute; width:300px; height:300px; background:radial-gradient(circle,rgba(79,110,247,.2) 0%,transparent 70%); top:50%; left:50%; transform:translate(-50%,-50%); pointer-events:none; }
.article-cta h3 { font-family:var(--font-head); font-size:24px; color:var(--white); margin-bottom:10px; }
.article-cta p { color:var(--muted); margin-bottom:24px; }
.back-link { display:inline-flex; align-items:center; gap:8px; font-family:var(--font-head); font-size:14px; font-weight:600; color:var(--muted); margin-bottom:32px; transition:color .2s; }
.back-link:hover { color:var(--accent); }
/* Legal */
.legal-wrap { max-width:760px; margin:0 auto; }
.legal-wrap h2 { font-family:var(--font-head); font-size:20px; font-weight:700; color:var(--white); margin:40px 0 12px; }
.legal-wrap p { font-size:15px; color:var(--muted); line-height:1.85; margin-bottom:14px; }
.legal-wrap ul { margin:10px 0 18px 20px; }
.legal-wrap ul li { font-size:15px; color:var(--muted); line-height:1.8; list-style:disc; margin-bottom:6px; }
.legal-updated { display:inline-flex; align-items:center; gap:8px; font-size:13px; color:var(--muted); background:var(--surface2); border:1px solid var(--border); border-radius:50px; padding:5px 14px; margin-bottom:40px; }
/* Responsive */
@media (max-width:900px) {
  .hero-grid,.about-grid,.contact-grid { grid-template-columns:1fr; gap:40px; }
  .services-grid,.team-grid,.blog-grid { grid-template-columns:repeat(2,1fr); }
  .hero-stats { gap:20px; flex-wrap:wrap; }
  .cta-banner { padding:40px 28px; }
}
@media (max-width:640px) {
  .services-grid,.team-grid,.blog-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .tool-grid { grid-template-columns:1fr; }
  .free-list li { flex-direction:column; gap:4px; }
}
/* Hide default WordPress admin bar gap */
#wpadminbar ~ #navbar { top: 32px; }
@media screen and (max-width:782px) { #wpadminbar ~ #navbar { top:46px; } }
