/* ── HOUSE OF SCALE — MAIN STYLESHEET ── */
:root {
  --navy:    #1E3A50;
  --navy2:   #2E5470;
  --steel:   #4A6880;
  --pale:    #EDF3F8;
  --subtle:  #F5F8FA;
  --cream:   #FAFCFD;
  --white:   #FFFFFF;
  --ink:     #0E1E28;
  --muted:   #7A92A3;
  --border:  #D8E6EF;
  --gold:    #C9A84C;
  --gold-lt: #E8D08A;
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--ink); font-family: var(--sans); font-weight: 300; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--sans); border: none; cursor: pointer; }
img { display: block; max-width: 100%; }

/* Remove default WP margins */
.site-main, .entry-content { margin: 0; padding: 0; }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 66px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#nav.scrolled { box-shadow: 0 4px 32px rgba(14,30,40,.07); }
.nav-logo { display: flex; flex-direction: column; gap: 1px; }
.nav-logo-top { font-family: var(--serif); font-size: 10px; font-weight: 400; letter-spacing: .55em; text-transform: uppercase; color: var(--steel); line-height: 1; }
.nav-logo-bot { font-family: var(--serif); font-size: 20px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); line-height: 1; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 400; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--navy); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-badge { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--steel); font-weight: 500; }
.nav-cta {
  background: var(--navy); color: var(--white);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
  padding: 11px 24px; border-radius: 100px;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--navy2); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 48px 80px;
  position: relative; overflow: hidden;
}
.hero-bg-text {
  position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%);
  font-family: var(--serif); font-size: 260px; font-weight: 700;
  color: rgba(255,255,255,.025); white-space: nowrap; letter-spacing: .05em;
  pointer-events: none; user-select: none; line-height: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px; padding: 6px 18px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.6); font-weight: 400;
  margin-bottom: 40px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 700; line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 900px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 18px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,.5); max-width: 580px; margin: 0 auto 48px; }
.hero-sub strong { color: rgba(255,255,255,.8); font-weight: 400; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-gold {
  background: var(--gold); color: var(--ink);
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  padding: 16px 36px; border-radius: 100px;
  transition: background .2s, transform .15s;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-ghost-white {
  background: transparent; color: var(--white);
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 400;
  padding: 15px 36px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.25);
  transition: border-color .2s, transform .15s;
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,.6); transform: translateY(-2px); }
.hero-trust { display: flex; align-items: center; gap: 16px; margin-top: 52px; font-size: 12px; color: rgba(255,255,255,.35); }
.hero-trust-avatars { display: flex; }
.hero-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--steel); border: 2px solid var(--navy); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 600; color: var(--white); margin-left: -8px; letter-spacing: 0; }
.hero-avatar:first-child { margin-left: 0; }
.hero-stars { color: var(--gold); letter-spacing: 2px; font-size: 13px; }
.hero-stats { display: grid; grid-template-columns: repeat(5,1fr); border-top: 1px solid rgba(255,255,255,.08); margin-top: 72px; width: 100%; }
.hs-item { padding: 32px 24px; border-right: 1px solid rgba(255,255,255,.08); text-align: center; }
.hs-item:last-child { border-right: none; }
.hs-num { font-family: var(--serif); font-size: 40px; font-weight: 700; color: var(--white); line-height: 1; }
.hs-suffix { font-size: 20px; font-weight: 400; color: rgba(255,255,255,.4); }
.hs-lbl { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-top: 8px; font-weight: 400; }
.partner-logos { display: flex; align-items: center; gap: 28px; margin-top: 36px; opacity: .4; }
.partner-logo { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--white); }

/* ── MARQUEE ── */
.marquee-wrap { background: var(--ink); padding: 16px 0; overflow: hidden; }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 25s linear infinite; }
.marquee-item { flex-shrink: 0; padding: 0 28px; font-size: 12px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.35); display: flex; align-items: center; gap: 28px; }
.marquee-item::after { content: '✦'; color: var(--gold); font-size: 8px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── CLIENTS ── */
.clients-sec { padding: 56px 48px; border-bottom: 1px solid var(--border); }
.clients-label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 500; text-align: center; margin-bottom: 36px; display: flex; align-items: center; justify-content: center; gap: 20px; }
.clients-label::before, .clients-label::after { content: ''; flex: 1; height: 1px; background: var(--border); max-width: 100px; }
.clients-filter { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; padding: 7px 18px; border-radius: 100px; background: transparent; border: 1px solid var(--border); color: var(--muted); cursor: pointer; transition: all .2s; }
.filter-btn.active, .filter-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.logo-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 0; border: 1px solid var(--border); }
.logo-cell { padding: 28px 20px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 13px; font-weight: 500; color: var(--muted); text-align: center; transition: all .25s; min-height: 72px; letter-spacing: .04em; }
.logo-cell:nth-child(6n) { border-right: none; }
.logo-cell:nth-last-child(-n+6) { border-bottom: none; }
.logo-cell:hover { background: var(--pale); color: var(--navy); }
.logo-cell.hidden { display: none; }

/* ── SECTIONS ── */
.sec { padding: 96px 48px; border-bottom: 1px solid var(--border); }
.sec-alt { background: var(--subtle); }
.sec-navy { background: var(--navy); border-bottom-color: rgba(255,255,255,.08); }
.sec-ink { background: var(--ink); border-bottom-color: rgba(255,255,255,.06); }
.sec-eyebrow { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--steel); font-weight: 500; display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.sec-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.sec-eyebrow.light { color: rgba(255,255,255,.4); }
.sec-eyebrow.light::before { background: var(--gold); }
.sec-title { font-family: var(--serif); font-size: clamp(28px,3.5vw,46px); font-weight: 700; line-height: 1.15; color: var(--ink); margin-bottom: 16px; }
.sec-title em { font-style: italic; color: var(--navy); }
.sec-title.white { color: var(--white); }
.sec-title.white em { color: var(--gold); }
.sec-header { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 64px; }
.sec-note { font-size: 14px; font-weight: 300; line-height: 1.85; color: var(--muted); max-width: 380px; margin-left: auto; }
.sec-note.light { color: rgba(255,255,255,.4); }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--border); }
.svc-card { padding: 40px 32px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; transition: background .25s; overflow: hidden; }
.svc-card:nth-child(4n) { border-right: none; }
.svc-card:nth-last-child(-n+4) { border-bottom: none; }
.svc-card:hover { background: var(--pale); }
.svc-card:hover .svc-num { color: var(--gold); }
.svc-card:hover .svc-more { opacity: 1; transform: translateX(0); }
.svc-num { font-family: var(--serif); font-size: 32px; font-weight: 700; color: var(--border); line-height: 1; margin-bottom: 18px; transition: color .25s; }
.svc-title { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); margin-bottom: 12px; }
.svc-desc { font-size: 13px; font-weight: 300; line-height: 1.75; color: var(--muted); }
.svc-more { margin-top: 20px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); font-weight: 500; opacity: 0; transform: translateX(-8px); transition: all .25s; display: flex; align-items: center; gap: 6px; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.why-left { padding: 96px 64px 96px 48px; border-right: 1px solid rgba(255,255,255,.1); }
.why-right { padding: 96px 48px 96px 64px; }
.why-points { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.why-point { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.07); display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: start; }
.why-point:last-child { border-bottom: none; }
.why-num { font-family: var(--serif); font-size: 22px; font-weight: 400; font-style: italic; color: var(--gold); line-height: 1; padding-top: 2px; }
.why-title { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 6px; }
.why-body { font-size: 13px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,.4); }
.proof-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.proof-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 24px; }
.proof-card-num { font-family: var(--serif); font-size: 44px; font-weight: 700; color: var(--white); line-height: 1; }
.proof-card-suffix { font-size: 22px; font-weight: 400; color: rgba(255,255,255,.4); }
.proof-card-lbl { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-top: 6px; font-weight: 400; }
.proof-card-desc { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.35); margin-top: 8px; line-height: 1.6; }

/* ── RESULTS ── */
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 64px; }
.result-card { border: 1px solid var(--border); border-radius: 12px; padding: 36px 32px; transition: all .25s; position: relative; overflow: hidden; }
.result-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--navy); }
.result-card:hover { box-shadow: 0 8px 40px rgba(30,58,80,.1); transform: translateY(-4px); border-color: var(--navy); }
.result-tag { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: var(--steel); display: inline-flex; align-items: center; gap: 6px; margin-bottom: 20px; }
.result-tag::before { content: ''; width: 16px; height: 1px; background: var(--gold); }
.result-stat { font-family: var(--serif); font-size: 52px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.result-label { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
.result-desc { font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--muted); }
.result-brand { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--steel); }

/* ── INDUSTRIES ── */
.industries-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 56px; }
.ind-card { border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; text-align: center; transition: all .25s; cursor: default; }
.ind-card:hover { border-color: var(--navy); background: var(--pale); transform: translateY(-3px); }
.ind-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.ind-name { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); }

/* ── PROCESS ── */
.process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; margin-top: 64px; border: 1px solid rgba(255,255,255,.08); }
.process-step { padding: 40px 28px; border-right: 1px solid rgba(255,255,255,.08); text-align: center; position: relative; }
.process-step:last-child { border-right: none; }
.ps-num { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--gold); margin: 0 auto 20px; }
.ps-title { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.ps-body { font-size: 12px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,.4); }
.ps-arrow { position: absolute; top: 50%; right: -14px; transform: translateY(-50%); font-size: 18px; color: rgba(255,255,255,.15); z-index: 1; }
.process-step:last-child .ps-arrow { display: none; }

/* ── ABOUT ── */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; }
.about-left { padding: 96px 64px 96px 48px; border-right: 1px solid var(--border); }
.about-right { padding: 96px 48px 96px 64px; background: var(--navy); }
.about-img-placeholder { height: 320px; background: var(--pale); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 36px; font-family: var(--serif); font-size: 14px; color: var(--muted); font-style: italic; }
.about-body { font-size: 15px; font-weight: 300; line-height: 1.9; color: var(--muted); margin-top: 20px; }
.about-body strong { color: var(--ink); font-weight: 500; }
.about-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 32px; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; color: var(--navy); transition: gap .2s; }
.about-link:hover { gap: 16px; }
.founders-grid { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.founder-item { padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.07); display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start; }
.founder-item:last-child { border-bottom: none; }
.founder-mono { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 14px; font-weight: 700; color: var(--white); }
.founder-name { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.founder-role { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 10px; }
.founder-bio { font-size: 13px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,.45); }
.founder-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.founder-tag { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.testi-card { border: 1px solid var(--border); border-radius: 12px; padding: 32px; transition: box-shadow .25s; }
.testi-card:hover { box-shadow: 0 8px 40px rgba(30,58,80,.08); }
.testi-stars { color: var(--gold); letter-spacing: 3px; font-size: 14px; margin-bottom: 18px; }
.testi-text { font-family: var(--serif); font-size: 15px; font-weight: 400; font-style: italic; line-height: 1.7; color: var(--ink); margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--pale); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--navy); flex-shrink: 0; font-family: var(--serif); }
.testi-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.testi-brand { font-size: 11px; color: var(--muted); }

/* ── CTA STRIP ── */
.cta-strip { background: var(--navy); padding: 80px 48px; text-align: center; border-bottom: 1px solid rgba(255,255,255,.08); position: relative; overflow: hidden; }
.cta-strip-bg { position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%); font-family: var(--serif); font-size: 220px; font-weight: 700; color: rgba(255,255,255,.02); white-space: nowrap; pointer-events: none; user-select: none; }
.cta-strip h2 { font-family: var(--serif); font-size: clamp(28px,4vw,54px); font-weight: 700; color: var(--white); margin-bottom: 16px; position: relative; }
.cta-strip h2 em { font-style: italic; color: var(--gold); }
.cta-strip p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.5); margin-bottom: 40px; position: relative; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-email-text { font-family: var(--serif); font-size: 16px; font-style: italic; color: rgba(255,255,255,.35); margin-top: 24px; position: relative; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; margin-top: 64px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 24px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--ink); transition: color .2s; }
.faq-q:hover { color: var(--navy); }
.faq-chevron { font-size: 18px; color: var(--muted); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-chevron { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a-inner { font-size: 14px; font-weight: 300; line-height: 1.85; color: var(--muted); padding: 0 0 24px; }
.faq-item.open .faq-a { max-height: 200px; }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 72px 48px 40px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-logo-top { font-family: var(--serif); font-size: 11px; font-weight: 400; letter-spacing: .45em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.footer-logo-bot { font-family: var(--serif); font-size: 26px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-top: 3px; }
.footer-desc { font-size: 13px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,.3); margin-top: 18px; max-width: 260px; }
.footer-badges { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.footer-badge { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; padding: 5px 12px; border-radius: 100px; border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.3); }
.footer-col-head { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); font-weight: 600; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 11px; font-weight: 300; color: rgba(255,255,255,.2); }
.footer-bottom-right { display: flex; gap: 24px; }
.footer-bottom a { color: rgba(255,255,255,.2); transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1{transition-delay:.08s} .d2{transition-delay:.16s} .d3{transition-delay:.24s}
.d4{transition-delay:.32s} .d5{transition-delay:.4s}  .d6{transition-delay:.48s}

/* Hero entry animations */
@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
.hero-badge  { animation: fadeUp .6s ease .1s  both; }
.hero-title  { animation: fadeUp .7s ease .22s both; }
.hero-sub    { animation: fadeUp .7s ease .36s both; }
.hero-ctas   { animation: fadeUp .7s ease .48s both; }
.hero-trust  { animation: fadeUp .7s ease .6s  both; }
.hero-stats  { animation: fadeUp .8s ease .5s  both; }

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .svc-card:nth-child(4n){border-right:1px solid var(--border)}
  .svc-card:nth-child(2n){border-right:none}
  .svc-card:nth-last-child(-n+4){border-bottom:1px solid var(--border)}
  .svc-card:nth-last-child(-n+2){border-bottom:none}
  .results-grid{grid-template-columns:repeat(2,1fr)}
  .process-steps{grid-template-columns:repeat(2,1fr)}
  .process-step:nth-child(2){border-right:none}
  .testi-grid{grid-template-columns:1fr 1fr}
  .industries-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  #nav{padding:0 20px}
  .nav-links,.nav-badge{display:none}
  .hero{padding:100px 20px 60px}
  .hero-stats{grid-template-columns:repeat(2,1fr)}
  .hs-item:nth-child(3){grid-column:span 2;border-right:none}
  .sec{padding:64px 20px}
  .sec-header{grid-template-columns:1fr}
  .sec-note{margin-left:0;max-width:100%}
  .services-grid{grid-template-columns:1fr}
  .svc-card:nth-child(n){border-right:none;border-bottom:1px solid var(--border)}
  .svc-card:last-child{border-bottom:none}
  .logo-grid{grid-template-columns:repeat(3,1fr)}
  .logo-cell:nth-child(6n){border-right:1px solid var(--border)}
  .logo-cell:nth-child(3n){border-right:none}
  .why-grid,.about-wrap,.footer-grid{grid-template-columns:1fr}
  .why-right,.about-right{padding:64px 20px}
  .about-left{padding:64px 20px;border-right:none;border-bottom:1px solid var(--border)}
  .why-left{padding:64px 20px;border-right:none;border-bottom:1px solid rgba(255,255,255,.1)}
  .results-grid,.testi-grid,.industries-grid{grid-template-columns:1fr}
  .process-steps{grid-template-columns:1fr}
  .process-step{border-right:none;border-bottom:1px solid rgba(255,255,255,.08)}
  .clients-sec{padding:40px 20px}
  .footer-grid{grid-template-columns:1fr 1fr}
  footer{padding:48px 20px 28px}
  .cta-strip{padding:64px 20px}
  .hero-stats{margin-top:48px}
  .partner-logos{display:none}
}
