*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#F7F6F1;
  --ink:#0C0B09;
  --blue:#0047FF;
  --mint:#00E87A;
  --grey:#E8E5DC;
  --grey2:#B8B5AA;
  --card:#EEECEA;
  --dark:#0C0B09;
  --f-display:'Syne',sans-serif;
  --f-body:'Instrument Sans',sans-serif;
  --f-mono:'JetBrains Mono',monospace;
  --max:1280px;
  --pad:3rem;
}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased}
body{background:var(--bg);color:var(--ink);font-family:var(--f-body);font-size:16px;line-height:1.6;overflow-x:hidden}

/* ── NAV ── */
.nav{position:fixed;top:0;left:0;right:0;z-index:200;display:flex;align-items:center;justify-content:space-between;padding:1.4rem var(--pad);background:rgba(247,246,241,.9);backdrop-filter:blur(16px);border-bottom:1px solid transparent;transition:border-color .3s,background .3s}
.nav.scrolled{border-color:var(--grey);background:rgba(247,246,241,.97)}
.nav-logo{font-family:var(--f-display);font-weight:800;font-size:1.15rem;letter-spacing:-.03em;color:var(--ink);text-decoration:none;display:flex;align-items:center;gap:.15rem}
.nav-logo-dot{color:var(--blue)}
.nav-links{display:flex;align-items:center;gap:.25rem;list-style:none}
.nav-links a{font-family:var(--f-mono);font-size:.68rem;letter-spacing:.08em;text-transform:uppercase;color:var(--grey2);text-decoration:none;padding:.45rem .75rem;border-radius:.3rem;transition:color .2s,background .2s}
.nav-links a:hover,.nav-links a.active{color:var(--ink);background:var(--grey)}
.nav-right{display:flex;align-items:center;gap:1rem}
.nav-cta{font-family:var(--f-mono);font-size:.68rem;letter-spacing:.1em;text-transform:uppercase;background:var(--ink);color:var(--bg);padding:.6rem 1.3rem;border-radius:.35rem;text-decoration:none;transition:background .2s,transform .15s}
.nav-cta:hover{background:var(--blue);transform:translateY(-1px)}
.hamburger{display:none;flex-direction:column;gap:4px;cursor:pointer;padding:.5rem;background:none;border:none}
.hamburger span{display:block;width:20px;height:1.5px;background:var(--ink);transition:all .3s}
.mobile-menu{display:none;position:fixed;inset:0;background:var(--bg);z-index:190;flex-direction:column;align-items:center;justify-content:center;gap:2rem}
.mobile-menu.open{display:flex}
.mobile-menu a{font-family:var(--f-display);font-size:2rem;font-weight:700;color:var(--ink);text-decoration:none;letter-spacing:-.03em}
.mobile-menu a:hover{color:var(--blue)}
.mobile-cta{font-family:var(--f-mono);font-size:.75rem;letter-spacing:.1em;text-transform:uppercase;background:var(--ink);color:var(--bg)!important;padding:.8rem 2rem;border-radius:.4rem;font-size:.75rem!important}

/* ── HERO ── */
.hero{position:relative;min-height:100vh;display:flex;align-items:center;overflow:hidden;padding-top:5rem}
.hero-canvas{position:absolute;inset:0;width:100%;height:100%;opacity:.5;pointer-events:none}
.hero-inner{position:relative;z-index:2;max-width:var(--max);margin:0 auto;padding:5rem var(--pad) 4rem;width:100%}
.hero-eyebrow{font-family:var(--f-mono);font-size:.7rem;letter-spacing:.2em;text-transform:uppercase;color:var(--blue);display:inline-flex;align-items:center;gap:.6rem;margin-bottom:2rem;opacity:0;transform:translateY(12px);animation:up .6s .1s forwards}
.hero-eyebrow::before{content:'';width:20px;height:1px;background:var(--blue)}
.hero-h1{font-family:var(--f-display);font-size:clamp(3.2rem,7.5vw,7rem);font-weight:800;line-height:1;letter-spacing:-.05em;max-width:900px;opacity:0;transform:translateY(20px);animation:up .8s .25s forwards}
.hero-h1 em{font-style:normal;color:transparent;-webkit-text-stroke:1.5px var(--ink)}
.hero-h1 .hi{color:var(--blue)}
.hero-sub{margin-top:2rem;font-size:1.1rem;color:#5a5750;max-width:500px;line-height:1.7;opacity:0;transform:translateY(16px);animation:up .7s .45s forwards}
.hero-btns{display:flex;align-items:center;gap:1.5rem;margin-top:2.5rem;flex-wrap:wrap;opacity:0;transform:translateY(12px);animation:up .6s .6s forwards}
.btn{font-family:var(--f-mono);font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;text-decoration:none;display:inline-flex;align-items:center;gap:.5rem;padding:.85rem 1.8rem;border-radius:.4rem;transition:all .2s}
.btn-dark{background:var(--ink);color:var(--bg)}
.btn-dark:hover{background:var(--blue);transform:translateY(-2px)}
.btn-ghost{color:var(--ink);border:1px solid var(--grey);background:transparent}
.btn-ghost:hover{border-color:var(--ink);transform:translateY(-2px)}
.btn-blue{background:var(--blue);color:#fff}
.btn-blue:hover{background:#003acc;transform:translateY(-2px)}
.hero-badge{position:absolute;bottom:2rem;right:var(--pad);font-family:var(--f-mono);font-size:.6rem;letter-spacing:.15em;text-transform:uppercase;color:var(--grey2);display:flex;align-items:center;gap:.5rem;opacity:0;animation:up .5s 1s forwards}
.hero-badge::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--mint);animation:pulse 2s infinite}

/* ── SECTIONS ── */
.section{padding:6rem var(--pad);max-width:var(--max);margin:0 auto}
.section-full{padding:6rem var(--pad);background:var(--ink);position:relative;overflow:hidden}
.section-full-inner{max-width:var(--max);margin:0 auto}
.section-full-cream{padding:6rem var(--pad);background:var(--card)}
.section-full-cream-inner{max-width:var(--max);margin:0 auto}
.s-label{font-family:var(--f-mono);font-size:.65rem;letter-spacing:.2em;text-transform:uppercase;color:var(--grey2);margin-bottom:.75rem}
.s-label-light{color:rgba(255,255,255,.4)}
.s-label-blue{color:var(--blue)}
.s-title{font-family:var(--f-display);font-size:clamp(2rem,4vw,3.5rem);font-weight:700;letter-spacing:-.03em;line-height:1.08}
.s-title-light{color:var(--bg)}
.s-title-xl{font-size:clamp(2.5rem,5vw,5rem);font-weight:800;letter-spacing:-.04em}
.s-sub{color:#666;font-size:1rem;line-height:1.75;max-width:540px;margin-top:1rem}
.s-sub-light{color:rgba(255,255,255,.55)}
.divider{height:1px;background:var(--grey);margin:4rem 0}
.divider-light{height:1px;background:rgba(255,255,255,.1);margin:4rem 0}

/* ── SERVICES GRID ── */
.services-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;margin-top:3rem}
.service-card{background:var(--card);border-radius:.75rem;padding:2.5rem;transition:all .3s;text-decoration:none;display:block;position:relative;overflow:hidden}
.service-card::after{content:'→';position:absolute;bottom:2.5rem;right:2.5rem;font-family:var(--f-mono);font-size:.8rem;color:var(--grey2);transition:all .3s}
.service-card:hover{background:var(--ink);transform:translateY(-4px)}
.service-card:hover::after{color:var(--mint);transform:translateX(4px)}
.service-card:hover .sc-num,.service-card:hover .sc-title,.service-card:hover .sc-desc{color:var(--bg)}
.service-card:hover .sc-tag{background:rgba(255,255,255,.08);color:rgba(255,255,255,.5)}
.service-card:hover .sc-icon{background:rgba(255,255,255,.07)}
.service-card.featured{background:var(--ink)}
.service-card.featured::after{color:var(--mint)}
.service-card.featured .sc-num,.service-card.featured .sc-title,.service-card.featured .sc-desc{color:var(--bg)}
.service-card.featured .sc-tag{background:rgba(255,255,255,.08);color:rgba(255,255,255,.5)}
.service-card.featured .sc-icon{background:rgba(255,255,255,.07)}
.service-card.featured:hover{background:var(--blue)}
.sc-num{font-family:var(--f-mono);font-size:.62rem;letter-spacing:.15em;color:var(--grey2);margin-bottom:2rem;transition:color .3s}
.sc-icon{width:48px;height:48px;border-radius:.45rem;background:rgba(0,0,0,.06);display:flex;align-items:center;justify-content:center;margin-bottom:1.25rem;transition:background .3s}
.sc-icon svg{width:22px;height:22px}
.sc-title{font-family:var(--f-display);font-size:1.4rem;font-weight:700;letter-spacing:-.02em;margin-bottom:.6rem;transition:color .3s}
.sc-desc{font-size:.88rem;color:#666;line-height:1.7;transition:color .3s;max-width:280px}
.service-card:hover .sc-desc{color:rgba(255,255,255,.6)}
.service-card.featured .sc-desc{color:rgba(255,255,255,.6)}
.sc-tags{display:flex;flex-wrap:wrap;gap:.4rem;margin-top:1.5rem}
.sc-tag{font-family:var(--f-mono);font-size:.58rem;letter-spacing:.1em;text-transform:uppercase;background:rgba(0,0,0,.07);color:var(--grey2);padding:.3rem .7rem;border-radius:.2rem;transition:all .3s}

/* ── STATS ROW ── */
.stats-row{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;margin-top:3rem;padding-top:3rem;border-top:1px solid var(--grey)}
.stat-item{}
.stat-num{font-family:var(--f-display);font-size:clamp(2rem,4vw,3.5rem);font-weight:800;letter-spacing:-.04em;color:var(--ink)}
.stat-num span{color:var(--blue)}
.stat-label{font-family:var(--f-mono);font-size:.62rem;letter-spacing:.12em;text-transform:uppercase;color:var(--grey2);margin-top:.3rem}

/* ── FAQ ── */
.faq-list{margin-top:3rem}
.faq-item{border-bottom:1px solid var(--grey);overflow:hidden}
.faq-q{display:flex;align-items:center;justify-content:space-between;padding:1.5rem 0;cursor:pointer;gap:1rem}
.faq-q-text{font-family:var(--f-display);font-size:1.1rem;font-weight:600;letter-spacing:-.02em}
.faq-icon{width:28px;height:28px;border-radius:50%;border:1px solid var(--grey);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all .3s;font-family:var(--f-mono);font-size:.9rem;color:var(--grey2)}
.faq-item.open .faq-icon{background:var(--ink);border-color:var(--ink);color:var(--bg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .4s ease;font-size:.95rem;color:#555;line-height:1.8}
.faq-a-inner{padding-bottom:1.5rem}
.faq-item.open .faq-a{max-height:300px}

/* ── BLOG CARDS ── */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:3rem}
.blog-card{background:var(--card);border-radius:.75rem;padding:2rem;text-decoration:none;display:block;transition:all .3s}
.blog-card:hover{transform:translateY(-4px);background:var(--ink)}
.blog-card:hover .bc-title,.blog-card:hover .bc-date{color:var(--bg)}
.blog-card:hover .bc-excerpt{color:rgba(255,255,255,.55)}
.blog-card:hover .bc-tag{background:rgba(255,255,255,.08);color:rgba(255,255,255,.5)}
.bc-tag{font-family:var(--f-mono);font-size:.58rem;letter-spacing:.12em;text-transform:uppercase;background:rgba(0,0,0,.07);color:var(--grey2);padding:.3rem .7rem;border-radius:.2rem;display:inline-block;margin-bottom:1.25rem;transition:all .3s}
.bc-title{font-family:var(--f-display);font-size:1.15rem;font-weight:700;letter-spacing:-.02em;line-height:1.2;margin-bottom:.75rem;transition:color .3s}
.bc-excerpt{font-size:.85rem;color:#666;line-height:1.7;transition:color .3s}
.bc-date{font-family:var(--f-mono);font-size:.62rem;letter-spacing:.1em;color:var(--grey2);margin-top:1.25rem;display:block;transition:color .3s}

/* ── SERVICE PAGE HERO ── */
.page-hero{padding:10rem var(--pad) 5rem;max-width:var(--max);margin:0 auto}
.page-hero-back{font-family:var(--f-mono);font-size:.65rem;letter-spacing:.1em;text-transform:uppercase;color:var(--grey2);text-decoration:none;display:inline-flex;align-items:center;gap:.5rem;margin-bottom:3rem;transition:color .2s}
.page-hero-back:hover{color:var(--blue)}
.page-hero-label{font-family:var(--f-mono);font-size:.68rem;letter-spacing:.18em;text-transform:uppercase;color:var(--blue);margin-bottom:1.25rem}
.page-hero-title{font-family:var(--f-display);font-size:clamp(2.5rem,5vw,5rem);font-weight:800;letter-spacing:-.04em;line-height:1.05;max-width:700px}
.page-hero-sub{font-size:1.1rem;color:#5a5750;max-width:550px;line-height:1.75;margin-top:1.5rem}

/* ── FEATURES LIST ── */
.features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:3rem}
.feature-item{padding:2rem;border:1px solid var(--grey);border-radius:.6rem;transition:all .3s}
.feature-item:hover{border-color:var(--blue);transform:translateY(-2px)}
.feature-icon{width:40px;height:40px;border-radius:.4rem;background:var(--card);display:flex;align-items:center;justify-content:center;margin-bottom:1rem}
.feature-icon svg{width:18px;height:18px;color:var(--blue)}
.feature-title{font-family:var(--f-display);font-size:1rem;font-weight:700;letter-spacing:-.01em;margin-bottom:.5rem}
.feature-desc{font-size:.85rem;color:#666;line-height:1.7}

/* ── PROCESS ── */
.process-list{margin-top:3rem;counter-reset:proc}
.process-item{display:grid;grid-template-columns:3rem 1fr;gap:2rem;padding:2rem 0;border-bottom:1px solid var(--grey);counter-increment:proc}
.process-item:last-child{border:none}
.process-num{font-family:var(--f-mono);font-size:.7rem;letter-spacing:.1em;color:var(--blue);padding-top:.2rem}
.process-num::before{content:counter(proc,decimal-leading-zero)}
.process-content{}
.process-title{font-family:var(--f-display);font-size:1.15rem;font-weight:700;letter-spacing:-.02em;margin-bottom:.5rem}
.process-desc{font-size:.9rem;color:#666;line-height:1.75}

/* ── CTA BAND ── */
.cta-band{background:var(--ink);border-radius:1rem;padding:4rem;display:flex;align-items:center;justify-content:space-between;gap:3rem;margin-top:4rem}
.cta-band-title{font-family:var(--f-display);font-size:clamp(1.5rem,3vw,2.5rem);font-weight:700;color:var(--bg);letter-spacing:-.03em;line-height:1.15}
.cta-band-title span{color:var(--mint)}

/* ── ABOUT ── */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:start;margin-top:3rem}
.about-visual{background:var(--card);border-radius:1rem;padding:3rem;position:sticky;top:7rem}
.about-tag-list{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:1.5rem}
.about-tag{font-family:var(--f-mono);font-size:.6rem;letter-spacing:.1em;text-transform:uppercase;background:var(--grey);color:var(--grey2);padding:.35rem .75rem;border-radius:.25rem}
.about-text{font-size:1rem;color:#444;line-height:1.85}
.about-text p{margin-bottom:1.5rem}
.about-text p:last-child{margin:0}
.about-hl{font-weight:600;color:var(--ink)}

/* ── CONTACT SECTION ── */
.contact-section{display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:center}
.email-link{font-family:var(--f-mono);font-size:1.2rem;color:var(--ink);border-bottom:2px solid var(--blue);padding-bottom:.25rem;text-decoration:none;display:inline-block;transition:color .2s}
.email-link:hover{color:var(--blue)}
.contact-meta{font-family:var(--f-mono);font-size:.62rem;letter-spacing:.12em;text-transform:uppercase;color:var(--grey2);line-height:2.2;margin-top:1.5rem}
.contact-card{background:var(--card);border-radius:1rem;padding:2.5rem}
.contact-row{display:flex;justify-content:space-between;align-items:center;padding:.9rem 0;border-bottom:1px solid var(--grey);font-size:.88rem}
.contact-row:last-child{border:none}
.cr-label{font-family:var(--f-mono);font-size:.62rem;letter-spacing:.1em;text-transform:uppercase;color:var(--grey2)}
.cr-val{font-weight:500;color:var(--ink)}
.cr-dot{display:inline-block;width:7px;height:7px;border-radius:50%;background:var(--mint);margin-right:.4rem;animation:pulse 2s infinite}

/* ── FOOTER ── */
.footer{border-top:1px solid var(--grey);padding:2.5rem var(--pad);display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:2rem}
.footer-left{font-family:var(--f-mono);font-size:.62rem;letter-spacing:.1em;color:var(--grey2);text-transform:uppercase}
.footer-logo{font-family:var(--f-display);font-weight:800;font-size:.95rem;letter-spacing:-.02em;text-align:center;text-decoration:none;color:var(--ink)}
.footer-logo span{color:var(--blue)}
.footer-right{font-family:var(--f-mono);font-size:.62rem;letter-spacing:.1em;color:var(--grey2);text-transform:uppercase;text-align:right}
.footer-right a{color:var(--grey2);text-decoration:none;transition:color .2s}
.footer-right a:hover{color:var(--blue)}

/* ── BREADCRUMB ── */
.breadcrumb{font-family:var(--f-mono);font-size:.62rem;letter-spacing:.1em;text-transform:uppercase;color:var(--grey2);display:flex;align-items:center;gap:.5rem;padding:1.5rem var(--pad);max-width:var(--max);margin:0 auto}
.breadcrumb a{color:var(--grey2);text-decoration:none;transition:color .2s}
.breadcrumb a:hover{color:var(--blue)}
.breadcrumb span{color:var(--ink)}

/* ── ANIMATIONS ── */
@keyframes up{to{opacity:1;transform:translateY(0)}}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.4;transform:scale(.6)}}
.reveal{opacity:0;transform:translateY(20px);transition:opacity .65s,transform .65s}
.reveal.visible{opacity:1;transform:translateY(0)}

/* ── BLOG POST ── */
.prose{max-width:720px;margin:0 auto;font-size:1.05rem;line-height:1.85;color:#333}
.prose h2{font-family:var(--f-display);font-size:1.6rem;font-weight:700;letter-spacing:-.03em;margin:3rem 0 1rem;color:var(--ink)}
.prose h3{font-family:var(--f-display);font-size:1.2rem;font-weight:700;margin:2rem 0 .75rem;color:var(--ink)}
.prose p{margin-bottom:1.5rem}
.prose ul,.prose ol{padding-left:1.5rem;margin-bottom:1.5rem}
.prose li{margin-bottom:.5rem}
.prose strong{color:var(--ink);font-weight:600}
.prose a{color:var(--blue);text-decoration:underline}
.prose code{font-family:var(--f-mono);font-size:.85em;background:var(--card);padding:.15rem .4rem;border-radius:.2rem}
.prose blockquote{border-left:3px solid var(--blue);padding-left:1.5rem;color:#666;font-style:italic;margin:2rem 0}

/* ── RESPONSIVE ── */
@media(max-width:1024px){:root{--pad:2rem}.stats-row{grid-template-columns:repeat(2,1fr)}.features-grid{grid-template-columns:repeat(2,1fr)}.blog-grid{grid-template-columns:repeat(2,1fr)}.about-grid{grid-template-columns:1fr;gap:3rem}.about-visual{position:static}.contact-section{grid-template-columns:1fr;gap:3rem}.footer{grid-template-columns:1fr;gap:.75rem;text-align:center}.footer-right{text-align:center}.cta-band{flex-direction:column;text-align:center}}
@media(max-width:768px){:root{--pad:1.5rem}.nav-links{display:none}.hamburger{display:flex}.services-grid{grid-template-columns:1fr}.features-grid{grid-template-columns:1fr}.blog-grid{grid-template-columns:1fr}.stats-row{grid-template-columns:repeat(2,1fr)}}
