/* ===================================================================
   SDTechnologist â€” Homepage CSS  (Clerk-style light theme)
   Accent: Purple #6C47FF | Base: #FFFFFF | Dark sections: #131316
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
  --c-bg:        #ffffff;
  --c-bg-gray:   #f7f7f8;
  --c-bg-gray2:  #fbfbfc;
  --c-dark:      #131316;
  --c-dark2:     #1b1b1f;
  --c-dark3:     #232328;
  --c-text:      #1c1c1e;
  --c-text-2:    #5e5f6e;
  --c-muted:     #8b8d98;
  --c-border:    #ececef;
  --c-border-2:  #e3e3e7;
  --c-purple:    #6c47ff;
  --c-purple-h:  #5b39e6;
  --c-purple-s: rgba(108,71,255,.18);
  --c-on-dark:   #ffffff;
  --c-on-dark-2: #b5b6c0;
  --c-on-dark-m: #76777f;
  --c-dark-border: rgba(255,255,255,.09);
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --ease:        cubic-bezier(0.16,1,0.3,1);
  --pad:         clamp(1rem,5vw,2rem);
  --max:         1180px;
  --notch:       14px;
}

.hp {
  font-family:var(--font);
  background:var(--c-bg);
  color:var(--c-text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  margin:0 !important;
}

/* â”€â”€ Layout â”€â”€ */
.hp-container { max-width:var(--max); margin-inline:auto; padding-inline:var(--pad); }
.hp-container--wide { max-width:1280px; }
.hp-section { padding-block:clamp(4rem,7vw,6.5rem); }

/* Notched (chamfered) corners â€” Clerk style.
   Horizontal inset 34px, vertical inset 26px â†’ clear, slightly-wide angled corners. */

.hp-eyebrow {
  font-size:.8125rem; font-weight:600; letter-spacing:.02em;
  color:var(--c-purple); margin-bottom:.85rem; text-align:center;
}
.hp-eyebrow--dark { color:#a78bff; }
.hp-eyebrow--left { text-align:left; }

.hp-h2 {
  font-size:clamp(1.85rem,3.6vw,2.6rem); font-weight:700;
  letter-spacing:-.03em; line-height:1.12; color:var(--c-text);
}
.hp-h2--dark { color:#fff; }
.hp-sub {
  font-size:1.0625rem; color:var(--c-text-2); line-height:1.6;
  max-width:560px;
}
.hp-sub--dark { color:var(--c-on-dark-2); }

.hp-sec-head {text-align:center;max-width: 670px;margin:0 auto 3rem;}
.hp-sec-head .hp-sub { margin:.85rem auto 0; }

/* â”€â”€ Reveal â”€â”€ */
.hp-reveal { opacity:0; transform:translateY(22px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.hp-reveal.hp-visible { opacity:1; transform:none; }

/* â”€â”€ Buttons â”€â”€ */
.hp-btn {
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  padding:.7rem 1.25rem; font:600 .9375rem var(--font); border-radius:.55rem;
  cursor:pointer; border:1px solid transparent; text-decoration:none;
  transition:background .2s, border-color .2s, color .2s, box-shadow .2s, transform .2s;
  white-space:nowrap;
}
.hp-btn-primary {
  background:var(--c-purple); color:#fff;
  box-shadow:0 1px 2px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.18);
}
.hp-btn-primary:hover { background:var(--c-purple-h); color:#fff; transform:translateY(-1px); }
.hp-btn-light {
  background:#fff; color:var(--c-text); border-color:var(--c-border-2);
  box-shadow:0 1px 2px rgba(0,0,0,.05);
}
.hp-btn-light:hover { border-color:#cfcfd6; color:var(--c-text); }
.hp-btn-dark {
  background:#1c1c1f; color:#fff; border-color:#1c1c1f;
}
.hp-btn-dark:hover { background:#000; color:#fff; }
.hp-btn-ghost-dark {
  background:rgba(255,255,255,.06); color:#fff; border-color:rgba(255,255,255,.14);
}
.hp-btn-ghost-dark:hover { background:rgba(255,255,255,.12); color:#fff; }
.hp-btn-sm { padding:.5rem 1rem; font-size:.875rem; }

/* â•â•â•â•â•â•â•â• ANNOUNCEMENT BAR â•â•â•â•â•â•â•â• */
.hp-announce {
  background:var(--c-dark); color:#d6d6db; text-align:center;
  font-size:.8125rem; font-weight:500; padding:.55rem 1rem;
}
.hp-announce a { display:inline-flex; align-items:center; gap:.3rem; color:#fff; text-decoration:none; font-weight:600; opacity:.9; }
.hp-announce a:hover { opacity:1; }
.hp-announce a svg { width:7px; height:7px; fill:currentColor; }
.hp-announce strong { color:#fff; font-weight:600; }
.hp-announce-sep { display:inline-block; width:1px; height:13px; background:rgba(255,255,255,.28); margin:0 .9rem; vertical-align:middle; }
.hp-btn-arrow { width:7px; height:7px; fill:currentColor; opacity:.55; margin-left:.1rem; }

/* â•â•â•â•â•â•â•â• NAV â•â•â•â•â•â•â•â• */
.hp-nav {
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,.85); backdrop-filter:blur(14px);
  border-bottom:1px solid transparent; transition:border-color .3s, box-shadow .3s;
}
.hp-nav.hp-nav-scrolled { border-color:var(--c-border); box-shadow:0 1px 3px rgba(0,0,0,.04); }
.hp-nav-inner { display:flex; align-items:center; height:60px; gap:1.5rem; }
.hp-logo { display:flex; align-items:center; gap:.5rem; font-weight:700; font-size:1.0625rem; color:var(--c-text); text-decoration:none; letter-spacing:-.02em; flex-shrink:0; }
.hp-logo-img { height:36px; width:auto; display:block; object-fit:contain; }
.hp-logo-mark { width:24px; height:24px; border-radius:6px; background:var(--c-purple); display:flex; align-items:center; justify-content:center; color:#fff; font-size:.7rem; font-weight:800; }
.hp-nav-links { display:flex; align-items:center; gap:.1rem; list-style:none; margin-left:1rem; margin-right:auto; }
.hp-nav-item { position:relative; }
.hp-nav-link {
  display:inline-flex; align-items:center; gap:.3rem; padding:.45rem .75rem;
  font:500 .875rem var(--font); color:var(--c-text-2); text-decoration:none;
  background:none; border:none; cursor:pointer; border-radius:.4rem;
  transition:color .2s, background .2s;
}
.hp-nav-link:hover { color:var(--c-text); background:var(--c-bg-gray); }
.hp-caret { width:13px; height:13px; opacity:.55; transition:transform .25s var(--ease); }
.hp-nav-item:hover .hp-caret,
.hp-nav-link[aria-expanded="true"] .hp-caret { transform:rotate(180deg); }

/* Dropdown mega-menu */
.hp-dropdown {
  position:absolute; top:100%; left:0; min-width:350px;
  background:#fff; border:1px solid var(--c-border); border-radius:16px;
  box-shadow:0 28px 64px -22px rgba(20,20,30,.24), 0 6px 16px -8px rgba(20,20,30,.10);
  padding:.6rem; margin-top:.55rem;
  opacity:0; visibility:hidden; transform:translateY(-8px) scale(.985); transform-origin:top left;
  transition:opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index:120;
}
.hp-dropdown::before { content:''; position:absolute; top:-12px; left:0; right:0; height:12px; }
.hp-nav-item:hover > .hp-dropdown,
.hp-nav-item:focus-within > .hp-dropdown,
.hp-dropdown.open { opacity:1; visibility:visible; transform:none; }
.hp-dd-label { font-size:.7rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--c-muted); padding:.55rem .75rem .45rem; }
.hp-dd-item { display:flex; gap:.85rem; align-items:flex-start; padding:.65rem .75rem; border-radius:11px; text-decoration:none; transition:background .18s; }
.hp-dd-item:hover { background:var(--c-bg-gray); }
.hp-dd-icon { width:38px; height:38px; border-radius:10px; background:var(--c-bg-gray); border:1px solid var(--c-border); display:flex; align-items:center; justify-content:center; font-size:1.05rem; flex-shrink:0; transition:background .18s, border-color .18s; }
.hp-dd-item:hover .hp-dd-icon { background:#fff; border-color:var(--c-border-2); }
.hp-dd-title { display:block; font-size:.9rem; font-weight:600; color:var(--c-text); margin-bottom:.12rem; }
.hp-dd-desc { display:block; font-size:.8rem; color:var(--c-text-2); line-height:1.4; }
.hp-dd-divider { height:1px; background:var(--c-border); margin:.45rem .4rem; }
.hp-nav-right { display:flex; align-items:center; gap:.6rem; flex-shrink:0; }
.hp-nav-signin { font-size:.875rem; font-weight:500; color:var(--c-text-2); text-decoration:none; padding:.45rem .5rem; }
.hp-nav-signin:hover { color:var(--c-text); }
.hp-nav-toggle { display:none; flex-direction:column; gap:5px; background:none; border:1px solid var(--c-border-2); border-radius:.45rem; padding:.5rem .55rem; cursor:pointer; }
.hp-nav-toggle span { width:18px; height:2px; background:var(--c-text); border-radius:2px; transition:transform .3s, opacity .3s; }
.hp-nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hp-nav-toggle.open span:nth-child(2){ opacity:0; }
.hp-nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
.hp-mobile-menu {margin-top: 30px;display:none;position:fixed;inset:60px 0 0;background:#fff;z-index:99;flex-direction:column;padding:1.5rem var(--pad);gap:.25rem;overflow-y:auto;}
.hp-mobile-menu.open { display:flex; }
.hp-mobile-menu a { padding:.85rem .5rem; font-size:1.05rem; font-weight:500; color:var(--c-text); text-decoration:none; border-top:1px solid var(--c-border); }
.hp-mobile-menu .hp-btn { margin-top:1rem; border-bottom:none; }
.hp-mobile-menu .hp-btn-primary { color:#fff; }
@media(max-width:900px){
  .hp-nav-links, .hp-nav-signin { display:none; }
  .hp-nav-right { display:none; }
  .hp-announce { display:none; }
  .hp-nav-toggle { display:flex; margin-left:auto; }
}

/* â•â•â•â•â•â•â•â• HERO â•â•â•â•â•â•â•â• */
.hp-hero { text-align:center; padding-block:clamp(4rem,8vw,7rem) clamp(3rem,5vw,4rem); position:relative; }
.hp-hero-badge {
  display:inline-flex; align-items:center; gap:.5rem; padding:.35rem .85rem .35rem .4rem;
  background:#fff; border:1px solid var(--c-border-2); border-radius:999px;
  font-size:.8125rem; font-weight:500; color:var(--c-text-2); margin-bottom:1.75rem;
  box-shadow:0 1px 2px rgba(0,0,0,.04);
}
.hp-hero-badge b { background:var(--c-purple); color:#fff; font-size:.7rem; font-weight:700; padding:.15rem .5rem; border-radius:999px; }
.hp-hero-title {
  font-size:clamp(2.4rem,6vw,4rem); font-weight:800; letter-spacing:-.04em;
  line-height:1.05; color:var(--c-text); max-width:880px; margin-inline:auto;
}
.hp-hero-sub {
  font-size:clamp(1.05rem,2vw,1.25rem); color:var(--c-text-2); line-height:1.55;
  max-width:580px; margin:1.5rem auto 2.25rem;
}
.hp-hero-btns { display:flex; gap:.75rem; justify-content:center; flex-wrap:wrap; margin-bottom:1.5rem; }
.hp-hero-trust { font-size:.85rem; color:var(--c-muted); }
.hp-hero-trust .star { color:#f5a623; }

/* â•â•â•â•â•â•â•â• LOGO STRIP â•â•â•â•â•â•â•â• */
.hp-logos { padding-block:2.5rem; border-top:1px solid var(--c-border); }
.hp-logos-label { text-align:center; font-size:.85rem; color:var(--c-muted); margin-bottom:1.5rem; }
.hp-marquee { overflow:hidden; -webkit-mask-image:linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent); mask-image:linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent); }
.hp-marquee-track { display:flex; gap:3.5rem; align-items:center; width:max-content; animation:hp-marq 26s linear infinite; }
@keyframes hp-marq { to { transform:translateX(-50%); } }
.hp-logo-item { display:inline-flex; align-items:center; gap:.55rem; font-size:1rem; font-weight:600; letter-spacing:-.01em; color:#a6a7b2; white-space:nowrap; transition:color .25s; }
.hp-logo-item svg { width:22px; height:22px; flex-shrink:0; }
.hp-logo-item:hover { color:var(--c-text); }

/* â•â•â•â•â•â•â•â• SHOWCASE (text + mockup) â•â•â•â•â•â•â•â• */
.hp-showcase { display:grid; grid-template-columns:1fr 1.05fr; gap:3.5rem; align-items:center; }
@media(max-width:880px){ .hp-showcase{ grid-template-columns:1fr; gap:2.5rem; } }
.hp-code {
  margin-top:1.75rem; background:var(--c-dark); border-radius:.7rem; overflow:hidden;
  font:13px/1.7 'SFMono-Regular',ui-monospace,Menlo,monospace; color:#c8c9d4;
}
.hp-code-bar { display:flex; gap:.4rem; padding:.7rem .9rem; border-bottom:1px solid rgba(255,255,255,.07); }
.hp-code-dot { width:10px; height:10px; border-radius:50%; background:#3a3a40; }
.hp-code pre { padding:1rem 1.1rem; overflow-x:auto; }
.hp-code .k { color:#c792ea; } .hp-code .s { color:#c3e88d; } .hp-code .c { color:#5c6370; } .hp-code .t { color:#82aaff; }

/* sign-up card mockup */
.hp-mock {
  background:#fff; border:1px solid var(--c-border-2); border-radius:1rem;
  box-shadow:0 24px 60px -20px rgba(20,20,30,.25), 0 8px 20px -8px rgba(20,20,30,.12);
  padding:1.75rem; max-width:380px; margin-inline:auto; width:100%;
}
.hp-mock-logo { width:34px; height:34px; border-radius:9px; background:var(--c-purple); margin:0 auto 1rem; display:flex; align-items:center; justify-content:center; color:#fff; font-weight:800; }
.hp-mock h4 { text-align:center; font-size:1.15rem; font-weight:700; letter-spacing:-.02em; margin-bottom:.3rem; }
.hp-mock p.sub { text-align:center; font-size:.85rem; color:var(--c-muted); margin-bottom:1.25rem; }
.hp-mock-social { display:flex; flex-direction:column; gap:.55rem; margin-bottom:1rem; }
.hp-mock-social-btn {
  display:flex; align-items:center; justify-content:center; gap:.5rem; padding:.6rem;
  border:1px solid var(--c-border-2); border-radius:.55rem; background:#fff;
  font:500 .85rem var(--font); color:var(--c-text); text-decoration:none;
  transition:border-color .15s, color .15s; cursor:pointer;
}
.hp-mock-social-btn:hover { border-color:var(--c-purple); color:var(--c-purple); }
.hp-mock-div { display:flex; align-items:center; gap:.75rem; font-size:.72rem; color:var(--c-muted); margin:.5rem 0 1rem; }
.hp-mock-div::before,.hp-mock-div::after { content:''; flex:1; height:1px; background:var(--c-border); }
.hp-mock-field { display:block; font-size:.72rem; color:var(--c-text-2); font-weight:600; margin-bottom:.35rem; }
.hp-mock-input {
  display:block; width:100%; padding:.6rem .7rem;
  border:1px solid var(--c-border-2); border-radius:.5rem;
  font:400 .85rem var(--font); color:var(--c-text); background:#fff;
  margin-bottom:.85rem; outline:none; box-sizing:border-box;
  transition:border-color .15s, box-shadow .15s;
}
.hp-mock-input::placeholder { color:var(--c-muted); }
.hp-mock-input:focus { border-color:var(--c-purple); box-shadow:0 0 0 3px rgba(108,71,255,.12); }
.hp-mock-submit {
  width:100%; padding:.65rem; background:#1c1c1f; color:#fff; border:none;
  border-radius:.55rem; font:600 .85rem var(--font); cursor:pointer;
  transition:background .15s, transform .1s;
}
.hp-mock-submit:hover { background:#2d2d32; }
.hp-mock-submit:active { transform:scale(.98); }
.hp-mock-foot { text-align:center; font-size:.7rem; color:var(--c-muted); margin-top:1rem; }
.hp-mock-success { text-align:center; padding:1rem 0; }
.hp-mock-success-icon { font-size:2.25rem; display:block; margin-bottom:.6rem; }
.hp-mock-success h4 { margin-bottom:.3rem; }
.hp-mock form { margin:0; }

/* â•â•â•â•â•â•â•â• DARK BENTO SECTION â•â•â•â•â•â•â•â• */
.hp-dark { background:var(--c-dark); color:#fff; position:relative; }
.hp-bento { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--c-dark-border); border:1px solid var(--c-dark-border); border-radius:14px; overflow:hidden; margin-top:3rem; }
@media(max-width:880px){ .hp-bento{ grid-template-columns:1fr; } }
.hp-bento-card { background:var(--c-dark); padding:2rem; min-height:230px; display:flex; flex-direction:column; transition:background .3s; position:relative; }
.hp-bento-card:hover { background:var(--c-dark2); }
.hp-bento-card.span2 { grid-column:span 2; }
@media(max-width:880px){ .hp-bento-card.span2{ grid-column:span 1; } }
.hp-bento-icon { width:40px; height:40px; border-radius:9px; background:rgba(255,255,255,.06); border:1px solid var(--c-dark-border); display:flex; align-items:center; justify-content:center; font-size:1.15rem; margin-bottom:1.1rem; }
.hp-bento-card h3 { font-size:1.0625rem; font-weight:600; letter-spacing:-.01em; margin-bottom:.5rem; }
.hp-bento-card p { font-size:.875rem; color:var(--c-on-dark-2); line-height:1.6; }
.hp-bento-card ul { list-style:none; margin-top:.75rem; display:flex; flex-direction:column; gap:.4rem; }
.hp-bento-card ul li { font-size:.825rem; color:var(--c-on-dark-2); display:flex; gap:.5rem; }
.hp-bento-card ul li::before { content:'â€º'; color:#a78bff; }

/* â•â•â•â•â•â•â•â• FEATURE CARDS (light, 3-up) â•â•â•â•â•â•â•â• */
.hp-grid3 { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; margin-top:3rem; }
@media(max-width:880px){ .hp-grid3{ grid-template-columns:1fr; } }
.hp-grid4 { display:grid; grid-template-columns:repeat(4,1fr); gap:1.25rem; margin-top:3rem; }
@media(max-width:1024px){ .hp-grid4{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:600px){ .hp-grid4{ grid-template-columns:1fr; } }
.hp-grid5 { display:grid; grid-template-columns:repeat(5,1fr); gap:1rem; margin-top:3rem; }
@media(max-width:1100px){ .hp-grid5{ grid-template-columns:repeat(3,1fr); } }
@media(max-width:660px){ .hp-grid5{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:420px){ .hp-grid5{ grid-template-columns:1fr; } }
.hp-card {
  background:#fff; border:1px solid var(--c-border); border-radius:14px; padding:1.75rem;
  transition:border-color .25s, box-shadow .25s, transform .25s;
}
.hp-card:hover { border-color:var(--c-border-2); box-shadow:0 12px 32px -12px rgba(20,20,30,.14); transform:translateY(-3px); }
.hp-card-icon { width:42px; height:42px; border-radius:10px; background:#f1edff; display:flex; align-items:center; justify-content:center; font-size:1.2rem; margin-bottom:1rem; }
.hp-card h3 { font-size:1.0625rem; font-weight:700; letter-spacing:-.01em; margin-bottom:.5rem; }
.hp-card p { font-size:.9rem; color:var(--c-text-2); line-height:1.6; }
.hp-card .num { width:34px; height:34px; border-radius:9px; background:#f1edff; color:var(--c-purple); font-weight:700; display:flex; align-items:center; justify-content:center; margin-bottom:1rem; font-size:.95rem; }

/* â•â•â•â•â•â•â•â• BILLING / CRM (light split) â•â•â•â•â•â•â•â• */
.hp-split { display:grid; grid-template-columns:1fr 1.1fr; gap:3.5rem; align-items:center; }
@media(max-width:880px){ .hp-split{ grid-template-columns:1fr; gap:2.5rem; } }
.hp-checklist { list-style:none; display:flex; flex-direction:column; gap:.75rem; margin-top:1.5rem; }
.hp-checklist li { display:flex; gap:.65rem; font-size:.95rem; color:var(--c-text-2); }
.hp-checklist li b { color:var(--c-purple); }
.hp-pricecard {
  background:#fff; border:1px solid var(--c-border-2); border-radius:1rem; padding:1.5rem;
  box-shadow:0 24px 60px -24px rgba(20,20,30,.2);
}
.hp-pricecard h4 { text-align:center; font-size:1.05rem; font-weight:700; margin-bottom:.25rem; }
.hp-pricecard .ptag { text-align:center; font-size:.8rem; color:var(--c-muted); margin-bottom:1.25rem; }
.hp-price-rows { display:flex; flex-direction:column; gap:.65rem; }
.hp-price-row { display:flex; align-items:center; gap:.8rem; padding:.85rem; border:1px solid var(--c-border); border-radius:.6rem; }
.hp-price-row .ic { width:32px; height:32px; border-radius:8px; background:#f1edff; display:flex; align-items:center; justify-content:center; font-size:.85rem; flex-shrink:0; }
.hp-price-row .lab { font-size:.85rem; font-weight:600; color:var(--c-text); }
.hp-price-row .sub { font-size:.72rem; color:var(--c-muted); }
.hp-price-row .badge { margin-left:auto; font-size:.65rem; font-weight:700; color:var(--c-purple); background:#f1edff; padding:.2rem .55rem; border-radius:999px; }

/* â•â•â•â•â•â•â•â• CASE STUDIES â•â•â•â•â•â•â•â• */
.hp-case { background:#fff; border:1px solid var(--c-border); border-radius:14px; overflow:hidden; display:flex; flex-direction:column; transition:box-shadow .25s, transform .25s, border-color .25s; }
.hp-case:hover { box-shadow:0 16px 40px -16px rgba(20,20,30,.16); transform:translateY(-3px); border-color:var(--c-border-2); }
.hp-case-top { aspect-ratio:16/9; display:flex; align-items:center; justify-content:center; font-size:2.6rem; position:relative; }
.hp-case-tag { position:absolute; top:.85rem; left:.85rem; font-size:.68rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase; color:var(--c-purple); background:#fff; padding:.25rem .6rem; border-radius:999px; box-shadow:0 1px 2px rgba(0,0,0,.08); }
.hp-case-body { padding:1.4rem; flex:1; display:flex; flex-direction:column; }
.hp-case-body h3 { font-size:1.05rem; font-weight:700; margin-bottom:.5rem; }
.hp-case-body p { font-size:.85rem; color:var(--c-text-2); line-height:1.55; flex:1; margin-bottom:.9rem; }
.hp-case-deliv { font-size:.78rem; color:var(--c-text-2); padding:.7rem .8rem; background:var(--c-bg-gray); border-radius:.5rem; }
.hp-case-deliv b { color:var(--c-purple); }

/* â•â•â•â•â•â•â•â• DARK SDK/STACK (two col) â•â•â•â•â•â•â•â• */
.hp-twocol { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--c-dark-border); border:1px solid var(--c-dark-border); border-radius:14px; overflow:hidden; margin-top:3rem; }
@media(max-width:760px){ .hp-twocol{ grid-template-columns:1fr; } }
.hp-twocol-col { background:var(--c-dark); padding:2.5rem; }
.hp-twocol-col .lbl { font-size:.8rem; color:#a78bff; font-weight:600; margin-bottom:.75rem; }
.hp-twocol-col h3 { font-size:1.4rem; font-weight:700; letter-spacing:-.02em; margin-bottom:.5rem; color:#fff; }
.hp-twocol-col p { font-size:.9rem; color:var(--c-on-dark-2); line-height:1.6; margin-bottom:1.5rem; }
.hp-iconwall { display:grid; grid-template-columns:repeat(4,1fr); gap:.6rem; }
.hp-iconwall span {
  aspect-ratio:1; display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.04); border:1px solid var(--c-dark-border); border-radius:11px;
  font-size:1.3rem; transition:background .25s, transform .25s;
}
.hp-iconwall span:hover { background:rgba(255,255,255,.09); transform:translateY(-2px); }

/* â•â•â•â•â•â•â•â• TESTIMONIALS + STATS â•â•â•â•â•â•â•â• */
.hp-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:1.25rem; margin-bottom:3.5rem; }
@media(max-width:760px){ .hp-stats{ grid-template-columns:1fr 1fr; } }
.hp-stat { text-align:center; padding:1.5rem 1rem; border:1px solid var(--c-border); border-radius:12px; background:var(--c-bg-gray2); }
.hp-stat .n { font-size:clamp(1.8rem,4vw,2.5rem); font-weight:800; letter-spacing:-.03em; color:var(--c-purple); display:block; line-height:1; margin-bottom:.4rem; }
.hp-stat .l { font-size:.8rem; color:var(--c-text-2); font-weight:500; }
.hp-tgrid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
@media(max-width:880px){ .hp-tgrid{ grid-template-columns:1fr; } }
.hp-tcard { background:#fff; border:1px solid var(--c-border); border-radius:12px; padding:1.5rem; display:flex; flex-direction:column; }
.hp-tcard .stars { color:#f5a623; font-size:.85rem; margin-bottom:.75rem; }
.hp-tcard blockquote { font-size:.9rem; color:var(--c-text); line-height:1.6; flex:1; margin-bottom:1.1rem; }
.hp-tcard .who { display:flex; align-items:center; gap:.7rem; }
.hp-tavatar { width:38px; height:38px; border-radius:50%; background:var(--c-purple); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:.8rem; }
.hp-tname { font-size:.85rem; font-weight:700; }
.hp-trole { font-size:.72rem; color:var(--c-muted); }

/* â•â•â•â•â•â•â•â• CTA â•â•â•â•â•â•â•â• */
.hp-cta { background:var(--c-dark); color:#fff; text-align:center; padding-block:clamp(4rem,7vw,6rem); }
.hp-cta h2 { font-size:clamp(1.9rem,4vw,2.8rem); font-weight:800; letter-spacing:-.03em; margin-bottom:1rem; }
.hp-cta p {color:var(--c-on-dark-2);font-size:1.05rem;max-width:500px;margin: 1rem auto 2rem;}
.hp-cta-btns { display:flex; gap:.75rem; justify-content:center; flex-wrap:wrap; }
.hp-cta-mail { margin-top:1.25rem; font-size:.85rem; color:var(--c-on-dark-m); }
.hp-cta-mail a { color:#a78bff; text-decoration:none; }

/* â•â•â•â•â•â•â•â• FOOTER â•â•â•â•â•â•â•â• */
.hp-footer { background:var(--c-bg-gray); border-top:1px solid var(--c-border); padding-top:3.5rem; }
.hp-footer-grid { display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:2.5rem; padding-bottom:2.5rem; }
@media(max-width:880px){ .hp-footer-grid{ grid-template-columns:1fr 1fr; gap:2rem; } }
@media(max-width:640px){
  .hp-footer-grid{ grid-template-columns:1fr 1fr; gap:1.75rem; }
  .hp-footer-grid > div:first-child { grid-column:1 / -1; }
  .hp-footer-grid > .hp-footer-col:last-child { display:none; }
}
.hp-footer .hp-logo { margin-bottom:.85rem; }
.hp-footer-tag { font-size:.85rem; color:var(--c-text-2); line-height:1.6; margin-bottom:1.25rem; max-width:280px; }
.hp-footer-contact { display:flex; flex-direction:column; gap:.4rem; }
.hp-footer-contact a, .hp-footer-contact span { font-size:.82rem; color:var(--c-text-2); text-decoration:none; }
.hp-footer-contact a:hover { color:var(--c-purple); }
.hp-footer-col h4 { font-size:.8rem; font-weight:700; color:var(--c-text); margin-bottom:1rem; }
.hp-footer-col ul { list-style:none; display:flex; flex-direction:column; gap:.6rem; }
.hp-footer-col a { font-size:.85rem; color:var(--c-text-2); text-decoration:none; }
.hp-footer-col a:hover { color:var(--c-purple); }

/* Trust & Partners column */
.hp-footer-trust { display:flex; flex-direction:column; gap:.6rem; }
.hp-trust-badge {
  display:flex; align-items:center; gap:.65rem;
  padding:.55rem .75rem;
  border:1px solid var(--c-border);
  border-radius:9px;
  background:var(--c-bg-gray);
  text-decoration:none;
  transition:border-color .15s, background .15s;
}
.hp-trust-badge:hover { border-color:#c4b5fd; background:#faf8ff; color:inherit; }
.hp-trust-badge-icon {
  display:flex; align-items:center; justify-content:center;
  width:32px; height:32px; border-radius:7px;
  background:#fff; border:1px solid var(--c-border);
  color:#232830; flex-shrink:0;
}
.hp-trust-badge-icon--tp  { color:#00b67a; }
.hp-trust-badge-icon--ico { color:#005ea2; }
.hp-trust-badge-text { display:flex; flex-direction:column; gap:.1rem; }
.hp-trust-badge-text strong { font-size:.8125rem; font-weight:600; color:var(--c-text); line-height:1.2; }
.hp-trust-badge-text span   { font-size:.73rem; color:var(--c-muted); line-height:1.2; }
.hp-trust-stars { font-size:.8rem; color:#00b67a; letter-spacing:.05em; }
.hp-footer-bottom { border-top:1px solid var(--c-border); padding-block:1.5rem; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem; }
.hp-footer-copy { font-size:.8rem; color:var(--c-muted); }
.hp-footer-legal { display:flex; gap:1.25rem; }
.hp-footer-legal a { font-size:.8rem; color:var(--c-muted); text-decoration:none; }
.hp-footer-legal a:hover { color:var(--c-purple); }
.hp-footer-socials { display:flex; gap:.6rem; margin-top:1.1rem; }
.hp-footer-social { width:32px; height:32px; border:1px solid var(--c-border-2); border-radius:8px; display:flex; align-items:center; justify-content:center; color:var(--c-text-2); text-decoration:none; font-size:.8rem; transition:all .2s; }
.hp-footer-social:hover { border-color:var(--c-purple); color:var(--c-purple); }

/* â•â•â•â•â•â•â•â• BACK TO TOP â•â•â•â•â•â•â•â• */
.hp-btt { position:fixed; bottom:1.5rem; right:1.5rem; width:42px; height:42px; border-radius:10px; background:var(--c-purple); color:#fff; border:none; cursor:pointer; font-size:1.1rem; display:flex; align-items:center; justify-content:center; opacity:0; visibility:hidden; transform:translateY(12px); transition:all .3s var(--ease); z-index:90; box-shadow:0 6px 18px -6px rgba(108,71,255,.5); }
.hp-btt.visible { opacity:1; visibility:visible; transform:none; }

/* â•â•â•â•â•â•â•â• ENHANCED MOTION â•â•â•â•â•â•â•â• */

/* Sticky feature columns (Clerk-style pinned text while visual scrolls) */
@media(min-width:881px){
  .hp-showcase, .hp-split { align-items:start; }
  .hp-showcase > div:first-child,
  .hp-split    > div:first-child { position:sticky; top:92px; }
}

/* 3D mouse-tilt mockups */
[data-tilt]{ transition:transform .3s var(--ease); transform-style:preserve-3d; will-change:transform; }
[data-tilt] > * { transform:translateZ(0); }

/* Reveal directional + scale variants */
.hp-reveal--left  { transform:translateX(-28px); }
.hp-reveal--right { transform:translateX(28px); }
.hp-reveal--scale { transform:scale(.95); }
.hp-reveal--left.hp-visible,
.hp-reveal--right.hp-visible,
.hp-reveal--scale.hp-visible { transform:none; }

/* Hover lift micro-interaction on bento + icon walls already present; add link arrows */
.hp-card, .hp-case, .hp-tcard, .hp-bento-card, .hp-stat { will-change:transform; }

/* Hero subtle entrance */
.hp-hero-badge, .hp-hero-title, .hp-hero-sub, .hp-hero-btns, .hp-hero-trust { animation:hp-rise .7s var(--ease) both; }
.hp-hero-title { animation-delay:.06s; }
.hp-hero-sub   { animation-delay:.12s; }
.hp-hero-btns  { animation-delay:.18s; }
.hp-hero-trust { animation-delay:.24s; }
@keyframes hp-rise { from{ opacity:0; transform:translateY(16px); } to{ opacity:1; transform:none; } }

/* â•â•â•â•â•â•â•â• AMBIENT BACKGROUND â•â•â•â•â•â•â•â• */
.hp-hero { position:relative; overflow:hidden; }
.hp-hero > .hp-container { position:relative; z-index:2; }
.hp-hero-bg { position:absolute; inset:0; z-index:0; pointer-events:none; }
.hp-hero-grid {
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(108,71,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,71,255,.09) 1px, transparent 1px);
  background-size:46px 46px;
  -webkit-mask-image:radial-gradient(ellipse 85% 75% at 50% 30%, #000 0%, transparent 82%);
  mask-image:radial-gradient(ellipse 85% 75% at 50% 30%, #000 0%, transparent 82%);
  animation:hp-grid-scroll 22s linear infinite;
}
@keyframes hp-grid-scroll {
  0%   { background-position: 0 0; }
  100% { background-position: 46px 46px; }
}
.hp-hero-glow { position:absolute; border-radius:50%; filter:blur(72px); will-change:transform; pointer-events:none; }
.hp-hero-glow-1 { width:700px; height:700px; background:radial-gradient(circle, rgba(108,71,255,.40), transparent 65%); top:-20%; left:-8%; animation:hp-drift 16s ease-in-out infinite; }
.hp-hero-glow-2 { width:580px; height:580px; background:radial-gradient(circle, rgba(99,102,241,.28), transparent 65%); top:-8%; right:-8%; animation:hp-drift 18s ease-in-out infinite reverse; }
@keyframes hp-drift { 0%,100%{ transform:translate(0,0); } 50%{ transform:translate(22px,18px); } }

/* Floating UI chips (mouse-parallax) */
.hp-hero-deco {
  position:absolute; background:#fff; border:1px solid var(--c-border); border-radius:12px;
  box-shadow:0 18px 44px -18px rgba(20,20,30,.20); padding:.6rem .8rem;
  display:flex; align-items:center; gap:.6rem; font-size:.78rem; font-weight:600; color:var(--c-text);
  will-change:transform; white-space:nowrap;
}
.hp-hero-deco .ic { width:26px; height:26px; border-radius:7px; background:#f1edff; display:flex; align-items:center; justify-content:center; font-size:.85rem; }
.hp-hero-deco small { display:block; font-weight:500; font-size:.68rem; color:var(--c-muted); }
.hp-hero-deco-1 { top:15%; left:5%; }
.hp-hero-deco-2 { top:26%; right:6%; }
.hp-hero-deco-3 { bottom:8%; left:13%; }
.hp-hero-deco-4 { bottom:14%; right:11%; }
@media(max-width:1000px){ .hp-hero-deco{ display:none; } }

/* â•â•â•â•â•â•â•â• CARD SHEEN + LIFT â•â•â•â•â•â•â•â• */
.hp-card, .hp-case, .hp-tcard, .hp-pricecard, .hp-mock { position:relative; overflow:hidden; }
.hp-card::after, .hp-case::after, .hp-tcard::after {
  content:''; position:absolute; top:0; left:-120%; width:80%; height:100%;
  background:linear-gradient(100deg, transparent, rgba(108,71,255,.06), transparent);
  transform:skewX(-16deg); transition:left .65s var(--ease); pointer-events:none;
}
.hp-card:hover::after, .hp-case:hover::after, .hp-tcard:hover::after { left:160%; }

/* Bento card inner glow on hover */
.hp-bento-card::after {
  content:''; position:absolute; inset:0; pointer-events:none; opacity:0; transition:opacity .35s;
  background:radial-gradient(420px 200px at var(--mx,50%) var(--my,0%), rgba(167,139,255,.10), transparent 70%);
}
.hp-bento-card:hover::after { opacity:1; }

/* â•â•â•â•â•â•â•â• CTA / BUTTON SHIMMER â•â•â•â•â•â•â•â• */
.hp-btn-primary { position:relative; overflow:hidden; }
.hp-btn-primary::before {
  content:''; position:absolute; top:0; left:-120%; width:60%; height:100%;
  background:linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform:skewX(-18deg); transition:left .6s var(--ease); pointer-events:none;
}
.hp-btn-primary:hover::before { left:160%; }
.hp-btn-primary:hover { box-shadow:0 8px 24px -8px rgba(108,71,255,.6), inset 0 1px 0 rgba(255,255,255,.2); }
.hp-cta .hp-btn-primary:hover { box-shadow:0 10px 30px -8px rgba(108,71,255,.7); }

/* Icon-wall ambient on dark */
.hp-iconwall span { position:relative; overflow:hidden; }
.hp-iconwall span::after { content:''; position:absolute; inset:0; background:radial-gradient(circle at 50% 120%, rgba(167,139,255,.18), transparent 70%); opacity:0; transition:opacity .3s; }
.hp-iconwall span:hover::after { opacity:1; }
/* Name label on hover */
.hp-iconwall span[data-label]::before {
  content: attr(data-label);
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,6,25,.82);
  color: #fff; font-size: .6rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; text-align: center;
  padding: 4px; border-radius: inherit;
  opacity: 0; transition: opacity .2s;
}
.hp-iconwall span[data-label]:hover::before { opacity: 1; }

@media(prefers-reduced-motion:reduce){
  .hp-reveal,.hp-marquee-track,
  .hp-hero-badge,.hp-hero-title,.hp-hero-sub,.hp-hero-btns,.hp-hero-trust,
  .hp-hero-glow-1,.hp-hero-glow-2,.hp-hero-deco{ animation:none!important; transition:none!important; }
  .hp-reveal{ opacity:1!important; transform:none!important; }
  .hp-hero-grid{ animation:none!important; }
  [data-tilt],[data-mouse]{ transform:none!important; }
  .hp-showcase > div:first-child,.hp-split > div:first-child{ position:static; }
  .hp-card::after,.hp-case::after,.hp-tcard::after,.hp-btn-primary::before{ display:none; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICES PAGE COMPONENTS (shared design system)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hp-breadcrumb { display:flex; justify-content:center; gap:.45rem; font-size:.8rem; color:var(--c-muted); margin-bottom:1.25rem; }
.hp-breadcrumb a { color:var(--c-text-2); text-decoration:none; }
.hp-breadcrumb a:hover { color:var(--c-purple); }
.hp-breadcrumb span { color:var(--c-muted); }

/* Lead service card */
.hp-svc-lead {
  background:#fff; border:1px solid var(--c-border); border-radius:18px; padding:clamp(1.75rem,3vw,2.5rem);
  display:grid; grid-template-columns:1.05fr 1fr; gap:2.5rem; align-items:center;
  box-shadow:0 20px 50px -26px rgba(20,20,30,.18); position:relative; overflow:hidden;
}
.hp-svc-lead::before { content:''; position:absolute; inset:0; background:radial-gradient(120% 130% at 100% 0,rgba(108,71,255,.08),transparent 55%); pointer-events:none; }
@media(max-width:820px){ .hp-svc-lead{ grid-template-columns:1fr; gap:1.5rem; } }
.hp-svc-badge { display:inline-flex; align-items:center; gap:.4rem; font-size:.72rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase; color:var(--c-purple); background:#f1edff; border:1px solid #e4dbff; padding:.25rem .7rem; border-radius:999px; margin-bottom:1rem; }
.hp-svc-icon { width:54px; height:54px; border-radius:14px; background:#f1edff; display:flex; align-items:center; justify-content:center; font-size:1.5rem; margin-bottom:1.1rem; }
.hp-svc-list { list-style:none; display:flex; flex-direction:column; gap:.65rem; margin:.95rem 0 1.25rem; }
.hp-svc-list li { display:flex; gap:.6rem; font-size:.875rem; color:var(--c-text-2); line-height:1.5; }
.hp-svc-list li svg { width:18px; height:18px; flex-shrink:0; color:var(--c-purple); margin-top:.05rem; }
.hp-svc-link { display:inline-flex; align-items:center; gap:.35rem; font-size:.9rem; font-weight:600; color:var(--c-purple); text-decoration:none; transition:gap .2s; }
.hp-svc-link:hover { gap:.6rem; color:var(--c-purple-h); }

/* Steps */
.hp-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:1.1rem; margin-top:3rem; }
@media(max-width:900px){ .hp-steps{ grid-template-columns:1fr 1fr; } }
@media(max-width:480px){ .hp-steps{ grid-template-columns:1fr; } }
.hp-step { background:#fff; border:1px solid var(--c-border); border-radius:14px; padding:1.5rem; transition:box-shadow .25s, transform .25s, border-color .25s; }
.hp-step:hover { box-shadow:0 14px 36px -16px rgba(20,20,30,.16); transform:translateY(-3px); border-color:var(--c-border-2); }
.hp-step .num { width:34px; height:34px; border-radius:9px; background:var(--c-purple); color:#fff; font-weight:700; font-size:.95rem; display:flex; align-items:center; justify-content:center; margin-bottom:1rem; }
.hp-step h3 { font-size:1rem; font-weight:700; margin-bottom:.4rem; color:var(--c-text); }
.hp-step p { font-size:.85rem; color:var(--c-text-2); line-height:1.5; }

/* Layered stack diagram (dark) */
.hp-stack { max-width:640px; margin:3rem auto 0; display:flex; flex-direction:column; gap:.6rem; }
.hp-stack-row { border:1px solid var(--c-dark-border); border-radius:12px; padding:1.05rem 1.4rem; background:rgba(255,255,255,.04); text-align:center; transition:background .25s, transform .25s; }
.hp-stack-row:hover { background:rgba(255,255,255,.08); transform:translateY(-2px); }
.hp-stack-row b { display:block; color:#fff; font-size:.95rem; font-weight:600; margin-bottom:.15rem; }
.hp-stack-row span { font-size:.8rem; color:var(--c-on-dark-2); }
.hp-stack-row--accent { background:linear-gradient(135deg,rgba(108,71,255,.24),rgba(108,71,255,.08)); border-color:rgba(108,71,255,.45); }
.hp-stack-arrow { text-align:center; color:var(--c-on-dark-m); font-size:1rem; line-height:1; }

/* Industries note */
.hp-note { text-align:center; max-width:620px; margin:2.25rem auto 0; font-size:.9rem; color:var(--c-text-2); line-height:1.6; }
.hp-note a { color:var(--c-purple); text-decoration:none; font-weight:600; }
.hp-note a:hover { text-decoration:underline; }

/* Results (P/S/R) */
.hp-results { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; margin-top:3rem; }
@media(max-width:820px){ .hp-results{ grid-template-columns:1fr; } }
.hp-results--3col { grid-template-columns:repeat(3,1fr); gap:1rem; }
@media(max-width:1060px){ .hp-results--3col { grid-template-columns:1fr 1fr; } }
@media(max-width:640px){ .hp-results--3col { grid-template-columns:1fr; } }
.hp-results--3col .hp-result-top { padding:1.1rem 1.25rem; }
.hp-results--3col .hp-result-top .em { width:36px; height:36px; font-size:1.1rem; flex-shrink:0; }
.hp-results--3col .hp-result-top h3 { font-size:.95rem; }
.hp-results--3col .hp-result-body { padding:1.1rem 1.25rem; gap:.7rem; }
.hp-results--3col .hp-result-tags { padding:.75rem 1.25rem; margin-top:0; }
.hp-results--3col .hp-psr { font-size:.875rem; }
.hp-results--3col .hp-psr b { font-size:.7rem; }
.hp-result { background:#fff; border:1px solid var(--c-border); border-radius:16px; overflow:hidden; transition:box-shadow .25s, transform .25s, border-color .25s; }
.hp-result:hover { box-shadow:0 16px 40px -18px rgba(20,20,30,.16); transform:translateY(-3px); border-color:var(--c-border-2); }
.hp-result-top { display:flex; align-items:center; gap:.8rem; padding:1.35rem 1.5rem; border-bottom:1px solid var(--c-border); }
.hp-result-top .em { width:42px; height:42px; border-radius:11px; display:flex; align-items:center; justify-content:center; font-size:1.3rem; flex-shrink:0; }
.hp-result-top h3 { font-size:1.05rem; font-weight:700; }
.hp-result-top .cat { font-size:.72rem; color:var(--c-muted); }
.hp-result-body { padding:1.5rem; display:flex; flex-direction:column; gap:.9rem; }
.hp-psr { font-size:.875rem; line-height:1.55; color:var(--c-text-2); }
.hp-psr b { display:block; font-size:.7rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase; color:var(--c-purple); margin-bottom:.2rem; }

/* TechFlow callout */
.hp-callout { display:flex; align-items:center; justify-content:space-between; gap:1.5rem; flex-wrap:wrap; background:#fff; border:1px solid var(--c-border); border-radius:16px; padding:1.5rem 1.75rem; box-shadow:0 12px 32px -20px rgba(20,20,30,.14); }
.hp-callout .lbl { display:inline-block; font-size:.7rem; font-weight:700; letter-spacing:.07em; text-transform:uppercase; color:var(--c-purple); background:#f1edff; padding:.2rem .6rem; border-radius:999px; margin-bottom:.5rem; }
.hp-callout h3 { font-size:1.15rem; font-weight:700; }
.hp-callout p { font-size:.9rem; color:var(--c-text-2); margin-top:.2rem; }

/* FAQ accordion */
.hp-faq { max-width:760px; margin:3rem auto 0; }
.hp-faq-item { border:1px solid var(--c-border); border-radius:12px; margin-bottom:.75rem; background:#fff; overflow:hidden; transition:border-color .2s, box-shadow .2s; }
.hp-faq-item.open { border-color:var(--c-border-2); box-shadow:0 8px 24px -14px rgba(20,20,30,.14); }
.hp-faq-q { width:100%; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1.15rem 1.35rem; background:none; border:none; cursor:pointer; font:600 1rem var(--font); color:var(--c-text); text-align:left; }
.hp-faq-q .ic { flex-shrink:0; width:22px; height:22px; position:relative; }
.hp-faq-q .ic::before, .hp-faq-q .ic::after { content:''; position:absolute; background:var(--c-purple); border-radius:2px; }
.hp-faq-q .ic::before { top:10px; left:3px; right:3px; height:2px; }
.hp-faq-q .ic::after { left:10px; top:3px; bottom:3px; width:2px; transition:opacity .3s, transform .3s; }
.hp-faq-item.open .hp-faq-q .ic::after { opacity:0; transform:rotate(90deg); }
.hp-faq-a { max-height:0; overflow:hidden; transition:max-height .35s var(--ease); }
.hp-faq-a-inner { padding:0 1.35rem 1.25rem; font-size:.9rem; color:var(--c-text-2); line-height:1.65; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   AI & AUTOMATION PAGE COMPONENTS (extends shared design system)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Hero: metric pill row under the CTAs â”€â”€ */
.ai-hero-metrics { display:flex; flex-wrap:wrap; justify-content:center; gap:.5rem; margin-top:1.6rem; }
.ai-hero-metric { display:inline-flex; align-items:center; gap:.45rem; font-size:.8rem; font-weight:600; color:var(--c-text-2); background:#fff; border:1px solid var(--c-border-2); border-radius:999px; padding:.4rem .85rem; box-shadow:0 1px 2px rgba(0,0,0,.04); }
.ai-hero-metric .dot { width:7px; height:7px; border-radius:50%; background:#22c55e; box-shadow:0 0 0 3px rgba(34,197,94,.18); }

/* â”€â”€ Live chatbot mockup (signature AI visual) â”€â”€ */
.ai-chat {
  background:#fff; border:1px solid var(--c-border-2); border-radius:1.1rem; width:100%; max-width:400px; margin-inline:auto;
  box-shadow:0 28px 64px -24px rgba(20,20,30,.28), 0 8px 22px -10px rgba(20,20,30,.12); overflow:hidden;
}
.ai-chat-head { display:flex; align-items:center; gap:.65rem; padding:.95rem 1.1rem; border-bottom:1px solid var(--c-border); background:linear-gradient(180deg,#fbfaff,#fff); }
.ai-chat-ava { width:34px; height:34px; border-radius:10px; background:var(--c-purple); color:#fff; display:flex; align-items:center; justify-content:center; font-size:1rem; flex-shrink:0; box-shadow:0 4px 12px -4px rgba(108,71,255,.55); }
.ai-chat-head .nm { font-size:.88rem; font-weight:700; color:var(--c-text); line-height:1.2; }
.ai-chat-head .st { font-size:.7rem; color:#22c55e; font-weight:600; display:flex; align-items:center; gap:.3rem; }
.ai-chat-head .st::before { content:''; width:6px; height:6px; border-radius:50%; background:#22c55e; box-shadow:0 0 0 3px rgba(34,197,94,.18); }
.ai-chat-body { padding:1.15rem 1.1rem; display:flex; flex-direction:column; gap:.7rem; background:var(--c-bg-gray2); min-height:248px; }
.ai-msg { max-width:82%; font-size:.82rem; line-height:1.5; padding:.6rem .85rem; border-radius:14px; opacity:0; transform:translateY(8px); animation:ai-msg-in .5s var(--ease) forwards; }
.ai-msg--in  { align-self:flex-end; background:var(--c-purple); color:#fff; border-bottom-right-radius:5px; }
.ai-msg--bot { align-self:flex-start; background:#fff; color:var(--c-text); border:1px solid var(--c-border); border-bottom-left-radius:5px; }
.ai-msg b { color:inherit; }
.ai-msg:nth-of-type(1){ animation-delay:.3s; }
.ai-msg:nth-of-type(2){ animation-delay:1.1s; }
.ai-msg:nth-of-type(3){ animation-delay:2.6s; }
@keyframes ai-msg-in { to { opacity:1; transform:none; } }
.ai-typing { align-self:flex-start; display:inline-flex; gap:.28rem; background:#fff; border:1px solid var(--c-border); padding:.7rem .85rem; border-radius:14px; border-bottom-left-radius:5px; opacity:0; animation:ai-type-show 0s linear 1.8s forwards; }
.ai-typing span { width:7px; height:7px; border-radius:50%; background:#c3c4cf; animation:ai-bounce 1.2s var(--ease) infinite; }
.ai-typing span:nth-child(2){ animation-delay:.18s; } .ai-typing span:nth-child(3){ animation-delay:.36s; }
@keyframes ai-type-show { to { opacity:1; } }
@keyframes ai-bounce { 0%,60%,100%{ transform:translateY(0); opacity:.5; } 30%{ transform:translateY(-5px); opacity:1; } }
.ai-chat-input { display:flex; align-items:center; gap:.6rem; padding:.7rem .8rem; border-top:1px solid var(--c-border); background:#fff; }
.ai-chat-input .fld { flex:1; font-size:.8rem; color:var(--c-muted); padding:.55rem .75rem; background:var(--c-bg-gray); border:1px solid var(--c-border); border-radius:.6rem; }
.ai-chat-input .snd { width:34px; height:34px; flex-shrink:0; border-radius:.6rem; background:var(--c-purple); color:#fff; display:flex; align-items:center; justify-content:center; font-size:.95rem; }

/* â”€â”€ Pain-point icon tint (Problem section) â”€â”€ */
.hp-card-icon--alert { background:#fdeceb; }

/* â”€â”€ What we build: 2-up grid + use-case chips â”€â”€ */
.ai-build-grid { grid-template-columns:1fr 1fr; }
@media(max-width:880px){ .ai-build-grid { grid-template-columns:1fr; } }
.ai-uses { display:flex; flex-wrap:wrap; gap:.4rem; margin-top:1rem; }
.ai-uses span { font-size:.72rem; font-weight:600; color:var(--c-text-2); background:var(--c-bg-gray); border:1px solid var(--c-border); border-radius:999px; padding:.28rem .65rem; transition:background .2s, border-color .2s, color .2s; }
.hp-card:hover .ai-uses span { background:#f1edff; border-color:#e4dbff; color:var(--c-purple); }

/* â”€â”€ 5-step process flow (dark section) â”€â”€ */
.ai-flow { display:grid; grid-template-columns:repeat(5,1fr); gap:1rem; margin-top:3rem; position:relative; }
.ai-flow::before { content:''; position:absolute; top:22px; left:10%; right:10%; height:2px; background:linear-gradient(90deg,transparent,rgba(167,139,255,.45),transparent); }
@media(max-width:860px){
  .ai-flow { grid-template-columns:1fr; gap:0; padding-left:.5rem; }
  .ai-flow::before { top:0; bottom:0; left:23px; right:auto; width:2px; height:auto; background:linear-gradient(180deg,transparent,rgba(167,139,255,.45),transparent); }
}
.ai-flow-step { text-align:center; position:relative; }
@media(max-width:860px){ .ai-flow-step { text-align:left; display:flex; gap:1rem; padding-bottom:1.75rem; } }
.ai-flow-node { width:46px; height:46px; border-radius:50%; margin:0 auto .9rem; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:1.05rem; color:#fff; background:var(--c-dark2); border:2px solid rgba(167,139,255,.5); box-shadow:0 0 0 6px var(--c-dark); position:relative; z-index:1; transition:border-color .3s, box-shadow .3s, transform .3s; }
@media(max-width:860px){ .ai-flow-node { margin:0; flex-shrink:0; box-shadow:0 0 0 6px var(--c-dark); } }
.ai-flow-step:hover .ai-flow-node { border-color:#a78bff; transform:translateY(-3px); box-shadow:0 0 0 6px var(--c-dark), 0 10px 24px -8px rgba(167,139,255,.5); }
.ai-flow-step h3 { font-size:.98rem; font-weight:600; color:#fff; margin-bottom:.35rem; }
.ai-flow-step p { font-size:.8rem; color:var(--c-on-dark-2); line-height:1.5; }

/* â”€â”€ Tech-we-use logo grid â”€â”€ */
.ai-tech { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--c-border); border:1px solid var(--c-border); border-radius:14px; overflow:hidden; margin-top:2.5rem; }
@media(max-width:760px){ .ai-tech { grid-template-columns:repeat(2,1fr); } }
.ai-tech-item { background:#fff; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.6rem; padding:1.6rem 1rem; transition:background .25s; }
.ai-tech-item:hover { background:var(--c-bg-gray2); }
.ai-tech-item svg { width:30px; height:30px; color:#3a3b45; transition:color .25s, transform .25s; }
.ai-tech-item:hover svg { color:var(--c-purple); transform:translateY(-2px); }
.ai-tech-item span { font-size:.82rem; font-weight:600; color:var(--c-text-2); }

/* â”€â”€ Scope clarity: two columns â”€â”€ */
.ai-scope { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; margin-top:3rem; }
@media(max-width:760px){ .ai-scope { grid-template-columns:1fr; } }
.ai-scope-col { border:1px solid var(--c-border); border-radius:16px; padding:1.75rem; background:#fff; }
.ai-scope-col--yes { background:linear-gradient(180deg,#fbfaff,#fff); border-color:#e4dbff; }
.ai-scope-col h3 { font-size:1.02rem; font-weight:700; margin-bottom:1.1rem; display:flex; align-items:center; gap:.55rem; }
.ai-scope-col h3 .tag { width:26px; height:26px; border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:.85rem; flex-shrink:0; }
.ai-scope-col--yes h3 .tag { background:#e7f7ee; }
.ai-scope-col--note h3 .tag { background:var(--c-bg-gray); }
.ai-scope-list { list-style:none; display:flex; flex-direction:column; gap:.85rem; }
.ai-scope-list li { display:flex; gap:.6rem; font-size:.875rem; color:var(--c-text-2); line-height:1.55; }
.ai-scope-list li svg { width:18px; height:18px; flex-shrink:0; margin-top:.1rem; }
.ai-scope-col--yes .ai-scope-list li svg { color:#22a55a; }
.ai-scope-col--note .ai-scope-list li svg { color:var(--c-muted); }

/* â”€â”€ Pricing approach â”€â”€ */
.ai-pricing { max-width:760px; margin:0 auto; text-align:center; }
.ai-pricing-lead { font-size:1.0625rem; color:var(--c-text-2); line-height:1.7; }
.ai-pricing-lead b { color:var(--c-text); font-weight:700; }
.ai-pricefactors { display:grid; grid-template-columns:repeat(3,1fr); gap:1.1rem; margin-top:2.5rem; text-align:left; }
@media(max-width:760px){ .ai-pricefactors { grid-template-columns:1fr; } }
.ai-pricefactor { border:1px solid var(--c-border); border-radius:14px; padding:1.4rem; background:#fff; }
.ai-pricefactor .ic { width:38px; height:38px; border-radius:10px; background:#f1edff; display:flex; align-items:center; justify-content:center; font-size:1.05rem; margin-bottom:.85rem; }
.ai-pricefactor h4 { font-size:.92rem; font-weight:700; margin-bottom:.3rem; }
.ai-pricefactor p { font-size:.82rem; color:var(--c-text-2); line-height:1.55; }

/* â”€â”€ Related services (2-up) â”€â”€ */
.ai-related { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; margin-top:3rem; }
@media(max-width:680px){ .ai-related { grid-template-columns:1fr; } }
.ai-related .hp-card { display:flex; gap:1rem; align-items:flex-start; }
.ai-related .hp-card-icon { margin-bottom:0; }

/* â”€â”€ Honest proof note â”€â”€ */
.ai-proof-note { display:flex; align-items:flex-start; gap:.7rem; max-width:720px; margin:0 auto 2.5rem; padding:1rem 1.25rem; background:var(--c-bg-gray2); border:1px solid var(--c-border); border-radius:12px; font-size:.85rem; color:var(--c-text-2); line-height:1.6; }
.ai-proof-note svg { width:20px; height:20px; flex-shrink:0; color:var(--c-purple); margin-top:.1rem; }

@media(prefers-reduced-motion:reduce){
  .ai-msg, .ai-typing, .ai-typing span { animation:none!important; opacity:1!important; transform:none!important; }
}

/* 3-up related services */
.ai-related--3 { grid-template-columns:repeat(3,1fr); }
@media(max-width:880px){ .ai-related--3 { grid-template-columns:1fr; } }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CUSTOM SOFTWARE & SAAS PAGE COMPONENTS (extends design system)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Signature visual: animated "built-for-you" dashboard â”€â”€ */
.cs-dash {
  background:#fff; border:1px solid var(--c-border-2); border-radius:1rem; width:100%; max-width:440px; margin-inline:auto;
  box-shadow:0 28px 64px -24px rgba(20,20,30,.28), 0 8px 22px -10px rgba(20,20,30,.12); overflow:hidden;
}
.cs-dash-bar { display:flex; align-items:center; gap:.45rem; padding:.7rem .9rem; border-bottom:1px solid var(--c-border); background:#fbfbfc; }
.cs-dash-bar .d { width:9px; height:9px; border-radius:50%; background:#e0e0e6; }
.cs-dash-bar .t { margin-left:.5rem; font-size:.72rem; font-weight:600; color:var(--c-muted); }
.cs-dash-body { display:grid; grid-template-columns:96px 1fr; min-height:268px; }
.cs-dash-side { background:var(--c-dark); padding:.85rem .6rem; display:flex; flex-direction:column; gap:.3rem; }
.cs-dash-side .logo { width:24px; height:24px; border-radius:7px; background:var(--c-purple); color:#fff; font-size:.62rem; font-weight:800; display:flex; align-items:center; justify-content:center; margin-bottom:.6rem; }
.cs-dash-side .nav { display:flex; align-items:center; gap:.4rem; font-size:.62rem; color:var(--c-on-dark-2); padding:.34rem .4rem; border-radius:6px; }
.cs-dash-side .nav.on { background:rgba(108,71,255,.22); color:#fff; }
.cs-dash-side .nav i { width:6px; height:6px; border-radius:2px; background:currentColor; opacity:.7; }
.cs-dash-main { padding:.95rem 1rem 1.1rem; }
.cs-dash-kpis { display:grid; grid-template-columns:repeat(3,1fr); gap:.55rem; margin-bottom:1rem; }
.cs-kpi { border:1px solid var(--c-border); border-radius:9px; padding:.6rem .55rem; background:var(--c-bg-gray2); }
.cs-kpi .v { font-size:1.05rem; font-weight:800; letter-spacing:-.02em; color:var(--c-text); line-height:1; }
.cs-kpi .k { font-size:.58rem; color:var(--c-muted); margin-top:.25rem; font-weight:600; }
.cs-chart { display:flex; align-items:flex-end; gap:.5rem; height:96px; padding-top:.4rem; border-top:1px solid var(--c-border); }
.cs-chart .bar { flex:1; display:flex; flex-direction:column; align-items:center; gap:.3rem; height:100%; justify-content:flex-end; }
.cs-chart .bar i { width:100%; border-radius:5px 5px 0 0; background:linear-gradient(180deg,#8b6bff,#6c47ff); transform-origin:bottom; animation:cs-grow 1s var(--ease) backwards; }
.cs-chart .bar.muted i { background:linear-gradient(180deg,#dcdce4,#cfcfda); }
.cs-chart .bar span { font-size:.55rem; color:var(--c-muted); }
.cs-chart .bar:nth-child(1) i{ animation-delay:.25s } .cs-chart .bar:nth-child(2) i{ animation-delay:.35s }
.cs-chart .bar:nth-child(3) i{ animation-delay:.45s } .cs-chart .bar:nth-child(4) i{ animation-delay:.55s }
.cs-chart .bar:nth-child(5) i{ animation-delay:.65s } .cs-chart .bar:nth-child(6) i{ animation-delay:.75s }
@keyframes cs-grow { from { transform:scaleY(0); } }

/* â”€â”€ Grouped tech stack â”€â”€ */
.cs-stack { display:grid; grid-template-columns:repeat(3,1fr); gap:1.1rem; margin-top:2.5rem; }
@media(max-width:880px){ .cs-stack { grid-template-columns:1fr 1fr; } }
@media(max-width:560px){ .cs-stack { grid-template-columns:1fr; } }
.cs-stack-card { border:1px solid var(--c-border); border-radius:14px; padding:1.35rem; background:#fff; transition:border-color .25s, box-shadow .25s, transform .25s; }
.cs-stack-card:hover { border-color:var(--c-border-2); box-shadow:0 12px 30px -16px rgba(20,20,30,.14); transform:translateY(-3px); }
.cs-stack-card h3 { display:flex; align-items:center; gap:.5rem; font-size:.82rem; font-weight:700; letter-spacing:.02em; text-transform:uppercase; color:var(--c-purple); margin-bottom:.9rem; }
.cs-stack-card h3 .ic { width:26px; height:26px; border-radius:7px; background:#f1edff; display:flex; align-items:center; justify-content:center; font-size:.85rem; flex-shrink:0; }
.cs-chips { display:flex; flex-wrap:wrap; gap:.4rem; }
.cs-chips span { font-size:.78rem; font-weight:600; color:var(--c-text-2); background:var(--c-bg-gray); border:1px solid var(--c-border); border-radius:8px; padding:.3rem .6rem; transition:background .2s, color .2s, border-color .2s; }
.cs-stack-card:hover .cs-chips span { background:#f7f5ff; border-color:#e4dbff; }

/* â”€â”€ Engagement models â”€â”€ */
.cs-engage { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; margin-top:3rem; }
@media(max-width:880px){ .cs-engage { grid-template-columns:1fr; } }
.cs-engage-card { border:1px solid var(--c-border); border-radius:16px; padding:1.75rem; background:#fff; display:flex; flex-direction:column; transition:border-color .25s, box-shadow .25s, transform .25s; }
.cs-engage-card:hover { border-color:var(--c-border-2); box-shadow:0 16px 40px -18px rgba(20,20,30,.16); transform:translateY(-3px); }
.cs-engage-card--feature { background:linear-gradient(180deg,#faf8ff,#fff); border-color:#e4dbff; }
.cs-engage-icon { width:46px; height:46px; border-radius:12px; background:#f1edff; display:flex; align-items:center; justify-content:center; font-size:1.3rem; margin-bottom:1.1rem; }
.cs-engage-card h3 { font-size:1.1rem; font-weight:700; margin-bottom:.5rem; }
.cs-engage-card p { font-size:.875rem; color:var(--c-text-2); line-height:1.6; flex:1; }
.cs-engage-best { margin-top:1.25rem; padding-top:1rem; border-top:1px solid var(--c-border); font-size:.82rem; color:var(--c-text-2); }
.cs-engage-best b { display:block; font-size:.68rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase; color:var(--c-purple); margin-bottom:.25rem; }

/* â”€â”€ Pricing tiers â”€â”€ */
.cs-tiers { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; margin-top:2.5rem; }
@media(max-width:880px){ .cs-tiers { grid-template-columns:1fr; max-width:420px; margin-inline:auto; } }
.cs-tier { border:1px solid var(--c-border); border-radius:16px; padding:1.75rem; background:#fff; text-align:center; position:relative; transition:border-color .25s, box-shadow .25s, transform .25s; }
.cs-tier:hover { border-color:var(--c-border-2); box-shadow:0 16px 40px -18px rgba(20,20,30,.16); transform:translateY(-3px); }
.cs-tier--mid { border-color:var(--c-purple); box-shadow:0 18px 44px -20px rgba(108,71,255,.3); }
.cs-tier-flag { position:absolute; top:-11px; left:50%; transform:translateX(-50%); font-size:.62rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:#fff; background:var(--c-purple); padding:.25rem .7rem; border-radius:999px; }
.cs-tier .lab { font-size:.85rem; font-weight:700; color:var(--c-text); margin-bottom:.6rem; }
.cs-tier .amt { font-size:1.9rem; font-weight:800; letter-spacing:-.03em; color:var(--c-purple); line-height:1; }
.cs-tier .amt small { font-size:.78rem; font-weight:600; color:var(--c-muted); display:block; margin-bottom:.35rem; letter-spacing:0; }
.cs-tier .desc { font-size:.82rem; color:var(--c-text-2); line-height:1.55; margin-top:.85rem; }
.cs-pricing-foot { text-align:center; max-width:620px; margin:2.5rem auto 0; font-size:.95rem; color:var(--c-text-2); line-height:1.65; }
.cs-pricing-foot b { color:var(--c-text); }

@media(prefers-reduced-motion:reduce){
  .cs-chart .bar i { animation:none!important; transform:none!important; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WEB & MOBILE APPS PAGE COMPONENTS (extends design system)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Signature visual: web browser + phone, side by side â”€â”€ */
.wm-stage { position:relative; width:100%; max-width:440px; height:380px; margin-inline:auto; }
.wm-browser {
  position:absolute; top:6px; left:0; width:298px; background:#fff;
  border:1px solid var(--c-border-2); border-radius:12px; overflow:hidden;
  box-shadow:0 22px 50px -22px rgba(20,20,30,.22);
}
.wm-browser-bar { height:30px; display:flex; align-items:center; gap:5px; padding:0 10px; border-bottom:1px solid var(--c-border); background:#fbfbfc; }
.wm-browser-bar .d { width:8px; height:8px; border-radius:50%; background:#e0e0e6; }
.wm-browser-bar .url { margin-left:8px; flex:1; height:12px; border-radius:6px; background:var(--c-bg-gray); }
.wm-browser-body { display:grid; grid-template-columns:60px 1fr; height:202px; }
.wm-browser-side { background:var(--c-dark); padding:11px 8px; display:flex; flex-direction:column; gap:7px; }
.wm-browser-side i { height:8px; border-radius:3px; background:rgba(255,255,255,.14); }
.wm-browser-side i.on { background:var(--c-purple); }
.wm-browser-main { padding:13px; display:flex; flex-direction:column; gap:9px; }
.wm-browser-main .row { height:11px; border-radius:4px; background:var(--c-bg-gray); }
.wm-browser-main .row.s { width:55%; }
.wm-browser-main .blocks { display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-top:2px; }
.wm-browser-main .block { height:52px; border-radius:8px; background:linear-gradient(135deg,#f1edff,#faf8ff); border:1px solid #ece7ff; }
.wm-phone {
  position:absolute; right:4px; bottom:0; width:172px; height:348px; background:#fff;
  border:1px solid var(--c-border-2); border-radius:28px; padding:7px; z-index:3;
  box-shadow:0 30px 60px -20px rgba(20,20,30,.32);
}
.wm-phone-screen { position:relative; height:100%; border-radius:22px; overflow:hidden; background:var(--c-bg-gray2); display:flex; flex-direction:column; }
.wm-phone-notch { position:absolute; top:0; left:50%; transform:translateX(-50%); width:56px; height:15px; background:#1c1c1f; border-radius:0 0 11px 11px; z-index:5; }
.wm-app-head { background:linear-gradient(135deg,var(--c-purple),#8b6bff); color:#fff; padding:26px 13px 13px; }
.wm-app-head .t { font-size:.78rem; font-weight:700; letter-spacing:-.01em; }
.wm-app-head .s { font-size:.58rem; opacity:.85; margin-top:2px; }
.wm-app-body { padding:11px; display:flex; flex-direction:column; gap:8px; flex:1; }
.wm-app-card { background:#fff; border:1px solid var(--c-border); border-radius:11px; padding:9px; display:flex; gap:9px; align-items:center; opacity:0; transform:translateY(8px); animation:ai-msg-in .55s var(--ease) forwards; }
.wm-app-card:nth-of-type(1){ animation-delay:.4s } .wm-app-card:nth-of-type(2){ animation-delay:.75s } .wm-app-card:nth-of-type(3){ animation-delay:1.1s }
.wm-app-card .ic { width:28px; height:28px; border-radius:8px; background:#f1edff; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:.8rem; }
.wm-app-card .ln { flex:1; }
.wm-app-card .ln b { display:block; height:7px; width:72%; border-radius:3px; background:var(--c-text); opacity:.78; margin-bottom:5px; }
.wm-app-card .ln span { display:block; height:6px; width:46%; border-radius:3px; background:var(--c-border-2); }
.wm-app-card .pulse { width:8px; height:8px; border-radius:50%; background:#22c55e; box-shadow:0 0 0 0 rgba(34,197,94,.5); animation:wm-pulse 2s ease-out infinite; }
@keyframes wm-pulse { 0%{ box-shadow:0 0 0 0 rgba(34,197,94,.45);} 70%{ box-shadow:0 0 0 7px rgba(34,197,94,0);} 100%{ box-shadow:0 0 0 0 rgba(34,197,94,0);} }
.wm-app-tabs { margin-top:auto; display:flex; justify-content:space-around; align-items:center; padding:9px 0; border-top:1px solid var(--c-border); background:#fff; }
.wm-app-tabs i { width:17px; height:17px; border-radius:5px; background:var(--c-border-2); }
.wm-app-tabs i.on { background:var(--c-purple); }
@media(max-width:520px){
  .wm-stage { height:auto; }
  .wm-browser { display:none; }
  .wm-phone { position:static; margin-inline:auto; }
}

/* â”€â”€ 6-step process pipeline (extends .ai-flow) â”€â”€ */
.ai-flow--6 { grid-template-columns:repeat(6,1fr); }
@media(max-width:1024px) and (min-width:861px){
  .ai-flow--6 { grid-template-columns:repeat(3,1fr); row-gap:2.25rem; }
  .ai-flow--6::before { display:none; }
}

/* â”€â”€ Web vs Mobile vs PWA â€” decision helper â”€â”€ */
.wm-choose { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; margin-top:3rem; }
@media(max-width:880px){ .wm-choose { grid-template-columns:1fr; } }
.wm-choose-card { border:1px solid var(--c-border); border-radius:16px; padding:1.75rem; background:#fff; position:relative; overflow:hidden; transition:border-color .25s, box-shadow .25s, transform .25s; }
.wm-choose-card::before { content:''; position:absolute; inset:0 0 auto; height:3px; background:linear-gradient(90deg,var(--c-purple),#a78bff); opacity:.85; }
.wm-choose-card:hover { border-color:var(--c-border-2); box-shadow:0 16px 40px -18px rgba(20,20,30,.16); transform:translateY(-3px); }
.wm-choose-icon { width:46px; height:46px; border-radius:12px; background:#f1edff; display:flex; align-items:center; justify-content:center; font-size:1.3rem; margin-bottom:1rem; }
.wm-choose-card h3 { font-size:1.1rem; font-weight:700; margin-bottom:.2rem; }
.wm-choose-card .when { font-size:.78rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase; color:var(--c-purple); margin-bottom:1rem; }
.wm-choose-list { list-style:none; display:flex; flex-direction:column; gap:.7rem; }
.wm-choose-list li { display:flex; gap:.6rem; font-size:.875rem; color:var(--c-text-2); line-height:1.5; }
.wm-choose-list li svg { width:18px; height:18px; flex-shrink:0; color:var(--c-purple); margin-top:.1rem; }

/* â”€â”€ Post-launch support grid â”€â”€ */
.wm-support { display:grid; grid-template-columns:repeat(4,1fr); gap:1.1rem; margin-top:3rem; }
@media(max-width:880px){ .wm-support { grid-template-columns:1fr 1fr; } }
@media(max-width:520px){ .wm-support { grid-template-columns:1fr; } }
.wm-support-card { border:1px solid var(--c-dark-border); border-radius:14px; padding:1.5rem; background:rgba(255,255,255,.04); transition:background .25s, transform .25s; }
.wm-support-card:hover { background:rgba(255,255,255,.08); transform:translateY(-3px); }
.wm-support-card .ic { width:40px; height:40px; border-radius:10px; background:rgba(167,139,255,.16); display:flex; align-items:center; justify-content:center; font-size:1.15rem; margin-bottom:1rem; }
.wm-support-card h3 { font-size:.95rem; font-weight:600; color:#fff; margin-bottom:.4rem; }
.wm-support-card p { font-size:.82rem; color:var(--c-on-dark-2); line-height:1.55; }

@media(prefers-reduced-motion:reduce){
  .wm-app-card, .wm-app-card .pulse { animation:none!important; opacity:1!important; transform:none!important; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CLOUD INFRASTRUCTURE PAGE COMPONENTS (extends design system)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Signature visual: animated cloud architecture diagram â”€â”€ */
.ci-arch {
  background:#fff; border:1px solid var(--c-border-2); border-radius:1rem; width:100%; max-width:420px; margin-inline:auto;
  box-shadow:0 28px 64px -24px rgba(20,20,30,.26), 0 8px 22px -10px rgba(20,20,30,.12); overflow:hidden;
}
.ci-arch-bar { display:flex; align-items:center; gap:.5rem; padding:.8rem 1rem; border-bottom:1px solid var(--c-border); background:#fbfbfc; font-size:.72rem; font-weight:600; color:var(--c-text-2); }
.ci-arch-bar .live { display:inline-flex; align-items:center; gap:.4rem; color:#16a34a; font-weight:700; }
.ci-arch-bar .live::before { content:''; width:7px; height:7px; border-radius:50%; background:#22c55e; box-shadow:0 0 0 0 rgba(34,197,94,.5); animation:wm-pulse 2s ease-out infinite; }
.ci-arch-bar .region { margin-left:auto; color:var(--c-muted); font-weight:500; }
.ci-arch-body { padding:1.25rem 1.1rem .4rem; display:flex; flex-direction:column; align-items:center; }
.ci-tier { display:flex; gap:.45rem; justify-content:center; width:100%; }
.ci-node { display:inline-flex; align-items:center; gap:.4rem; padding:.5rem .7rem; border:1px solid var(--c-border); border-radius:.55rem; background:var(--c-bg-gray2); font-size:.72rem; font-weight:600; color:var(--c-text); white-space:nowrap; }
.ci-node .ic { font-size:.9rem; }
.ci-node--accent { background:linear-gradient(135deg,#f1edff,#faf8ff); border-color:#e4dbff; color:var(--c-purple); }
.ci-node--mini { flex-direction:column; gap:.1rem; padding:.45rem .5rem; font-size:.6rem; flex:1; justify-content:center; text-align:center; }
.ci-node--mini .ic { font-size:1rem; }
.ci-link { width:2px; height:20px; border-radius:2px; background:linear-gradient(180deg, transparent, var(--c-purple), transparent); background-size:100% 240%; animation:ci-flow 1.3s linear infinite; }
.ci-link--fan { width:62%; height:18px; border:2px solid var(--c-border-2); border-bottom:0; border-radius:8px 8px 0 0; margin-bottom:-2px; }
@keyframes ci-flow { 0%{ background-position:0 120%; } 100%{ background-position:0 -140%; } }
.ci-arch-foot { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--c-border); margin-top:.9rem; }
.ci-arch-foot div { padding:.7rem .4rem; text-align:center; border-right:1px solid var(--c-border); }
.ci-arch-foot div:last-child { border-right:0; }
.ci-arch-foot .v { font-size:.95rem; font-weight:800; letter-spacing:-.02em; color:var(--c-purple); }
.ci-arch-foot .k { font-size:.56rem; color:var(--c-muted); margin-top:.15rem; font-weight:600; }

/* â”€â”€ AWS & Microsoft partnership â”€â”€ */
.ci-partner { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; }
@media(max-width:880px){ .ci-partner { grid-template-columns:1fr; gap:2rem; } }
.ci-badges { display:flex; flex-direction:column; gap:1rem; }
.ci-badge { display:flex; align-items:center; gap:1.1rem; padding:1.25rem 1.5rem; border:1px solid var(--c-border); border-radius:14px; background:#fff; box-shadow:0 14px 36px -20px rgba(20,20,30,.16); transition:transform .25s, box-shadow .25s; }
.ci-badge:hover { transform:translateY(-3px); box-shadow:0 20px 44px -20px rgba(20,20,30,.2); }
.ci-badge .mark { width:50px; height:50px; border-radius:12px; background:var(--c-bg-gray); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.ci-badge .mark svg { width:30px; height:30px; color:var(--c-text); }
.ci-badge .nm { font-size:1.02rem; font-weight:700; line-height:1.2; }
.ci-badge .vr { font-size:.74rem; color:#16a34a; font-weight:600; display:flex; align-items:center; gap:.3rem; margin-top:.2rem; }
.ci-badge .vr svg { width:14px; height:14px; }

/* â”€â”€ Reusable titled checklist panel (security + cost) â”€â”€ */
.ci-panel { border:1px solid var(--c-border); border-radius:16px; background:#fff; padding:1.85rem; box-shadow:0 16px 40px -24px rgba(20,20,30,.16); }
.ci-panel-list { list-style:none; display:flex; flex-direction:column; gap:1.15rem; }
.ci-panel-list li { display:flex; gap:.9rem; }
.ci-panel-list li .ic { width:36px; height:36px; border-radius:10px; background:#f1edff; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:1rem; }
.ci-panel-list li b { display:block; font-size:.9rem; font-weight:700; margin-bottom:.18rem; color:var(--c-text); }
.ci-panel-list li span { font-size:.85rem; color:var(--c-text-2); line-height:1.55; }

@media(prefers-reduced-motion:reduce){
  .ci-arch-bar .live::before, .ci-link { animation:none!important; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT PAGE COMPONENTS (extends design system)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Hero founding statement */
.ab-founding { max-width:660px; margin:2rem auto 0; padding:1.2rem 1.5rem; background:#fff; border:1px solid var(--c-border); border-radius:14px; box-shadow:0 14px 34px -22px rgba(20,20,30,.14); }
.ab-founding .lbl { display:block; font-size:.7rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--c-purple); margin-bottom:.4rem; }
.ab-founding p { font-size:1.02rem; color:var(--c-text); line-height:1.6; font-style:italic; }

/* Signature visual: company credentials card */
.ab-card { background:#fff; border:1px solid var(--c-border-2); border-radius:1rem; width:100%; max-width:400px; margin-inline:auto; box-shadow:0 28px 64px -24px rgba(20,20,30,.28), 0 8px 22px -10px rgba(20,20,30,.12); overflow:hidden; }
.ab-card-top { position:relative; padding:1.5rem; background:linear-gradient(135deg,var(--c-dark),var(--c-dark2)); color:#fff; }
.ab-card-top .logo { width:42px; height:42px; border-radius:11px; background:var(--c-purple); display:flex; align-items:center; justify-content:center; font-weight:800; font-size:.9rem; margin-bottom:.9rem; }
.ab-card-top .nm { font-size:1.05rem; font-weight:700; letter-spacing:-.01em; }
.ab-card-top .tg { font-size:.76rem; color:var(--c-on-dark-2); margin-top:.15rem; }
.ab-card-seal { position:absolute; top:1.5rem; right:1.5rem; display:inline-flex; align-items:center; gap:.3rem; font-size:.66rem; font-weight:700; color:#22c55e; background:rgba(34,197,94,.12); border:1px solid rgba(34,197,94,.3); padding:.25rem .55rem; border-radius:999px; }
.ab-card-seal svg { width:12px; height:12px; }
.ab-card-rows { padding:1.2rem 1.5rem; display:flex; flex-direction:column; gap:.95rem; }
.ab-card-row { display:flex; align-items:center; gap:.85rem; }
.ab-card-row .ic { width:34px; height:34px; border-radius:9px; background:#f1edff; display:flex; align-items:center; justify-content:center; font-size:.95rem; flex-shrink:0; }
.ab-card-row b { display:block; font-size:.82rem; font-weight:700; color:var(--c-text); }
.ab-card-row span { font-size:.72rem; color:var(--c-muted); }
.ab-card-badges { display:flex; gap:.6rem; padding:0 1.5rem 1.5rem; }
.ab-card-badges span { flex:1; display:inline-flex; align-items:center; justify-content:center; gap:.4rem; padding:.55rem; border:1px solid var(--c-border); border-radius:.55rem; font-size:.72rem; font-weight:600; color:var(--c-text-2); background:var(--c-bg-gray2); }
.ab-card-badges svg { width:16px; height:16px; }

/* Story timeline */
.ab-timeline { display:grid; grid-template-columns:repeat(4,1fr); gap:1.1rem; margin-top:3rem; position:relative; }
.ab-timeline::before { content:''; position:absolute; top:13px; left:10%; right:10%; height:2px; background:linear-gradient(90deg,transparent,var(--c-purple),transparent); opacity:.4; }
@media(max-width:760px){ .ab-timeline { grid-template-columns:1fr 1fr; } .ab-timeline::before { display:none; } }
.ab-tl { text-align:center; position:relative; }
.ab-tl .dot { width:28px; height:28px; border-radius:50%; background:#fff; border:2px solid var(--c-purple); margin:0 auto .85rem; display:flex; align-items:center; justify-content:center; position:relative; z-index:1; }
.ab-tl .dot::after { content:''; width:9px; height:9px; border-radius:50%; background:var(--c-purple); }
.ab-tl .yr { font-size:.82rem; font-weight:800; letter-spacing:.02em; color:var(--c-purple); }
.ab-tl h4 { font-size:.92rem; font-weight:700; margin:.2rem 0 .35rem; }
.ab-tl p { font-size:.8rem; color:var(--c-text-2); line-height:1.5; }

/* By the numbers â€” 5-up stats */
.hp-stats--5 { grid-template-columns:repeat(5,1fr); margin-bottom:0; }
@media(max-width:900px){ .hp-stats--5 { grid-template-columns:repeat(3,1fr); } }
@media(max-width:560px){ .hp-stats--5 { grid-template-columns:1fr 1fr; } }

/* Team */
.ab-team { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; margin-top:3rem; }
@media(max-width:760px){ .ab-team { grid-template-columns:1fr; } }
.ab-person { border:1px solid var(--c-border); border-radius:16px; padding:1.85rem; background:#fff; transition:border-color .25s, box-shadow .25s, transform .25s; }
.ab-person:hover { border-color:var(--c-border-2); box-shadow:0 16px 40px -20px rgba(20,20,30,.16); transform:translateY(-3px); }
.ab-person-head { display:flex; align-items:center; gap:1.1rem; margin-bottom:1.1rem; }
.ab-avatar { width:60px; height:60px; border-radius:16px; background:linear-gradient(135deg,var(--c-purple),#8b6bff); color:#fff; display:flex; align-items:center; justify-content:center; font-size:1.5rem; font-weight:800; flex-shrink:0; box-shadow:0 8px 20px -8px rgba(108,71,255,.5); }
.ab-person .nm { font-size:1.15rem; font-weight:700; letter-spacing:-.01em; }
.ab-person .rl { font-size:.82rem; color:var(--c-purple); font-weight:600; margin-top:.1rem; }
.ab-person p { font-size:.9rem; color:var(--c-text-2); line-height:1.65; }
.ab-person .li { display:inline-flex; align-items:center; gap:.35rem; margin-top:1.1rem; font-size:.82rem; font-weight:600; color:var(--c-purple); text-decoration:none; }
.ab-person .li:hover { text-decoration:underline; }

/* Why-stay founder-voice reasons */
.ab-reasons { max-width:840px; margin:3rem auto 0; display:flex; flex-direction:column; gap:1.1rem; }
.ab-reason { border:1px solid var(--c-border); border-left:3px solid var(--c-purple); border-radius:12px; background:#fff; padding:1.4rem 1.6rem; transition:box-shadow .25s, transform .25s; }
.ab-reason:hover { box-shadow:0 14px 36px -20px rgba(20,20,30,.14); transform:translateX(3px); }
.ab-reason h3 { font-size:1.02rem; font-weight:700; margin-bottom:.4rem; }
.ab-reason p { font-size:.9rem; color:var(--c-text-2); line-height:1.6; }

/* Certifications (reuse .ci-badge tiles) */
.ab-certs { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-top:2.5rem; }
@media(max-width:760px){ .ab-certs { grid-template-columns:1fr; } }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE COMPONENTS
   ═══════════════════════════════════════════════════════════ */
.hp-hero-left { text-align:left; padding-bottom:0; }
.hp-hero-left .hp-breadcrumb { justify-content:flex-start; }
.hp-hero-left .hp-hero-title,
.hp-hero-left .hp-hero-sub { margin-inline:0; }
.hp-hero-left .hp-hero-sub { margin-top:1.25rem; }

/* Layout: form + aside */
.hp-contact-grid { display:grid; grid-template-columns:1.45fr 1fr; gap:2rem; align-items:start; }
@media(max-width:880px){ .hp-contact-grid{ grid-template-columns:1fr; } }

.hp-form-card { background:#fff; border:1px solid var(--c-border); border-radius:18px; padding:clamp(1.5rem,3vw,2.25rem); box-shadow:0 18px 48px -28px rgba(20,20,30,.16); }

/* Form */
.hp-form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
@media(max-width:560px){ .hp-form-row{ grid-template-columns:1fr; } }
.hp-field { display:flex; flex-direction:column; margin-bottom:1rem; }
.hp-field label { font-size:.8rem; font-weight:600; color:var(--c-text); margin-bottom:.4rem; }
.hp-field label span { color:var(--c-purple); }
.hp-form input, .hp-form select, .hp-form textarea {
  width:100%; padding:.7rem .85rem; border:1px solid var(--c-border-2); border-radius:.6rem;
  font:400 .9rem var(--font); color:var(--c-text); background:#fff;
  transition:border-color .2s, box-shadow .2s; -webkit-appearance:none; appearance:none;
}
.hp-form select { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238b8d98' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right .85rem center; padding-right:2.2rem; cursor:pointer; }
.hp-form input::placeholder, .hp-form textarea::placeholder { color:var(--c-muted); }
.hp-form input:focus, .hp-form select:focus, .hp-form textarea:focus {
  outline:none; border-color:var(--c-purple); box-shadow:0 0 0 3px var(--c-purple-s);
}
.hp-form textarea { resize:vertical; min-height:130px; line-height:1.55; }
.hp-form .hp-btn { width:100%; margin-top:.4rem; }
.hp-form-micro { font-size:.78rem; color:var(--c-muted); margin-top:.9rem; text-align:center; line-height:1.5; }
.hp-hp { position:absolute !important; left:-9999px !important; width:1px; height:1px; opacity:0; pointer-events:none; }

/* Alerts */
.hp-alert { display:flex; gap:.6rem; align-items:flex-start; padding:.9rem 1.1rem; border-radius:.7rem; font-size:.875rem; line-height:1.5; margin-bottom:1.5rem; }
.hp-alert--ok  { background:#e7f7ee; color:#176a3d; border:1px solid #bce6cd; }
.hp-alert--err { background:#fdecec; color:#a3261f; border:1px solid #f3c9c5; }

/* Contact details aside */
.hp-contact-card { background:#fff; border:1px solid var(--c-border); border-radius:18px; padding:1.5rem; }
.hp-contact-card + .hp-contact-card { margin-top:1.25rem; }
.hp-contact-card h3 { font-size:1.05rem; font-weight:700; margin-bottom:.4rem; }
.hp-contact-card > p { font-size:.85rem; color:var(--c-text-2); margin-bottom:1rem; line-height:1.5; }
.hp-contact-line { display:flex; gap:.8rem; align-items:flex-start; padding:.8rem 0; border-top:1px solid var(--c-border); }
.hp-contact-line:first-of-type { border-top:none; padding-top:.25rem; }
.hp-contact-line .ic { width:36px; height:36px; border-radius:9px; background:#f1edff; display:flex; align-items:center; justify-content:center; font-size:1rem; flex-shrink:0; }
.hp-contact-line b { display:block; font-size:.68rem; color:var(--c-muted); font-weight:700; text-transform:uppercase; letter-spacing:.05em; margin-bottom:.15rem; }
.hp-contact-line a, .hp-contact-line span.v { font-size:.9rem; color:var(--c-text); text-decoration:none; font-weight:500; }
.hp-contact-line a:hover { color:var(--c-purple); }
.hp-contact-aside { position:sticky; top:84px; }
@media(max-width:880px){ .hp-contact-aside{ position:static; } }

/* What happens next (3 steps) */
.hp-steps--3 { grid-template-columns:repeat(3,1fr); }
@media(max-width:760px){ .hp-steps--3{ grid-template-columns:1fr; } }

/* Map */
.hp-map { border-radius:18px; overflow:hidden; border:1px solid var(--c-border); margin-top:3rem; box-shadow:0 18px 48px -30px rgba(20,20,30,.18); }
.hp-map iframe { display:block; width:100%; height:380px; border:0; }
.hp-map-cap { text-align:center; font-size:.85rem; color:var(--c-muted); margin-top:1.1rem; }

/* ═══════════════════════════════════════════════════════════
   MINI HERO — Services / About / Contact
   ═══════════════════════════════════════════════════════════ */
.hp-mini-hero { padding-block:clamp(2rem,3.5vw,2.75rem) clamp(1.25rem,2vw,1.75rem); }
.hp-mini-hero .hp-hero-title { font-size:clamp(1.75rem,3.5vw,2.75rem); max-width:680px; }
.hp-mini-hero .hp-hero-sub { font-size:clamp(.95rem,1.5vw,1.1rem); margin-block:1rem 0; max-width:560px; }
.hp-mini-hero .hp-hero-btns { margin-top:1.5rem; margin-bottom:0; }

/* ═══════════════════════════════════════════════════════════
   PORTFOLIO PAGE
   ═══════════════════════════════════════════════════════════ */
.hp-result-tags { display:flex; flex-wrap:wrap; gap:.4rem; margin-top:1.25rem; padding-top:1rem; border-top:1px solid var(--c-border); }
.hp-result-tags span { font-size:.75rem; font-weight:600; letter-spacing:.04em; color:var(--c-purple); background:rgba(108,71,255,.08); border:1px solid rgba(108,71,255,.18); border-radius:999px; padding:.2rem .65rem; }
.hp-port-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; text-align:center; }
.hp-port-stat { display:flex; flex-direction:column; gap:.25rem; }
.hp-port-num { font-size:clamp(1.5rem,3vw,2rem); font-weight:800; letter-spacing:-.02em; color:var(--c-text); }
.hp-port-lbl { font-size:.8rem; color:var(--c-muted); font-weight:500; }
@media(max-width:640px){
  .hp-port-stats { grid-template-columns:repeat(2,1fr); gap:1.5rem 1rem; }
}

/* Tighter section rhythm where two blocks sit close together */
.hp-section--tight { padding-block:clamp(2.5rem,4vw,3.5rem); }

/* ── Sticky filter bar ── */
.hp-filter-wrap {
  position:sticky; top:60px; z-index:90;
  background:rgba(255,255,255,.88); backdrop-filter:blur(14px);
  border-bottom:1px solid var(--c-border);
  padding-block:.85rem;
}
.hp-filter {
  display:flex; flex-wrap:wrap; justify-content:center; gap:.5rem;
}
.hp-filter-btn {
  font-family:inherit; font-size:.82rem; font-weight:600; line-height:1;
  color:var(--c-text-2); background:var(--c-bg-gray);
  border:1px solid var(--c-border); border-radius:999px;
  padding:.6rem 1.05rem; cursor:pointer; white-space:nowrap;
  transition:color .2s, background .2s, border-color .2s, box-shadow .2s;
}
.hp-filter-btn:hover { color:var(--c-text); border-color:var(--c-border-2); }
.hp-filter-btn.is-active {
  color:#fff; background:var(--c-purple); border-color:var(--c-purple);
  box-shadow:0 8px 20px -8px rgba(108,71,255,.55);
}
@media(max-width:760px){
  .hp-filter {
    flex-wrap:nowrap; justify-content:flex-start;
    overflow-x:auto; -webkit-overflow-scrolling:touch;
    scrollbar-width:none; padding-bottom:2px;
  }
  .hp-filter::-webkit-scrollbar { display:none; }
}

/* ── Project grid ── */
.hp-proj-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
@media(max-width:920px){ .hp-proj-grid { grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .hp-proj-grid { grid-template-columns:1fr; } }

.hp-proj-card {
  display:flex; flex-direction:column;
  background:#fff; border:1px solid var(--c-border); border-radius:16px;
  overflow:hidden; transition:box-shadow .25s, transform .25s, border-color .25s;
}
.hp-proj-card:hover {
  box-shadow:0 18px 44px -20px rgba(20,20,30,.2);
  transform:translateY(-4px); border-color:var(--c-border-2);
}
.hp-proj-card.is-hidden { display:none; }

.hp-proj-thumb {
  position:relative; aspect-ratio:16/10;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, var(--g1,#eef2ff), var(--g2,#dbe4ff));
  border-bottom:1px solid var(--c-border);
}
.hp-proj-thumb img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.hp-proj-emoji { font-size:2.4rem; filter:drop-shadow(0 4px 10px rgba(20,20,40,.12)); }

.hp-proj-body { display:flex; flex-direction:column; flex:1; padding:1.35rem 1.4rem 1.5rem; }
.hp-proj-tags { display:flex; flex-wrap:wrap; gap:.35rem; margin-bottom:.7rem; }
.hp-proj-tags span {
  font-size:.68rem; font-weight:700; letter-spacing:.03em;
  color:var(--c-purple); background:#f1edff; border:1px solid #e4dbff;
  border-radius:999px; padding:.22rem .6rem;
}
.hp-proj-name { font-size:1.15rem; font-weight:700; letter-spacing:-.01em; margin-bottom:.4rem; color:var(--c-text); }
.hp-proj-sum { font-size:.9rem; line-height:1.6; color:var(--c-text-2); flex:1; }
.hp-proj-link {
  display:inline-flex; align-items:center; gap:.3rem; align-self:flex-start;
  margin-top:1.1rem; font-size:.85rem; font-weight:600;
  color:var(--c-purple); text-decoration:none;
}
.hp-proj-link span { transition:transform .2s; }
.hp-proj-link:hover span { transform:translateX(3px); }

.hp-proj-empty {
  text-align:center; max-width:560px; margin:2.5rem auto 0;
  font-size:.92rem; color:var(--c-text-2); line-height:1.6;
}
.hp-proj-empty a { color:var(--c-purple); font-weight:600; text-decoration:none; }
.hp-proj-empty a:hover { text-decoration:underline; }

/* ── Testimonial strip (dark) ── */
.hp-quotes { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; margin-top:3rem; }
@media(max-width:880px){ .hp-quotes { grid-template-columns:1fr; max-width:560px; margin-inline:auto; } }
.hp-quote {
  display:flex; flex-direction:column; gap:.9rem;
  background:var(--c-dark2); border:1px solid var(--c-dark-border);
  border-radius:16px; padding:1.6rem;
}
.hp-quote-stars { color:#ffc107; font-size:.9rem; letter-spacing:.08em; }
.hp-quote blockquote { font-size:.95rem; line-height:1.65; color:#fff; flex:1; }
.hp-quote figcaption { display:flex; flex-direction:column; gap:.1rem; }
.hp-quote figcaption b { font-size:.875rem; color:#fff; font-weight:600; }
.hp-quote figcaption span { font-size:.8rem; color:var(--c-on-dark-m); }

/* ═══════════════════════════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════════════════════════ */
.hp-404-code {
  font-size:clamp(6rem,18vw,10rem); font-weight:900; line-height:1;
  letter-spacing:-.04em;
  background:linear-gradient(135deg, var(--c-purple) 0%, #a78bff 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  margin-bottom:.5rem;
}
.hp-404-links { max-width:580px; margin-inline:auto; }
.hp-404-links-label { font-size:.85rem; color:var(--c-muted); margin-bottom:.85rem; }
.hp-404-chips { display:flex; flex-wrap:wrap; gap:.5rem; justify-content:center; }
.hp-404-chips a {
  font-size:.82rem; font-weight:600; color:var(--c-text-2);
  background:#fff; border:1px solid var(--c-border-2);
  border-radius:999px; padding:.4rem .95rem; text-decoration:none;
  transition:color .2s, border-color .2s, background .2s;
}
.hp-404-chips a:hover { color:var(--c-purple); border-color:#c4b5fd; background:#faf8ff; }

/* ═══════════════════════════════════════════════════════════
   FREE CONSULTATION PAGE COMPONENTS
   ═══════════════════════════════════════════════════════════ */

/* Hero trust line */
.hp-consult-trust {
  display:inline-flex; align-items:center; gap:.5rem;
  font-size:.88rem; font-weight:600; color:var(--c-text-2);
  background:#fff; border:1px solid var(--c-border-2);
  border-radius:999px; padding:.45rem 1.15rem;
  margin-top:1.35rem;
  box-shadow:0 1px 3px rgba(0,0,0,.04);
}
.hp-consult-trust span { color:var(--c-purple); font-size:1rem; }

/* Calendly inline embed wrapper */
.hp-calendly-wrap {
  border:1px solid var(--c-border); border-radius:18px; overflow:hidden;
  box-shadow:0 20px 52px -30px rgba(20,20,30,.18);
}
.hp-calendly-wrap .calendly-inline-widget { display:block; }

/* Value bullet list (Section 5) */
.hp-value-list {
  list-style:none; display:flex; flex-direction:column; gap:1.05rem; margin-top:1.75rem;
}
.hp-value-list li {
  display:flex; gap:.75rem;
  font-size:.9375rem; color:var(--c-text-2); line-height:1.6;
}
.hp-value-list li .ic {
  width:30px; height:30px; border-radius:9px; background:#f1edff;
  display:flex; align-items:center; justify-content:center;
  font-size:.9rem; flex-shrink:0; margin-top:.1rem;
}

/* Who card */
.hp-who-card {
  max-width:620px; margin-inline:auto;
  background:#fff; border:1px solid var(--c-border); border-radius:20px;
  padding:2rem 2.25rem;
  box-shadow:0 20px 52px -28px rgba(20,20,30,.16);
  display:flex; gap:1.75rem; align-items:flex-start;
}
@media(max-width:560px){
  .hp-who-card { flex-direction:column; align-items:center; text-align:center; padding:1.5rem; }
}
.hp-who-avatar {
  width:80px; height:80px; border-radius:18px; flex-shrink:0;
  background:linear-gradient(135deg,var(--c-purple),#8b6bff);
  color:#fff; display:flex; align-items:center; justify-content:center;
  font-size:2rem; font-weight:800;
  box-shadow:0 10px 26px -10px rgba(108,71,255,.55);
}
.hp-who-card .nm { font-size:1.25rem; font-weight:700; letter-spacing:-.01em; margin-bottom:.15rem; }
.hp-who-card .rl { font-size:.82rem; color:var(--c-purple); font-weight:600; margin-bottom:.8rem; }
.hp-who-card p { font-size:.9rem; color:var(--c-text-2); line-height:1.65; }
.hp-who-note {
  max-width:580px; margin:1.25rem auto 0;
  text-align:center; font-size:.84rem; color:var(--c-muted); line-height:1.6;
}

/* Trust cert strip (Section 8) */
.hp-consult-certs {
  display:flex; justify-content:center; gap:1.25rem; flex-wrap:wrap; margin-top:1.5rem;
}
.hp-consult-cert {
  display:flex; align-items:center; gap:.9rem;
  padding:1rem 1.5rem; border:1px solid var(--c-border); border-radius:12px;
  background:#fff; box-shadow:0 10px 28px -18px rgba(20,20,30,.12);
  transition:transform .25s, box-shadow .25s;
}
.hp-consult-cert:hover { transform:translateY(-2px); box-shadow:0 14px 36px -18px rgba(20,20,30,.16); }
.hp-consult-cert .mark {
  width:44px; height:44px; border-radius:11px; background:var(--c-bg-gray);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:1.5rem;
}
.hp-consult-cert .inf { display:flex; flex-direction:column; gap:.12rem; }
.hp-consult-cert .inf strong { font-size:.88rem; font-weight:700; color:var(--c-text); }
.hp-consult-cert .inf span { font-size:.74rem; color:var(--c-muted); }

/* ═══════════════════════════════════════════════════════════
   LEGAL PAGES — Privacy Policy, Cookie Policy, etc.
   ═══════════════════════════════════════════════════════════ */
.hp-legal { max-width:780px; margin-inline:auto; }
.hp-legal-updated { font-size:.875rem; color:var(--c-muted); background:var(--c-bg-gray); border:1px solid var(--c-border); border-radius:8px; padding:.75rem 1.1rem; margin-bottom:2.25rem; }
.hp-legal h2 { font-size:.875rem; font-weight:700; letter-spacing:.07em; text-transform:uppercase; color:var(--c-purple); margin-block:2.75rem .8rem; padding-bottom:.55rem; border-bottom:2px solid var(--c-border); }
.hp-legal > h2:first-of-type { margin-top:0; }
.hp-legal h3 { font-size:.9rem; font-weight:700; color:var(--c-text); margin-block:1.5rem .5rem; }
.hp-legal p { font-size:.9375rem; line-height:1.8; color:var(--c-text-2); margin-bottom:.875rem; }
.hp-legal ul { padding-left:1.4rem; margin-block:.25rem 1rem; }
.hp-legal ul li { font-size:.9375rem; line-height:1.75; color:var(--c-text-2); margin-bottom:.35rem; }
.hp-legal a { color:var(--c-purple); text-decoration:none; }
.hp-legal a:hover { text-decoration:underline; }
.hp-legal-table { width:100%; border-collapse:collapse; font-size:.875rem; margin-block:.75rem 1.75rem; }
.hp-legal-table th { text-align:left; font-weight:600; font-size:.78rem; letter-spacing:.055em; text-transform:uppercase; color:var(--c-text-2); padding:.65rem 1rem; background:var(--c-bg-gray); border:1px solid var(--c-border); }
.hp-legal-table td { padding:.7rem 1rem; border:1px solid var(--c-border); color:var(--c-text-2); vertical-align:top; line-height:1.65; }
.hp-legal-table tbody tr:nth-child(even) td { background:rgba(108,71,255,.03); }
.hp-legal-table--def td:first-child { font-weight:600; color:var(--c-text); width:32%; white-space:nowrap; }
.hp-legal-contact { list-style:none; padding-left:0; margin-block:.5rem 1.25rem; }
.hp-legal-contact li { font-size:.9375rem; line-height:1.75; color:var(--c-text-2); margin-bottom:.35rem; }
@media(max-width:640px){
  .hp-legal-table--def td:first-child { white-space:normal; }
  .hp-legal-table th,.hp-legal-table td { padding:.55rem .75rem; }
}

/* ═══════════════════════════════════════════════════════════
   BLOG — Listing page & Archive
   ═══════════════════════════════════════════════════════════ */

/* Post grid */
.hp-blog-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.75rem;
  margin-top:3rem;
}

/* Post card */
.hp-post-card {
  background:#fff;
  border:1px solid var(--c-border);
  border-radius:18px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:box-shadow .2s, transform .2s;
}
.hp-post-card:hover {
  box-shadow:0 8px 32px rgba(108,71,255,.1);
  transform:translateY(-3px);
}

/* Card image */
.hp-post-card-img {
  display:block;
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  background:linear-gradient(135deg,#f1edff,#e4d9ff);
  flex-shrink:0;
}
.hp-post-card-img img { width:100%; height:100%; object-fit:cover; display:block; }
.hp-post-card-img-ph {
  width:100%; height:100%; min-height:160px;
  display:flex; align-items:center; justify-content:center;
  font-size:2.5rem;
}

/* Card body */
.hp-post-card-body { padding:1.4rem; display:flex; flex-direction:column; flex:1; }

/* Category chip */
.hp-post-cat {
  display:inline-block;
  font-size:.7rem; font-weight:700; letter-spacing:.07em; text-transform:uppercase;
  color:var(--c-purple); background:#f1edff;
  border-radius:999px; padding:.25rem .7rem;
  margin-bottom:.85rem; text-decoration:none;
}
.hp-post-cat:hover { background:#ebe6ff; }

/* Post title */
.hp-post-card-title { font-size:1.075rem; font-weight:700; line-height:1.35; color:var(--c-text); margin:0 0 .6rem; }
.hp-post-card-title a { text-decoration:none; color:inherit; }
.hp-post-card-title a:hover { color:var(--c-purple); }

/* Excerpt */
.hp-post-card-excerpt { font-size:.875rem; color:var(--c-text-2); line-height:1.65; margin:0 0 1.1rem; flex:1; }

/* Meta */
.hp-post-card-meta { font-size:.78rem; color:var(--c-muted); display:flex; align-items:center; gap:.45rem; flex-wrap:wrap; }
.hp-post-card-meta .sep { opacity:.4; }

/* Read more */
.hp-post-card-read {
  margin-top:.85rem; font-size:.83rem; font-weight:600;
  color:var(--c-purple); text-decoration:none;
  display:inline-flex; align-items:center; gap:.3rem;
}
.hp-post-card-read:hover { opacity:.8; }

/* Pagination */
.hp-pagination { display:flex; justify-content:center; gap:.5rem; margin-top:3.5rem; flex-wrap:wrap; }
.hp-pagination .page-numbers {
  display:inline-flex; align-items:center; justify-content:center;
  min-width:2.25rem; height:2.25rem; padding:0 .75rem;
  border-radius:10px; font-size:.875rem; font-weight:600;
  border:1px solid var(--c-border); background:#fff;
  color:var(--c-text); text-decoration:none; transition:all .15s;
}
.hp-pagination a.page-numbers:hover { border-color:var(--c-purple); color:var(--c-purple); }
.hp-pagination .page-numbers.current { background:var(--c-purple); color:#fff; border-color:var(--c-purple); }
.hp-pagination .page-numbers.dots { border-color:transparent; background:none; cursor:default; }

/* ═══════════════════════════════════════════════════════════
   SINGLE POST
   ═══════════════════════════════════════════════════════════ */

.hp-single-cat {
  display:inline-block;
  font-size:.73rem; font-weight:700; letter-spacing:.07em; text-transform:uppercase;
  color:var(--c-purple); background:#f1edff;
  border-radius:999px; padding:.3rem .85rem; text-decoration:none;
}
.hp-single-cat:hover { background:#ebe6ff; }

.hp-single-meta { display:flex; align-items:center; gap:.6rem; font-size:.875rem; color:var(--c-text-2); flex-wrap:wrap; }

.hp-single-feat { border-radius:20px; overflow:hidden; aspect-ratio:16/7; }
.hp-single-feat img { width:100%; height:100%; object-fit:cover; display:block; }

/* Prose article body */
.hp-prose { max-width:720px; margin:3rem auto; font-size:1.0625rem; line-height:1.8; color:var(--c-text); }
.hp-prose h2 { font-size:1.55rem; font-weight:800; color:var(--c-text); margin:2.5rem 0 .9rem; line-height:1.25; }
.hp-prose h3 { font-size:1.2rem; font-weight:700; color:var(--c-text); margin:2rem 0 .7rem; }
.hp-prose h4 { font-size:1rem; font-weight:700; color:var(--c-text); margin:1.5rem 0 .5rem; }
.hp-prose p { margin:0 0 1.35rem; }
.hp-prose ul,.hp-prose ol { padding-left:1.5rem; margin:0 0 1.35rem; }
.hp-prose li { margin-bottom:.4rem; }
.hp-prose blockquote {
  border-left:4px solid var(--c-purple); margin:1.75rem 0; padding:1rem 1.5rem;
  background:#faf8ff; border-radius:0 14px 14px 0; font-style:italic; color:var(--c-text-2);
}
.hp-prose img { max-width:100%; border-radius:14px; margin:1.5rem 0; }
.hp-prose a { color:var(--c-purple); }
.hp-prose code {
  font-family:ui-monospace,'Fira Code',monospace; font-size:.875em;
  background:#f1edff; color:#5b3fc4; padding:.15em .45em; border-radius:5px;
}
.hp-prose pre {
  background:#1a1025; color:#e2d9f3; border-radius:14px; padding:1.5rem;
  overflow-x:auto; font-size:.875rem; line-height:1.7; margin:1.75rem 0;
}
.hp-prose pre code { background:none; color:inherit; padding:0; border-radius:0; }
.hp-prose table { width:100%; border-collapse:collapse; margin:1.75rem 0; font-size:.9rem; }
.hp-prose th { background:#f1edff; font-weight:700; padding:.75rem 1rem; text-align:left; }
.hp-prose td { padding:.65rem 1rem; border-bottom:1px solid var(--c-border); }
.hp-prose hr { border:none; border-top:1px solid var(--c-border); margin:2.5rem 0; }
.hp-prose figure { margin:1.75rem 0; }
.hp-prose figcaption { font-size:.8rem; color:var(--c-muted); text-align:center; margin-top:.5rem; }

/* Post prev/next navigation */
.hp-post-nav { max-width:720px; margin:2.5rem auto 4rem; display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.hp-post-nav-link {
  border:1px solid var(--c-border); border-radius:14px; padding:1.1rem 1.25rem;
  text-decoration:none; color:inherit; display:block;
  transition:border-color .15s, box-shadow .15s; background:#fff;
}
.hp-post-nav-link:hover { border-color:#c4b5fd; box-shadow:0 4px 16px rgba(108,71,255,.08); }
.hp-post-nav-link.next { text-align:right; }
.hp-post-nav-label { font-size:.75rem; color:var(--c-muted); display:block; margin-bottom:.35rem; }
.hp-post-nav-title { font-size:.875rem; font-weight:700; color:var(--c-text); line-height:1.35; }

/* Back to blog */
.hp-back-blog {
  display:inline-flex; align-items:center; gap:.4rem;
  font-size:.875rem; font-weight:600; color:var(--c-purple); text-decoration:none;
}
.hp-back-blog:hover { opacity:.8; }

/* Responsive */
@media(max-width:900px){
  .hp-blog-grid { grid-template-columns:1fr 1fr; }
  .hp-post-nav { grid-template-columns:1fr; }
  .hp-post-nav-link.next { text-align:left; }
}
@media(max-width:600px){
  .hp-blog-grid { grid-template-columns:1fr; }
  .hp-prose { font-size:1rem; }
  .hp-single-feat { aspect-ratio:4/3; }
}
