/* Topmost Apexnova Solutions — global styles */
:root {
  --bg: #ffffff;
  --deep: #0f1b3d;
  --mid: #1e3a5f;
  --steel: #3b6fa0;
  --mist: #e8edf3;
  --accent: #38bdf8;
  --primary: #2563eb;
  --text: #0f1b3d;
  --muted: #4b5b76;
  --card: #ffffff;
  --border: #e6ebf2;
  --shadow-sm: 0 1px 2px rgba(15, 27, 61, 0.04), 0 1px 3px rgba(15, 27, 61, 0.06);
  --shadow-md: 0 6px 16px -6px rgba(15, 27, 61, 0.12), 0 2px 6px -2px rgba(15, 27, 61, 0.08);
  --shadow-lg: 0 24px 48px -24px rgba(15, 27, 61, 0.28), 0 8px 20px -8px rgba(15, 27, 61, 0.12);
  --radius: 18px;
}

.dark {
  --bg: #070c1c;
  --deep: #e8edf3;
  --mid: #cfd8e6;
  --steel: #7fa6d6;
  --mist: #111a33;
  --text: #e8edf3;
  --muted: #94a3b8;
  --card: #0d1530;
  --border: #1c2a4a;
  --shadow-md: 0 6px 16px -6px rgba(0, 0, 0, 0.5), 0 2px 6px -2px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 48px -24px rgba(0, 0, 0, 0.7), 0 8px 20px -8px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  transition: background-color .3s ease, color .3s ease;
}
h1, h2, h3, h4, h5 {
  font-family: 'Sora', system-ui, sans-serif;
  color: var(--deep);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 .5em;
}
p { color: var(--muted); margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* Header / nav */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: 'Sora'; font-weight: 700; color: var(--deep); }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--deep), var(--steel));
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 14px;
  box-shadow: var(--shadow-sm);
}
.brand-text { font-size: 1rem; letter-spacing: -.01em; }
.brand-text small { display: block; font-size: .68rem; color: var(--muted); font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }

.nav-links { display: none; gap: .25rem; align-items: center; }
.nav-links a {
  padding: .55rem .85rem; border-radius: 10px; font-size: .92rem; color: var(--muted); font-weight: 500;
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--deep); background: var(--mist); }

.nav-actions { display: flex; align-items: center; gap: .5rem; }
.icon-btn {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 10px; border: 1px solid var(--border); background: var(--card);
  color: var(--deep); cursor: pointer; transition: all .2s ease;
}
.icon-btn:hover { border-color: var(--steel); color: var(--steel); }
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn .sun { display: none; }
.dark .icon-btn .sun { display: block; }
.dark .icon-btn .moon { display: none; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.2rem; border-radius: 12px;
  font-weight: 600; font-size: .92rem; font-family: 'Manrope';
  cursor: pointer; border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--deep), var(--steel));
  color: #fff; box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--deep); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--steel); color: var(--steel); background: var(--mist); }

.menu-toggle { display: inline-grid; }
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
}

.mobile-menu {
  display: none;
  padding: .5rem 1.25rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: .8rem .5rem; border-radius: 10px;
  color: var(--deep); font-weight: 500;
}
.mobile-menu a:hover { background: var(--mist); }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 4.5rem 0 3rem; }
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; z-index: 0; pointer-events: none;
}
.hero::before { width: 480px; height: 480px; background: radial-gradient(circle, rgba(56,189,248,.35), transparent 60%); top: -100px; right: -80px; animation: float 14s ease-in-out infinite; }
.hero::after { width: 420px; height: 420px; background: radial-gradient(circle, rgba(59,111,160,.28), transparent 60%); bottom: -140px; left: -80px; animation: float 18s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px, -30px); } }

.hero-grid {
  position: relative; z-index: 1;
  display: grid; gap: 3rem; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .8rem; border-radius: 999px;
  background: var(--mist); color: var(--mid); font-size: .78rem; font-weight: 600;
  border: 1px solid var(--border); letter-spacing: .04em; text-transform: uppercase;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(56,189,248,.25); }

.hero h1 { font-size: clamp(2rem, 4.6vw, 3.5rem); margin: 1rem 0 1rem; }
.hero h1 .grad {
  background: linear-gradient(135deg, var(--steel), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { font-size: 1.08rem; max-width: 560px; color: var(--muted); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }
.hero-meta { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; color: var(--muted); font-size: .88rem; }
.hero-meta .stars { color: #f5a623; letter-spacing: 2px; }

/* Bento hero visual */
.bento {
  display: grid; gap: .9rem;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(70px, auto);
}
.tile {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.1rem; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--steel); }
.tile .num { font-family: 'Sora'; font-size: 2rem; font-weight: 700; color: var(--deep); letter-spacing: -.02em; }
.tile .lbl { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.tile.dark-tile { background: linear-gradient(135deg, var(--deep), var(--mid)); color: #fff; border-color: transparent; }
.tile.dark-tile .num, .tile.dark-tile h4 { color: #fff; }
.tile.dark-tile .lbl { color: rgba(255,255,255,.7); }
.tile.accent-tile { background: linear-gradient(135deg, var(--steel), var(--accent)); color: #fff; border-color: transparent; }
.tile.accent-tile .num, .tile.accent-tile h4 { color: #fff; }
.tile.accent-tile .lbl { color: rgba(255,255,255,.85); }

.hero-bento .tile:nth-child(1) { grid-column: span 6; }
.hero-bento .tile:nth-child(2) { grid-column: span 3; }
.hero-bento .tile:nth-child(3) { grid-column: span 3; }
.hero-bento .tile:nth-child(4) { grid-column: span 6; padding: 1.4rem; }
@media (min-width: 640px) {
  .hero-bento .tile:nth-child(1) { grid-column: span 4; grid-row: span 2; }
  .hero-bento .tile:nth-child(2) { grid-column: span 2; }
  .hero-bento .tile:nth-child(3) { grid-column: span 2; }
  .hero-bento .tile:nth-child(4) { grid-column: span 6; }
}

/* Sections */
.section { padding: 5rem 0; position: relative; }
.section.tight { padding: 3.5rem 0; }
.section.alt { background: linear-gradient(180deg, var(--bg), var(--mist)); }
.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
.section-head p { font-size: 1.05rem; }

/* Trust bar */
.trust {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .trust { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1020px) { .trust { grid-template-columns: repeat(6, 1fr); } }
.trust-item {
  display: flex; align-items: center; gap: .7rem;
  padding: 1rem; border: 1px solid var(--border); border-radius: 14px; background: var(--card);
  font-weight: 600; color: var(--deep); font-size: .92rem;
}
.trust-item svg { width: 22px; height: 22px; color: var(--steel); flex-shrink: 0; }

/* Services bento */
.services {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 640px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .services { grid-template-columns: repeat(6, 1fr); } }
.service {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative; overflow: hidden;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--steel); }
.service::after {
  content: ''; position: absolute; inset: 0; opacity: 0; pointer-events: none;
  background: radial-gradient(circle at 80% 0%, rgba(56,189,248,.14), transparent 60%);
  transition: opacity .3s ease;
}
.service:hover::after { opacity: 1; }
.service .icon-box {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--mist); color: var(--steel);
  display: grid; place-items: center; margin-bottom: 1rem;
}
.service .icon-box svg { width: 22px; height: 22px; }
.service h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.service p { font-size: .9rem; margin: 0; }
@media (min-width: 960px) {
  .service { grid-column: span 2; }
  .service.wide { grid-column: span 3; }
  .service.hero-svc { grid-column: span 3; }
}

/* Why */
.why { display: grid; gap: 1rem; grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) { .why { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .why { grid-template-columns: repeat(4, 1fr); } }
.why-card {
  border: 1px solid var(--border); background: var(--card); border-radius: 14px;
  padding: 1.4rem; transition: all .25s ease;
}
.why-card:hover { border-color: var(--steel); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-card .why-ico {
  width: 40px; height: 40px; border-radius: 10px; background: var(--mist);
  color: var(--steel); display: grid; place-items: center; margin-bottom: .8rem;
}
.why-card .why-ico svg { width: 20px; height: 20px; }
.why-card h4 { font-size: 1rem; margin: 0 0 .3rem; }
.why-card p { font-size: .88rem; margin: 0; }

/* Portfolio bento */
.portfolio { display: grid; gap: 1rem; grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) { .portfolio { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .portfolio { grid-template-columns: repeat(6, 1fr); } }
.project {
  border: 1px solid var(--border); background: var(--card); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex; flex-direction: column;
}
.project:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--steel); }
.project .thumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--mist); }
.project .thumb svg, .project .thumb img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .5s ease; }
.project:hover .thumb svg, .project:hover .thumb img { transform: scale(1.04); }
.project .body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.project .cat { font-size: .74rem; color: var(--steel); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.project h3 { font-size: 1.1rem; margin: 0; }
.project p { font-size: .9rem; margin: .2rem 0 .8rem; flex: 1; }
.project .link { color: var(--steel); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: .35rem; }
.project .link::after { content: '→'; transition: transform .2s ease; }
.project:hover .link::after { transform: translateX(3px); }
@media (min-width: 1020px) {
  .project { grid-column: span 2; }
  .project.feature { grid-column: span 4; grid-row: span 2; }
  .project.feature .thumb { aspect-ratio: 16 / 9; }
}

.filters { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2rem; }
.chip {
  padding: .5rem 1rem; border-radius: 999px; border: 1px solid var(--border);
  background: var(--card); color: var(--muted); font-weight: 600; font-size: .85rem; cursor: pointer;
  transition: all .2s ease;
}
.chip:hover { color: var(--deep); border-color: var(--steel); }
.chip.active { background: var(--deep); color: #fff; border-color: var(--deep); }

/* Process timeline */
.timeline {
  position: relative;
  display: grid; gap: 1.2rem;
}
.timeline::before {
  content: ''; position: absolute; left: 22px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--steel), transparent);
  border-radius: 2px;
}
.step {
  position: relative; display: grid; grid-template-columns: 46px 1fr; gap: 1.2rem;
  padding: 1rem 0;
}
.step .n {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--card); border: 2px solid var(--steel); color: var(--deep);
  display: grid; place-items: center; font-family: 'Sora'; font-weight: 700;
  position: relative; z-index: 1;
}
.step:hover .n { background: var(--deep); color: #fff; border-color: var(--deep); }
.step .body h4 { margin: .5rem 0 .3rem; font-size: 1.1rem; }
.step .body p { margin: 0; }
@media (min-width: 800px) {
  .timeline { grid-template-columns: repeat(2, 1fr); column-gap: 3rem; }
  .timeline::before { display: none; }
  .step { padding: 1.2rem; border: 1px solid var(--border); border-radius: 14px; background: var(--card); }
}

/* Testimonials */
.testimonials { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .testimonials { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1rem;
}
.testimonial .stars { color: #f5a623; letter-spacing: 3px; font-size: 1rem; }
.testimonial blockquote { margin: 0; color: var(--text); font-size: 1rem; line-height: 1.55; font-weight: 500; }
.testimonial .who { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.testimonial .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--steel), var(--accent));
  color: #fff; display: grid; place-items: center; font-weight: 700; font-family: 'Sora';
}
.testimonial .who .name { font-weight: 700; color: var(--deep); font-size: .92rem; }
.testimonial .who .role { font-size: .8rem; color: var(--muted); }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: .7rem; }
.q {
  border: 1px solid var(--border); background: var(--card); border-radius: 14px;
  overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease;
}
.q.open { border-color: var(--steel); box-shadow: var(--shadow-sm); }
.q summary {
  list-style: none; cursor: pointer; padding: 1.1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 600; color: var(--deep); font-family: 'Sora';
}
.q summary::-webkit-details-marker { display: none; }
.q .plus {
  width: 28px; height: 28px; border-radius: 8px; background: var(--mist);
  display: grid; place-items: center; color: var(--steel); font-size: 1.2rem; flex-shrink: 0;
  transition: transform .3s ease, background .2s ease;
}
.q.open .plus { transform: rotate(45deg); background: var(--deep); color: #fff; }
.q .a { padding: 0 1.25rem 1.2rem; color: var(--muted); }

/* Contact */
.contact-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.4fr 1fr; } }
.contact-form {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-sm);
  display: grid; gap: 1rem;
}
.field { display: grid; gap: .35rem; }
.field label { font-size: .82rem; font-weight: 600; color: var(--deep); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem 1rem; border-radius: 12px;
  border: 1px solid var(--border); background: var(--bg); color: var(--text);
  font: inherit; transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--steel); box-shadow: 0 0 0 4px rgba(59,111,160,.15);
}
.row-2 { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .row-2 { grid-template-columns: 1fr 1fr; } }
.form-status { font-size: .88rem; margin-top: .3rem; }
.form-status.ok { color: #16a34a; }
.form-status.err { color: #dc2626; }

.contact-info {
  background: linear-gradient(160deg, var(--deep), var(--mid)); color: #fff;
  border-radius: var(--radius); padding: 1.8rem; display: flex; flex-direction: column; gap: 1.2rem;
  box-shadow: var(--shadow-md);
}
.contact-info h3 { color: #fff; margin: 0 0 .3rem; }
.contact-info p { color: rgba(255,255,255,.75); margin: 0; }
.contact-info .info-row { display: flex; align-items: flex-start; gap: .75rem; }
.contact-info .info-row svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.contact-info .info-row .val { color: #fff; font-weight: 600; font-size: .95rem; }
.contact-info .info-row .lbl { font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .05em; }
.socials { display: flex; gap: .5rem; margin-top: auto; }
.socials a {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.1);
  display: grid; place-items: center; color: #fff; transition: background .2s ease, transform .2s ease;
}
.socials a:hover { background: var(--accent); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }

/* Footer */
.site-footer {
  background: var(--deep); color: rgba(255,255,255,.75); padding: 4rem 0 2rem; margin-top: 3rem;
}
.dark .site-footer { background: #050915; }
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; } }
.footer-grid h5 { color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 1rem; font-family: 'Sora'; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer-grid a { color: rgba(255,255,255,.7); font-size: .92rem; transition: color .2s ease; }
.footer-grid a:hover { color: var(--accent); }
.footer-brand p { color: rgba(255,255,255,.65); font-size: .92rem; max-width: 320px; }
.newsletter { display: flex; gap: .5rem; margin-top: .75rem; }
.newsletter input {
  flex: 1; padding: .7rem .9rem; border-radius: 10px; border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05); color: #fff; font: inherit;
}
.newsletter input::placeholder { color: rgba(255,255,255,.5); }
.newsletter input:focus { outline: none; border-color: var(--accent); }
.newsletter button {
  padding: .7rem 1rem; border-radius: 10px; border: none; cursor: pointer;
  background: var(--accent); color: var(--deep); font-weight: 700;
}
.foot-base {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 3rem; padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  font-size: .85rem;
}
.foot-base .legal { display: flex; gap: 1rem; }

/* Back to top */
.to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 60;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--deep); color: #fff; box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .2s ease;
}
.to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { background: var(--steel); }
.to-top svg { width: 20px; height: 20px; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Page hero (inner pages) */
.page-hero { padding: 4rem 0 2rem; position: relative; overflow: hidden; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .75rem; }
.page-hero p { max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.page-hero::before {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,.2), transparent 65%);
  top: -240px; left: 50%; transform: translateX(-50%); filter: blur(60px); z-index: 0;
}
.page-hero > .container { position: relative; z-index: 1; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--deep), var(--mid));
  color: #fff; border-radius: 24px; padding: 3rem;
  display: grid; gap: 1.5rem; align-items: center; text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.8); max-width: 620px; margin: 0 auto; }
.cta-banner .btn-primary { background: var(--accent); color: var(--deep); }
.cta-banner .btn-primary:hover { background: #fff; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Focus visible */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 8px; }
