*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple: #534AB7;
  --purple-mid: #7F77DD;
  --purple-light: #EEEDFE;
  --teal: #0F6E56;
  --teal-light: #E1F5EE;
  --orange: #993C1D;
  --orange-light: #FAECE7;
  --blue: #185FA5;
  --blue-light: #E6F1FB;
  --text: #111111;
  --text-muted: #666666;
  --text-faint: #999999;
  --border: #e8e8e8;
  --bg: #ffffff;
  --bg-alt: #f7f7f6;
  --bg-dark: #100c20;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }

/* ── HEADER ── */
.header {
  position: sticky; top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner { display: flex; align-items: center; height: 66px; gap: 36px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-weight: 600; font-size: 15px; flex-shrink: 0; }
.logo-hex { width: 34px; height: 34px; background: var(--purple); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; font-weight: 600; letter-spacing: -0.5px; flex-shrink: 0; }
.nav-links { display: flex; gap: 30px; margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 14px; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { flex-shrink: 0; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; margin-left: auto; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .2s; }
.mobile-menu { display: none; flex-direction: column; background: var(--bg); border-top: 1px solid var(--border); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 28px; text-decoration: none; color: var(--text); font-size: 15px; border-bottom: 1px solid var(--border); }
.mobile-menu .btn { margin: 16px 28px 20px; text-align: center; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 7px; padding: 11px 22px; border-radius: var(--radius); font-size: 14px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: opacity .15s, transform .1s; }
.btn:hover { opacity: .85; }
.btn:active { transform: scale(.98); }
.btn-dark { background: var(--text); color: #fff; }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: #bbb; opacity: 1; }
.btn-white { background: #fff; color: var(--text); font-weight: 600; }
.btn-full { width: 100%; justify-content: center; }

/* ── HERO ── */
.hero { position: relative; overflow: hidden; padding: 96px 0 80px; border-bottom: 1px solid var(--border); }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .18; }
.hero-orb-1 { width: 500px; height: 500px; background: var(--purple); top: -120px; right: -80px; }
.hero-orb-2 { width: 350px; height: 350px; background: #3DCFB3; bottom: -100px; left: 5%; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 48px 48px; opacity: .35; }

.hero-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); background: var(--bg); border: 1px solid var(--border); padding: 6px 14px; border-radius: 100px; margin-bottom: 24px; font-weight: 500; }
.badge-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; flex-shrink: 0; }
.hero h1 { font-size: clamp(36px, 4.5vw, 54px); font-weight: 700; line-height: 1.12; letter-spacing: -.025em; color: var(--text); margin-bottom: 20px; }
.hero h1 em { color: var(--purple); font-style: normal; }
.hero-sub { font-size: 17px; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero cards */
.hero-cards { display: flex; flex-direction: column; gap: 14px; }
.hcard { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; box-shadow: 0 2px 16px rgba(0,0,0,.06); }
.hcard-main { }
.hcard-sm { display: flex; align-items: center; gap: 14px; }
.hcard-stat-card { display: block; }
.hcard-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text-faint); margin-bottom: 14px; }
.hcard-product { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.hcard-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: #fff; flex-shrink: 0; }
.hcard-icon-purple { background: var(--purple); }
.hcard-icon-teal { background: var(--teal); }
.hcard-name { font-size: 15px; font-weight: 600; color: var(--text); }
.hcard-desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.hcard-stats { display: flex; flex-direction: column; gap: 8px; }
.hcard-stat { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-muted); padding: 8px 12px; background: var(--bg-alt); border-radius: 8px; }
.hcard-val { font-weight: 600; font-size: 12px; }
.hcard-val.green { color: #16a34a; background: #dcfce7; padding: 2px 8px; border-radius: 100px; }
.hcard-bignum { font-size: 36px; font-weight: 700; color: var(--text); letter-spacing: -.03em; }
.hcard-bignumlabel { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.hcard-logo { height: 36px; width: auto; object-fit: contain; flex-shrink: 0; }
.hcard-logo-sm { height: 28px; }
.featured-logo-img { height: 36px; width: auto; object-fit: contain; flex-shrink: 0; background: #fff; padding: 6px 10px; border-radius: 8px; }
.featured-logo-img-gp { height: 28px; }

/* ── MARQUEE ── */
.marquee-strip { background: var(--bg-dark); padding: 14px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 0; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee-track span { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.55); padding: 0 20px; }
.marquee-track .dot { color: var(--purple-mid); padding: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── STATS BAR ── */
.stats-bar { padding: 48px 0; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 0; }
.stat-item { text-align: center; }
.stat-num { font-size: 36px; font-weight: 700; color: var(--text); letter-spacing: -.025em; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: var(--text-muted); line-height: 1.4; }
.stat-divider { width: 1px; height: 48px; background: var(--border); }

/* ── SECTIONS ── */
.section { padding: 88px 0; border-bottom: 1px solid var(--border); }
.section-alt { background: var(--bg-alt); }
.section-dark { background: radial-gradient(125% 120% at 82% 0%, #271b54 0%, #160f30 48%, #0e0a1d 100%); border-bottom: none; }
.section-header { margin-bottom: 48px; }
.section-header-light { }
.section-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--purple); margin-bottom: 10px; }
.section-label-light { color: rgba(255,255,255,.45); }
.section h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 700; color: var(--text); letter-spacing: -.02em; line-height: 1.2; }
.section h2.light { color: #fff; }

/* ── PILLARS ── */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar { border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; background: var(--bg); position: relative; overflow: hidden; }
.pillar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
.pillar-build::before { background: var(--purple); }
.pillar-market::before { background: var(--teal); }
.pillar-automate::before { background: var(--orange); }
.pillar-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.pillar-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.pillar-build .pillar-icon { background: var(--purple-light); color: var(--purple); }
.pillar-market .pillar-icon { background: var(--teal-light); color: var(--teal); }
.pillar-automate .pillar-icon { background: var(--orange-light); color: var(--orange); }
.pillar-num { font-size: 13px; font-weight: 700; color: var(--border); }
.pillar h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.pillar > p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.pillar-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pillar-list li { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.pillar-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.pillar-build .pillar-list li::before { background: var(--purple-mid); }
.pillar-market .pillar-list li::before { background: var(--teal); }
.pillar-automate .pillar-list li::before { background: var(--orange); }

/* ── WORK / PRODUCTS ── */
.featured-products { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.featured-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-xl); padding: 32px; }
.featured-card-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 18px; }
.featured-logo { width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; color: #fff; flex-shrink: 0; }
.featured-logo-purple { background: var(--purple); }
.featured-logo-teal { background: var(--teal); }
.featured-card-header > div:nth-child(2) { flex: 1; }
.featured-card h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.featured-tagline { font-size: 13px; color: rgba(255,255,255,.5); }
.featured-link { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.5); text-decoration: none; white-space: nowrap; border: 1px solid rgba(255,255,255,.15); padding: 6px 12px; border-radius: 8px; transition: color .15s, border-color .15s; flex-shrink: 0; margin-top: 2px; }
.featured-link:hover { color: #fff; border-color: rgba(255,255,255,.3); }
.featured-desc { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 18px; }
.featured-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.featured-tags span { font-size: 12px; color: rgba(255,255,255,.5); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); padding: 4px 12px; border-radius: 100px; }
.featured-quote { border-left: 2px solid rgba(255,255,255,.15); padding-left: 16px; }
.featured-quote p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.65; font-style: italic; margin-bottom: 8px; }
.featured-quote cite { font-size: 12px; color: rgba(255,255,255,.4); font-style: normal; font-weight: 600; }

.client-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.client-grid-2 { grid-template-columns: 1fr 1fr; }
.client-card-top .featured-link { margin-left: auto; }
.client-tags-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; padding-top: 4px; }
.tag-sm { font-size: 11px; font-weight: 500; color: rgba(255,255,255,.65); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); padding: 4px 11px; border-radius: 100px; }
.client-logo-chip { background: #fff; border-radius: 9px; padding: 8px 12px; display: inline-flex; align-items: center; flex-shrink: 0; }
.client-logo-chip img { height: 22px; width: auto; display: block; }
.pillar-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 13px; font-weight: 600; color: var(--teal); text-decoration: none; }
.pillar-link:hover { gap: 9px; }
.client-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.client-card-top { display: flex; align-items: center; gap: 14px; }
.client-icon { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.client-icon-orange { background: var(--orange-light); color: var(--orange); }
.client-icon-blue { background: var(--blue-light); color: var(--blue); }
.client-icon-purple { background: var(--purple-light); color: var(--purple); }
.client-icon-teal { background: var(--teal-light); color: var(--teal); }
.client-card h4 { font-size: 15px; font-weight: 700; color: #fff; }
.client-tag { font-size: 11px; color: rgba(255,255,255,.4); font-weight: 500; }
.client-card > p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.65; }
.client-result { display: flex; align-items: baseline; gap: 8px; padding: 12px 16px; background: rgba(255,255,255,.05); border-radius: 10px; }
.result-num { font-size: 24px; font-weight: 700; color: #fff; letter-spacing: -.02em; }
.result-label { font-size: 12px; color: rgba(255,255,255,.45); }
.client-card blockquote { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.6; font-style: italic; border-left: 2px solid rgba(255,255,255,.1); padding-left: 12px; }
.client-card blockquote cite { display: block; font-style: normal; font-weight: 600; font-size: 12px; color: rgba(255,255,255,.35); margin-top: 6px; }
.client-card-cta { align-items: center; justify-content: center; border-style: dashed; grid-column: 1 / -1; }
.cta-card-inner { text-align: center; }
.cta-card-icon { width: 48px; height: 48px; border-radius: 50%; border: 1.5px dashed rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: rgba(255,255,255,.4); }
.client-card-cta h4 { color: rgba(255,255,255,.7); margin-bottom: 8px; font-size: 16px; }
.client-card-cta p { font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 20px; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.service-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; background: var(--bg); }
.service-card-lg { grid-row: span 2; }
.service-icon-wrap { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service-purple { background: var(--purple-light); color: var(--purple); }
.service-green { background: var(--teal-light); color: var(--teal); }
.service-orange { background: var(--orange-light); color: var(--orange); }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.service-card h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.service-card > p, .service-card-lg > p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.service-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.service-card ul li { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.service-card ul li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--purple-mid); flex-shrink: 0; }

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 28px; left: 15%; right: 15%; height: 1px; background: var(--border); z-index: 0; }
.process-step { padding: 0 24px; position: relative; z-index: 1; }
.process-num { width: 56px; height: 56px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--bg-alt); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--purple); margin: 0 auto 20px; }
.process-step h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; text-align: center; }
.process-step p { font-size: 13px; color: var(--text-muted); line-height: 1.65; text-align: center; }

/* ── ABOUT ── */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-text .section h2 { margin-bottom: 20px; }
.about-text h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 700; color: var(--text); letter-spacing: -.02em; line-height: 1.2; margin-bottom: 20px; }
.about-text p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }
.about-contact { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.about-contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); text-decoration: none; font-weight: 500; transition: color .15s; }
.about-contact-item svg { color: var(--purple); flex-shrink: 0; }
.about-contact-item:hover { color: var(--text); }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.highlight { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.highlight-num { font-size: 30px; font-weight: 700; color: var(--text); letter-spacing: -.025em; margin-bottom: 6px; }
.highlight-label { font-size: 13px; color: var(--text-muted); line-height: 1.4; }
.testimonial-solo { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; background: var(--bg); }
.testimonial-solo p { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-style: italic; margin-bottom: 14px; }
.ts-attr { font-size: 13px; font-weight: 600; color: var(--text); }

/* ── CONTACT ── */
.contact-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; }
.contact-sub { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 36px; }
.contact-options { display: flex; flex-direction: column; gap: 12px; }
.contact-option { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); }
.co-icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); flex-shrink: 0; }
.co-title { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.co-desc { font-size: 12px; color: rgba(255,255,255,.4); }
.contact-form { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-xl); padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.6); }
.form-group input,
.form-group textarea,
.form-group select {
  font-family: inherit; font-size: 14px; color: #fff;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 11px 14px; outline: none;
  transition: border-color .15s; width: 100%; resize: vertical;
}
.form-group select { color: rgba(255,255,255,.7); }
.form-group select option { background: #1a1a2e; color: #fff; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--purple-mid); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.25); }

.form-status { font-size: 14px; line-height: 1.5; margin-top: 4px; min-height: 1px; }
.form-status:empty { display: none; }
.form-status.is-ok { color: #6ee7b7; }
.form-status.is-error { color: #fca5a5; }

/* ── FOOTER ── */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 48px 0 40px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.footer-left .logo { margin-bottom: 12px; }
.footer-tagline { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }
.footer-copy { font-size: 13px; color: var(--text-faint); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-faint); margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color .15s; }
.footer-col a:hover { color: var(--text); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-cards { display: grid; grid-template-columns: 1fr 1fr; }
  .hcard-main { grid-column: span 2; }
  .pillars-grid { grid-template-columns: 1fr; }
  .featured-products { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-lg { grid-row: auto; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid::before { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-divider { display: none; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 64px 0 56px; }
  .hero-cards { grid-template-columns: 1fr; }
  .hcard-main { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .about-highlights { grid-template-columns: 1fr 1fr; }
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

/* Scroll reveal (class applied by main.js) */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .7s cubic-bezier(.16,.84,.44,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Nav shadow on scroll */
.header { transition: box-shadow .25s ease; }
.header.scrolled { box-shadow: 0 6px 24px -12px rgba(0,0,0,.16); }

/* Hover lifts */
.pillar, .feature-card, .service-card, .result-tile, .highlight, .testimonial,
.featured-card, .client-card, .project-card {
  transition: transform .28s cubic-bezier(.16,.84,.44,1), box-shadow .28s ease, border-color .28s ease;
}
.pillar:hover, .feature-card:hover, .service-card:hover, .result-tile:hover,
.highlight:hover, .testimonial:hover, .project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px -16px rgba(15,15,30,.20);
}
/* Dark-section cards: brighten border instead of shadow */
.featured-card:hover, .client-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.28); }

/* Icon + logo micro-interactions */
.pillar-icon, .feature-icon, .service-icon-wrap, .logo-hex { transition: transform .28s cubic-bezier(.16,.84,.44,1); }
.pillar:hover .pillar-icon, .feature-card:hover .feature-icon, .service-card:hover .service-icon-wrap { transform: scale(1.09) rotate(-3deg); }
.logo:hover .logo-hex { transform: rotate(-6deg) scale(1.06); }
.btn svg { transition: transform .2s ease; }
.btn:hover svg { transform: translateX(3px); }
.featured-link svg, .inline-link svg, .proj-link, .pillar-link svg { transition: transform .2s ease; }
.featured-link:hover svg { transform: translate(2px,-2px); }

@media (prefers-reduced-motion: no-preference) {
  /* Hero entrance */
  .hero-content > *, .product-hero-content > * { opacity: 0; animation: fadeUp .7s cubic-bezier(.16,.84,.44,1) forwards; }
  .hero-content > *:nth-child(1), .product-hero-content > *:nth-child(1) { animation-delay: .08s; }
  .hero-content > *:nth-child(2), .product-hero-content > *:nth-child(2) { animation-delay: .16s; }
  .hero-content > *:nth-child(3), .product-hero-content > *:nth-child(3) { animation-delay: .24s; }
  .hero-content > *:nth-child(4), .product-hero-content > *:nth-child(4) { animation-delay: .32s; }
  .hero-content > *:nth-child(5), .product-hero-content > *:nth-child(5) { animation-delay: .40s; }
  .hero-cards, .product-hero-img { opacity: 0; animation: fadeUp .85s .30s cubic-bezier(.16,.84,.44,1) forwards; }
  .hero-orb-1 { animation: floaty 9s ease-in-out infinite; }
  .hero-orb-2 { animation: floaty 12s ease-in-out infinite; }
}

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