/* ============================================
   OneVis Shared Styles
   ============================================ */
:root {
  --navy: #3378BD;          /* flat brand blue, bands, strips, footer */
  --navy-2: #3378BD;        /* kept equal: site uses flat blue, no gradients */
  --card: #ffffff;
  --ink: #1c1c1c;
  --muted: #55606f;
  --line: #e2e9f6;
  --brand: #2E7FC1;         /* One Vision heading/button blue */
  --brand-dark: #24659b;
  --accent: #d8eafc;        /* pale blue accent on blue backgrounds */
  --star: #f5b70a;          /* gold for review stars */
  --bg-soft: #f3f8fd;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(20, 35, 63, .08);
  --maxw: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  font-size: 16.5px;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--brand); }
h3 { font-size: 1.25rem; }
p.lead { font-size: 1.15rem; color: var(--muted); }

.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--brand);
  background: rgba(79, 109, 245, .1); padding: 6px 14px; border-radius: 999px;
  margin-bottom: 16px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; cursor: pointer; border: 2px solid transparent;
  transition: all .25s cubic-bezier(.4, 0, .2, 1); position: relative; overflow: hidden;
}
.btn::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg); transition: left .5s ease;
}
.btn:hover::after { left: 130%; }
.btn-primary { background: linear-gradient(135deg, #3fa0e8, var(--brand)); color: #fff; box-shadow: 0 4px 14px rgba(46,127,193,.35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(46,127,193,.5); }
.btn-outline { border-color: var(--brand); color: var(--brand); background: transparent; }
.btn-outline:hover { background: var(--brand); color: #fff; transform: translateY(-3px); box-shadow: 0 10px 24px rgba(46,127,193,.35); }
.btn-light { background: #fff; color: var(--brand); box-shadow: 0 4px 14px rgba(0,0,0,.12); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.2); }

/* ---------- Header / Nav ---------- */
header.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.25rem; color: var(--brand); letter-spacing: -.02em; }
.logo img { height: 64px; width: auto; display: block; }
.logo .mark {
  width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--navy-2));
  color: #fff; font-size: 1rem; font-weight: 900;
}
.logo span.one { color: var(--accent); }
nav.main-nav { display: flex; align-items: center; gap: 28px; }
nav.main-nav a { color: #333f56; font-weight: 600; font-size: .95rem; transition: color .2s; position: relative; }
nav.main-nav a:not(.btn)::before {
  content: ""; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px;
  background: linear-gradient(90deg, #3fa0e8, var(--brand)); transition: width .3s ease; border-radius: 2px;
}
nav.main-nav a:not(.btn):hover::before, nav.main-nav a.active::before { width: 100%; }
nav.main-nav a:hover, nav.main-nav a.active { color: var(--brand); }
nav.main-nav .btn { padding: 10px 20px; font-size: .9rem; color: #fff; }
.nav-toggle { display: none; background: none; border: 0; color: var(--brand); font-size: 1.6rem; cursor: pointer; }

/* ---------- Hero (minimal white, high-tech) ---------- */
.hero {
  background:
    radial-gradient(700px 400px at 90% 10%, rgba(63,160,232,.10), transparent 65%),
    radial-gradient(600px 400px at 5% 90%, rgba(46,127,193,.08), transparent 65%),
    #ffffff;
  color: var(--ink); padding: 96px 0 110px; text-align: left; position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(46,127,193,.12) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(120deg, rgba(0,0,0,.5), transparent 55%);
}
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; }
.hero h1 span {
  background: linear-gradient(90deg, #3fa0e8, var(--brand));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { color: var(--muted); margin: 22px 0 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 46px; flex-wrap: wrap; }
.hero-stats .stat b { display: block; font-size: 1.8rem; color: var(--brand); }
.hero-stats .stat small { color: var(--muted); font-weight: 600; }

/* floating hero visual */
.hero-visual { position: relative; animation: floatY 6s ease-in-out infinite; }
.hero-visual img {
  width: 100%; height: auto; border-radius: 20px;
  box-shadow: 0 30px 70px rgba(46,127,193,.25);
  border: 1px solid var(--line); background: #fff;
}
.hero-visual::before {
  content: ""; position: absolute; inset: -18px; z-index: -1; border-radius: 28px;
  background: linear-gradient(135deg, rgba(63,160,232,.25), rgba(46,127,193,.05));
  filter: blur(24px); animation: glowPulse 5s ease-in-out infinite;
}
.hero-badge {
  position: absolute; bottom: -20px; left: -14px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 12px 18px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: .9rem;
  animation: floatY 6s ease-in-out infinite reverse;
}
.hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: #2eae60; box-shadow: 0 0 0 4px rgba(46,174,96,.2); animation: blink 2s infinite; }

@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes glowPulse { 0%, 100% { opacity: .7; } 50% { opacity: 1; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

/* ---------- Page hero (interior pages, minimal white) ---------- */
.page-hero {
  background:
    radial-gradient(600px 300px at 85% 0%, rgba(63,160,232,.10), transparent 60%),
    #ffffff;
  color: var(--ink); padding: 76px 0 60px; text-align: center; border-bottom: 1px solid var(--line);
}
.page-hero h1 { color: var(--ink); }
.page-hero p { color: var(--muted); max-width: 720px; margin: 16px auto 0; font-size: 1.1rem; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.4, 0, .2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-visual, .hero-badge { animation: none; }
}

/* ---------- Sections ---------- */
section { padding: 84px 0; }
section.soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 54px; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.08rem; }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 26px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(46,127,193,.18);
  border-color: rgba(46,127,193,.45);
}
.card:hover .icon { transform: scale(1.08) rotate(-3deg); }
.card .icon { transition: transform .3s cubic-bezier(.4, 0, .2, 1); }
.card .icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  margin-bottom: 18px; color: var(--brand);
  background: linear-gradient(135deg, rgba(46,127,193,.10), rgba(63,160,232,.16));
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }
.card ul { margin: 14px 0 0; padding-left: 0; list-style: none; }
.card ul li { padding: 7px 0 7px 28px; color: var(--ink); font-size: .95rem; position: relative; }
.card ul li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E7FC1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10' opacity='.3'/%3E%3Cpath d='M8 12.5l2.6 2.6L16 9.6'/%3E%3C/svg%3E") no-repeat center / contain;
}
.card .learn { display: inline-block; margin-top: 16px; font-weight: 700; font-size: .95rem; }

/* ---------- Logo strip (dark so light client logos stay visible) ---------- */
.logo-strip { padding: 46px 0; background: var(--navy); }
.logo-strip .strip-title { text-align: center; color: #ffffff; font-weight: 700; font-size: .95rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 30px; }
.logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 26px 40px; }
.logos img { height: 96px; width: auto; max-width: 230px; object-fit: contain; opacity: .95; transition: transform .3s ease, opacity .3s ease; }
.logos img:hover { transform: scale(1.1); opacity: 1; }
.logos span {
  border: 1px solid rgba(255,255,255,.25); border-radius: 999px; padding: 9px 20px;
  color: #cdd4e6; font-weight: 700; font-size: .88rem; background: transparent;
}

/* ---------- Testimonials ---------- */
.tcard { display: flex; flex-direction: column; height: 100%; }
.stars { color: var(--star); letter-spacing: 2px; margin-bottom: 12px; font-size: 1rem; }
.tcard blockquote { color: var(--ink); font-size: .98rem; flex: 1; }
.tcard .who { display: flex; align-items: center; gap: 13px; margin-top: 20px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: .95rem; flex-shrink: 0;
}
.who b { display: block; font-size: .95rem; }
.who small { color: var(--muted); }
.result-tag {
  display: inline-block; margin-top: 14px; background: rgba(46, 174, 96, .1); color: #1e7a43;
  font-weight: 700; font-size: .82rem; padding: 5px 12px; border-radius: 999px;
}
.category-tag {
  display: inline-block; background: rgba(46, 127, 193, .1); color: var(--brand);
  font-weight: 700; font-size: .82rem; padding: 5px 12px; border-radius: 999px;
}
.industry-group { margin-bottom: 44px; }
.industry-group:last-child { margin-bottom: 0; }
.industry-group h3 {
  font-size: .92rem; color: var(--muted); text-transform: uppercase;
  letter-spacing: .06em; font-weight: 800; margin-bottom: 18px;
}
.industry-group .card.tcard { padding: 28px 24px; }
.industry-group .avatar { width: 56px; height: 56px; font-size: 1.05rem; }
.industry-group .who b { font-size: 1.02rem; }
.quote-slot {
  border: 1.5px dashed var(--line); border-radius: 10px; padding: 14px 16px;
  color: var(--muted); font-size: .9rem; font-style: italic; flex: 1;
}
.result-slot {
  display: inline-block; margin-top: 14px; border: 1.5px dashed var(--line);
  color: var(--muted); font-weight: 600; font-size: .78rem; padding: 5px 12px; border-radius: 999px;
}

/* ---------- Pricing ---------- */
.price-card { position: relative; text-align: left; display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid var(--brand); transform: scale(1.02); }
.badge-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff; font-size: .78rem; font-weight: 800;
  padding: 5px 16px; border-radius: 999px; white-space: nowrap;
}
.price { font-size: 2.4rem; font-weight: 800; margin: 10px 0 2px; }
.price small { font-size: 1rem; color: var(--muted); font-weight: 600; }
.price-note { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }
.price-card .btn { margin-top: 22px; text-align: center; }
.price-card ul { flex: 1; }

/* ---------- Process / steps ---------- */
.steps { counter-reset: step; }
.step { position: relative; display: flex; gap: 20px; align-items: flex-start; }
.step .num {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #3fa0e8, var(--brand)); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.05rem;
  box-shadow: 0 6px 16px rgba(46,127,193,.3);
}
.step h3 { margin-bottom: 8px; }

/* ---------- Stats band (light, techy) ---------- */
.stats-band {
  background: var(--bg-soft); color: var(--ink); padding: 64px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stats-band .grid { text-align: center; }
.stats-band b {
  display: block; font-size: 2.5rem;
  background: linear-gradient(90deg, #3fa0e8, var(--brand));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stats-band small { color: var(--muted); font-weight: 600; }
.section-img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: auto; }

/* Plain list (no check bullets), e.g. contact details */
.card ul.plain-list li { padding-left: 0; }
.card ul.plain-list li::before { display: none; }

/* Illustration panels inside cards */
.illus { width: 100%; height: auto; display: block; margin-bottom: 20px; border-radius: 10px; }

/* Circle image trio (from live site's Social Media section) */
.circle-row { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; }
.circle-item { text-align: center; flex: 1; min-width: 130px; }
.circle-item img {
  width: 124px; height: 124px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px;
  border: 3px solid rgba(46,127,193,.25); box-shadow: var(--shadow);
  transition: transform .3s ease, border-color .3s ease;
}
.circle-item:hover img { transform: scale(1.07); border-color: var(--brand); }
.circle-item b { font-size: .95rem; display: block; }

/* Recent work showcase */
.work-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.work-card .shot {
  height: 170px; display: grid; place-items: center; text-align: center;
  background: linear-gradient(135deg, #10233f, #1e4370);
}
.work-card .shot b { color: #fff; font-weight: 900; font-size: 1.7rem; letter-spacing: .01em; padding: 0 20px; }
.work-card .shot img { max-height: 96px; max-width: 65%; object-fit: contain; margin: 0 auto; }
.work-card .shot svg.mark { width: 64px; height: 64px; color: #fff; margin: 0 auto; }
.avatar.logo-avatar { background: #fff; border: 1px solid var(--line); padding: 3px; }
.team-photo {
  width: 128px; height: 128px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 16px; display: block;
  border: 3px solid rgba(46,127,193,.25); box-shadow: var(--shadow);
  transition: transform .3s ease, border-color .3s ease;
}
.card:hover .team-photo { transform: scale(1.05); border-color: var(--brand); }

/* Team hierarchy */
.team-section-label { text-align: center; margin: 56px 0 30px; }
.team-section-label:first-of-type { margin-top: 0; }
.team-card, .founder-card { text-align: center; }
.team-role { color: var(--brand) !important; font-weight: 700; font-size: .9rem !important; }
.founder-row { max-width: 430px; margin: 0 auto 28px; }
.founder-card { padding: 38px 32px; border-color: rgba(46,127,193,.28); }
.founder-card .founder-photo { width: 176px; height: 176px; border-width: 4px; margin-bottom: 18px; }
.founder-card h3 { font-size: 1.4rem; }
.leadership-partners { max-width: 800px; margin: 0 auto; }
.team-culture-photo { margin: 64px auto 0; max-width: 940px; text-align: center; }
.team-culture-photo img { width: 100%; border-radius: 16px; box-shadow: var(--shadow); }
.team-culture-photo figcaption { color: var(--muted); font-size: .92rem; margin-top: 14px; }
.avatar.logo-avatar img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.work-card .shot small { display: block; color: #9db8dd; font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; margin-top: 8px; }
.work-card .body { padding: 26px; flex: 1; }
.tag-chip {
  display: inline-block; background: rgba(46,127,193,.1); color: var(--brand);
  font-weight: 700; font-size: .78rem; padding: 4px 13px; border-radius: 999px; margin-bottom: 12px;
}
.work-card h3 { margin-bottom: 8px; }
.work-card .metric { color: #1e7a43; font-weight: 800; font-size: .9rem; margin-top: 12px; display: block; }

/* Partner badge strip */
.partner-strip { padding: 44px 0; border-bottom: 1px solid var(--line); background: #fff; }
.partner-strip .strip-label { text-align: center; color: var(--muted); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 26px; }
.partners { display: flex; justify-content: center; align-items: center; gap: 52px; flex-wrap: wrap; }
.partners img { height: 60px; width: auto; max-width: 200px; object-fit: contain; opacity: .85; filter: grayscale(25%); transition: all .3s ease; }
.partners img:hover { opacity: 1; filter: none; transform: scale(1.08); }
.stats-band small { color: #9aa5c0; font-weight: 600; font-size: .95rem; }

/* ---------- FAQ ---------- */
details.faq {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 20px 24px; margin-bottom: 14px; box-shadow: var(--shadow);
}
details.faq summary { font-weight: 700; cursor: pointer; font-size: 1.02rem; list-style: none; position: relative; padding-right: 30px; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq { transition: box-shadow .3s ease, border-color .3s ease; }
details.faq:hover { border-color: rgba(46,127,193,.45); box-shadow: 0 12px 30px rgba(46,127,193,.12); }
details.faq summary::after { content: "+"; position: absolute; right: 0; top: 0; font-size: 1.3rem; color: var(--brand); font-weight: 800; transition: transform .3s ease; }
details.faq[open] summary::after { content: "-"; }
details.faq p { color: var(--muted); margin-top: 12px; font-size: .97rem; }

/* ---------- Forms ---------- */
form.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { font-weight: 700; font-size: .9rem; display: block; margin-bottom: 6px; }
input, select, textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: .97rem; background: #fff; color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(79,109,245,.35); border-color: var(--brand); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  color: #fff; text-align: center; padding: 96px 0; border-radius: 0;
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); margin: 14px auto 30px; max-width: 640px; font-size: 1.1rem; }

/* ---------- Footer (light minimal) ---------- */
footer.site-footer { background: #fbfdff; color: var(--muted); padding: 64px 0 30px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-grid h4 { color: var(--ink); font-size: 1rem; margin-bottom: 16px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: var(--muted); font-size: .95rem; transition: color .2s; }
.footer-grid a:hover { color: var(--brand); }
.footer-grid p { font-size: .95rem; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .88rem; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--brand); }

/* ---------- Table (comparison) ---------- */
.compare { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.compare th, .compare td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: .95rem; }
.compare th { background: var(--navy); color: #fff; font-size: .9rem; }
.compare td.yes { color: #1e7a43; font-weight: 700; }
.compare tr:last-child td { border-bottom: 0; }

/* ---------- Misc ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.check-list { list-style: none; margin-top: 18px; }
.check-list li { padding: 8px 0 8px 30px; position: relative; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 12px; width: 19px; height: 19px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E7FC1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10' opacity='.3'/%3E%3Cpath d='M8 12.5l2.6 2.6L16 9.6'/%3E%3C/svg%3E") no-repeat center / contain;
}
.map-placeholder {
  background: linear-gradient(135deg, #dfe6f7, #eef1fa); border-radius: var(--radius);
  min-height: 320px; display: grid; place-items: center; color: var(--muted); font-weight: 700;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .container, .two-col { grid-template-columns: 1fr; }
  .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav.main-nav {
    display: none; position: absolute; top: 84px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 24px; gap: 18px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  nav.main-nav.open { display: flex; }
  .nav-toggle { display: block; }
}
@media (max-width: 600px) {
  .grid.cols-3, .grid.cols-2, .grid.cols-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .price-card.featured { transform: none; }
}

/* ============================================
   OneVis 2026 refresh: modern motion layer
   (appended overrides; safe for all pages)
   ============================================ */

/* Bigger, tighter display type */
h1 { font-size: clamp(2.5rem, 5.6vw, 4.1rem); font-weight: 900; letter-spacing: -.035em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.45rem); letter-spacing: -.025em; }

/* Glass sticky header */
header.site-header {
  background: rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  backdrop-filter: blur(16px) saturate(1.5);
  border-bottom: 1px solid rgba(20, 35, 63, .06);
  transition: box-shadow .3s ease;
}
header.site-header.scrolled { box-shadow: 0 10px 30px rgba(20, 35, 63, .08); }
.logo img { height: 42px; }

/* Interior page hero: more air, bigger statement */
.page-hero { padding: 104px 0 72px; border-bottom: 0; }
.page-hero p { font-size: 1.14rem; }

/* Animated gradient shimmer on hero highlight */
.hero h1 span {
  background: linear-gradient(90deg, #2E7FC1, #5eb2f0, #2E7FC1);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 7s linear infinite;
}
@keyframes shimmer { to { background-position: -220% 0; } }

/* Client logo marquee (script.js upgrades .logo-strip .logos) */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee .marquee-track {
  display: flex; flex-wrap: nowrap; align-items: center;
  gap: 56px; width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Team layout: no chrome, just people */
.team-wrap { max-width: 1000px; margin: 0 auto; }
.person { text-align: center; }
.person .team-photo {
  width: 132px; height: 132px;
  border: 2px solid rgba(46, 127, 193, .16);
}
.person h3 { font-size: 1.02rem; margin: 0 0 3px; }
.person .team-role { font-size: .84rem !important; font-weight: 600; }
.person:hover .team-photo { transform: scale(1.05); border-color: var(--brand); }
.founder-feature { display: flex; justify-content: center; margin-bottom: 44px; }
.founder-feature .team-photo { width: 196px; height: 196px; border-width: 3px; }
.founder-feature h3 { font-size: 1.4rem; }
.team-row { display: flex; justify-content: center; gap: 72px; flex-wrap: wrap; margin-bottom: 52px; }
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 42px 20px; }

/* Centered short story */
.story { max-width: 780px; margin: 0 auto; text-align: center; }
.story p { color: var(--muted); font-size: 1.14rem; }
.facts { justify-content: center; margin-top: 38px; }

/* Giving back: masonry keeps native photo ratios */
.charity-grid { columns: 2; column-gap: 24px; max-width: 980px; margin: 44px auto 0; }
.charity-grid figure { break-inside: avoid; margin: 0 0 24px; }
.charity-grid img {
  width: 100%; display: block; border-radius: 16px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.charity-grid figcaption { font-size: .88rem; color: var(--muted); margin-top: 9px; }

@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .team-row { gap: 44px; }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 14px; }
  .charity-grid { columns: 1; }
  .page-hero { padding: 76px 0 54px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1 span { animation: none; }
  .marquee .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
}
