*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0B0D11;
  --surface: #13161D;
  --card: #191C26;
  --border: #252834;
  --accent: #6C63FF;
  --accent2: #00E5C3;
  --text: #E8EAF0;
  --muted: #7A7F96;
  --nav-h: 68px;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: "Space Grotesk", sans-serif; line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  background: rgba(11,13,17,.9); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-size: 1.15rem; font-weight: 700; letter-spacing: -.3px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-decoration: none;
}
.logo span { font-family: "DM Mono", monospace; font-weight: 300; font-size:.9rem; }
.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: .88rem; font-weight: 500; transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: .48rem 1.2rem; border-radius: 8px;
  background: var(--accent); color: #fff !important;
  font-weight: 600; font-size: .82rem; transition: opacity .2s;
}
.nav-cta:hover { opacity: .85; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all .3s;
}
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(11,13,17,.98); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border); z-index: 99;
  padding: 1.5rem 6% 2rem; flex-direction: column; gap: 1.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--muted); text-decoration: none; font-size: 1.05rem; font-weight: 500;
  border-bottom: 1px solid var(--border); padding-bottom: 1rem;
}
.mobile-menu a:last-child { border: none; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  padding: calc(var(--nav-h) + 4rem) 8% 5rem;
  position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0; opacity: .04;
  background-image: linear-gradient(var(--accent) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.hero-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(108,99,255,.15) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.hero-glow2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,195,.08) 0%, transparent 70%);
  bottom: 0; left: 10%; pointer-events: none;
}
.hero-left { display: flex; flex-direction: column; z-index: 1; }
.hero-right {
  display: flex; align-items: center; justify-content: center;
  z-index: 1; position: relative;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(108,99,255,.12); border: 1px solid rgba(108,99,255,.3);
  color: var(--accent); border-radius: 100px;
  padding: .35rem 1rem; font-size: .75rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  width: fit-content; margin-bottom: 1.2rem;
}
.hero-tag::before {
  content: ""; display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem); font-weight: 700;
  line-height: 1.1; letter-spacing: -1px;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-role {
  margin-top: .8rem; font-family: "DM Mono", monospace;
  font-size: .88rem; color: var(--accent2); letter-spacing: .06em;
}
.hero-sub {
  margin-top: 1.2rem; max-width: 460px;
  font-size: 1rem; color: var(--muted); line-height: 1.7;
}
.hero-actions {
  margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap;
}
.btn-primary {
  padding: .8rem 1.8rem; border-radius: 10px;
  background: var(--accent); color: #fff;
  font-weight: 600; font-size: .9rem; text-decoration: none;
  transition: all .2s; border: 1px solid var(--accent);
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-primary:hover { background: #5a52e0; transform: translateY(-1px); }
.btn-outline {
  padding: .8rem 1.8rem; border-radius: 10px;
  background: transparent; color: var(--text);
  font-weight: 600; font-size: .9rem; text-decoration: none;
  transition: all .2s; border: 1px solid var(--border);
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.hero-stats {
  margin-top: 3rem; display: flex; gap: 2.5rem; flex-wrap: wrap;
}
.stat-num { font-size: 1.8rem; font-weight: 700; line-height: 1; }
.stat-num span { color: var(--accent); }
.stat-label { font-size: .75rem; color: var(--muted); margin-top: .3rem; letter-spacing: .04em; text-transform: uppercase; }

/* Photo */
.hero-photo-wrap { position: relative; width: 360px; height: 440px; flex-shrink: 0; }
.hero-photo-wrap::before {
  content: ""; position: absolute; inset: -14px; border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  background: linear-gradient(135deg, rgba(108,99,255,.5), rgba(0,229,195,.3)); z-index: 0;
  animation: morph 8s ease-in-out infinite;
}
.hero-photo-wrap::after {
  content: ""; position: absolute; inset: -28px;
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  border: 1px solid rgba(108,99,255,.2); z-index: 0;
  animation: morph 8s ease-in-out infinite reverse;
}
.hero-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  border-radius: 36% 64% 48% 52% / 42% 38% 62% 58%;
  position: relative; z-index: 1;
  animation: morph 8s ease-in-out infinite;
  border: 3px solid rgba(108,99,255,.3);
}
.photo-badge {
  position: absolute; z-index: 2;
  background: rgba(19,22,29,.95); backdrop-filter: blur(12px);
  border: 1px solid rgba(108,99,255,.25); border-radius: 14px;
  padding: .6rem .9rem; display: flex; align-items: center; gap: .55rem;
  font-size: .75rem; font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,.5); white-space: nowrap;
}
.photo-badge .bi { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.bmt { font-size: .78rem; font-weight: 600; color: var(--text); }
.bms { font-size: .65rem; color: var(--muted); }
.pb1 { top: 5%; left: -20%; }
.pb2 { bottom: 14%; right: -16%; }
.pb3 { bottom: -5%; left: 8%; }

@keyframes morph {
  0%, 100% { border-radius: 36% 64% 48% 52% / 42% 38% 62% 58%; }
  33%  { border-radius: 52% 48% 62% 38% / 58% 54% 46% 42%; }
  66%  { border-radius: 44% 56% 38% 62% / 50% 46% 54% 50%; }
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

/* ── SHARED ── */
section { padding: 6rem 8%; }
.sec-label {
  font-family: "DM Mono", monospace; font-size: .72rem;
  color: var(--accent2); letter-spacing: .12em; text-transform: uppercase; margin-bottom: .8rem;
}
.sec-title {
  font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 700;
  letter-spacing: -.4px; line-height: 1.15;
}
.sec-sub { margin-top: .8rem; color: var(--muted); max-width: 540px; font-size: .95rem; line-height: 1.7; }
.sec-header { margin-bottom: 3.5rem; }

/* ── SERVICES ── */
#services { background: var(--surface); }
.svc-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.4rem;
}
.svc-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.8rem; transition: all .3s; cursor: default; position: relative; overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; inset: 0; border-radius: 16px;
  background: linear-gradient(135deg, rgba(108,99,255,.06), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.svc-card:hover { border-color: rgba(108,99,255,.4); transform: translateY(-3px); }
.svc-card:hover::before { opacity: 1; }
.svc-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(108,99,255,.2), rgba(0,229,195,.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.1rem;
}
.svc-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }
.svc-card p { font-size: .84rem; color: var(--muted); line-height: 1.6; }
.svc-tags { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.stag {
  padding: .22rem .65rem; border-radius: 100px;
  background: rgba(108,99,255,.1); border: 1px solid rgba(108,99,255,.2);
  font-size: .65rem; font-family: "DM Mono", monospace; color: var(--accent); letter-spacing: .04em;
}

/* ── PROJECTS ── */
#projects { background: var(--bg); }
.proj-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.proj-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden; transition: all .3s;
}
.proj-card:hover { border-color: rgba(108,99,255,.4); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.4); }
.proj-header {
  padding: 1.6rem 1.6rem 1rem;
  display: flex; align-items: flex-start; justify-content: space-between;
}
.proj-icon {
  width: 50px; height: 50px; border-radius: 13px;
  background: linear-gradient(135deg, rgba(108,99,255,.25), rgba(0,229,195,.15));
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.proj-type {
  font-family: "DM Mono", monospace; font-size: .65rem;
  color: var(--accent2); letter-spacing: .08em; text-transform: uppercase;
  background: rgba(0,229,195,.08); border: 1px solid rgba(0,229,195,.2);
  padding: .2rem .6rem; border-radius: 100px;
}
.proj-body { padding: 0 1.6rem 1.6rem; }
.proj-body h3 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }
.proj-body p { font-size: .84rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.proj-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.2rem; }
.ptag {
  padding: .22rem .65rem; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--border);
  font-size: .65rem; font-family: "DM Mono", monospace; color: var(--muted);
}
.proj-links { display: flex; gap: .8rem; }
.proj-link {
  font-size: .78rem; font-weight: 600; text-decoration: none;
  color: var(--accent); padding: .4rem .9rem; border-radius: 8px;
  border: 1px solid rgba(108,99,255,.3); transition: all .2s;
}
.proj-link:hover { background: rgba(108,99,255,.1); }
.proj-link.gh { color: var(--muted); border-color: var(--border); }
.proj-link.gh:hover { color: var(--text); border-color: var(--muted); }

/* ── ABOUT ── */
#about { background: var(--surface); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.2rem;
}
.about-logo-block { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.about-logo-icon {
  width: 48px; height: 48px; border-radius: 13px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; color: #fff;
}
.about-logo-text { font-weight: 700; font-size: 1.05rem; }
.about-logo-text span { display: block; font-size: .72rem; color: var(--muted); font-weight: 400; }
.about-desc { color: var(--muted); font-size: .87rem; line-height: 1.7; margin-bottom: 1.4rem; }
.skill-section { margin-top: 1rem; }
.skill-label { font-size: .7rem; color: var(--muted); font-family: "DM Mono",monospace; letter-spacing:.06em; margin-bottom: .5rem; }
.skill-bars { display: flex; flex-direction: column; gap: .7rem; }
.skill-row { display: flex; align-items: center; gap: 1rem; }
.skill-name { font-size: .78rem; color: var(--text); min-width: 140px; }
.skill-bar-bg { flex: 1; height: 5px; background: var(--border); border-radius: 10px; overflow: hidden; }
.skill-bar-fill {
  height: 100%; border-radius: 10px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transition: width 1s ease;
}
.floating-chip {
  position: absolute; right: -2rem; top: 2rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: .65rem 1.1rem;
  font-size: .75rem; display: flex; align-items: center; gap: .5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.chip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent2); }
.about-vis { position: relative; }
.about-points { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.about-point { display: flex; gap: .9rem; align-items: flex-start; }
.pt-icon {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: rgba(108,99,255,.12); border: 1px solid rgba(108,99,255,.2);
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
}
.pt-body h4 { font-size: .9rem; font-weight: 600; margin-bottom: .15rem; }
.pt-body p { font-size: .82rem; color: var(--muted); line-height: 1.5; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.4rem; }
.testi-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 1.8rem; position: relative; transition: all .3s;
}
.testi-card:hover { border-color: rgba(108,99,255,.35); }
.testi-quote {
  font-size: 2rem; line-height: 1; color: var(--accent);
  font-family: Georgia, serif; margin-bottom: .8rem;
}
.testi-text { font-size: .88rem; color: var(--muted); line-height: 1.7; font-style: italic; margin-bottom: 1.4rem; }
.testi-author { display: flex; align-items: center; gap: .85rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; color: #fff;
}
.testi-name { font-size: .88rem; font-weight: 600; }
.testi-role { font-size: .73rem; color: var(--muted); }
.testi-stars { color: #F5C518; font-size: .8rem; margin-bottom: .8rem; }

/* ── RESUME ── */
#resume { background: var(--surface); }
.resume-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 4rem; align-items: start; }
.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item { display: flex; gap: 1.4rem; position: relative; padding-bottom: 2rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.tl-dot {
  width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent); border: 2px solid var(--bg); box-shadow: 0 0 0 3px rgba(108,99,255,.3);
}
.tl-line {
  flex: 1; width: 1px; background: var(--border); margin-top: 4px;
}
.tl-item:last-child .tl-line { display: none; }
.tl-content { flex: 1; }
.tl-date { font-family: "DM Mono",monospace; font-size: .68rem; color: var(--accent2); letter-spacing: .06em; margin-bottom: .4rem; }
.tl-title { font-size: .95rem; font-weight: 600; margin-bottom: .2rem; }
.tl-org { font-size: .8rem; color: var(--muted); margin-bottom: .5rem; }
.tl-desc { font-size: .82rem; color: var(--muted); line-height: 1.6; }
.resume-cta {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 2.2rem; text-align: center; position: sticky; top: calc(var(--nav-h) + 2rem);
}
.resume-cta .big-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.resume-cta h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .6rem; }
.resume-cta p { font-size: .84rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.6rem; }
.resume-btn {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  width: 100%; padding: .9rem; border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), #8b85ff);
  color: #fff; font-weight: 700; font-size: .9rem;
  text-decoration: none; transition: opacity .2s; margin-bottom: .8rem;
}
.resume-btn:hover { opacity: .88; }
.resume-btn2 {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  width: 100%; padding: .9rem; border-radius: 11px;
  background: transparent; color: var(--text); font-weight: 600; font-size: .9rem;
  text-decoration: none; transition: all .2s; border: 1px solid var(--border);
}
.resume-btn2:hover { border-color: var(--accent); color: var(--accent); }
.resume-stats { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-top: 1.5rem; }
.r-stat {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1rem;
}
.r-stat-n { font-size: 1.4rem; font-weight: 700; color: var(--text); }
.r-stat-n span { color: var(--accent); }
.r-stat-l { font-size: .68rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; margin-top: .2rem; }

/* ── CONTACT ── */
#contact { background: var(--bg); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-details { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-row { display: flex; align-items: flex-start; gap: .9rem; }
.c-ico {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
}
.crt span { display: block; font-size: .68rem; color: var(--muted); font-family: "DM Mono",monospace; letter-spacing:.06em; text-transform: uppercase; }
.crt a, .crt p { color: var(--text); font-size: .88rem; text-decoration: none; font-weight: 500; }
.crt a:hover { color: var(--accent); }
.contact-form {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 2.2rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-size: .75rem; color: var(--muted); margin-bottom: .4rem; font-family: "DM Mono",monospace; letter-spacing:.04em; }
input, textarea, select {
  width: 100%; background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: .7rem .95rem; color: var(--text);
  font-family: "Space Grotesk", sans-serif; font-size: .88rem; outline: none;
  transition: border-color .2s; -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--accent); }
textarea { resize: vertical; min-height: 110px; }
.form-btn {
  width: 100%; padding: .85rem; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #8b85ff);
  color: #fff; font-weight: 600; font-size: .9rem; border: none;
  cursor: pointer; transition: opacity .2s; font-family: "Space Grotesk", sans-serif;
}
.form-btn:hover { opacity: .88; }

/* ── FOOTER ── */
footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 2rem 8%;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-left { font-size: .8rem; color: var(--muted); }
.footer-socials { display: flex; gap: .8rem; }
.si {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: .88rem; transition: all .2s;
}
.si:hover { border-color: var(--accent); background: rgba(108,99,255,.1); }
.wa-float {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 200;
  width: 50px; height: 50px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); text-decoration: none; font-size: 1.4rem;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.scroll-top {
  position: fixed; bottom: 5rem; right: 1.8rem; z-index: 200;
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: .9rem; transition: all .2s; color: var(--muted);
  opacity: 0; pointer-events: none;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { border-color: var(--accent); color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; padding: calc(var(--nav-h) + 2rem) 6% 4rem; }
  .hero-right { order: -1; }
  .hero-photo-wrap { width: 260px; height: 320px; }
  .pb1 { left: -5%; } .pb2 { right: -5%; }
  .about-layout { grid-template-columns: 1fr; }
  .floating-chip { display: none; }
  .about-vis { order: -1; }
  .contact-layout { grid-template-columns: 1fr; }
  .resume-layout { grid-template-columns: 1fr; }
  .resume-cta { position: static; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 4rem 5%; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .pb3 { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
