@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');

:root {
  --purple:      #60046c;
  --purple-h:    #4d0358;
  --purple-lt:   #f5e6f7;
  --purple-mid:  #d9a8e0;
  --purple-deep: #3a0242;
  --orange:      #f41149;
  --orange-h:    #d40040;
  --orange-lt:   #fde6ec;
  --white:       #FFFFFF;
  --off-white:   #fafafa;
  --ink:         #0a0a0a;
  --ink-2:       #1a1a1a;
  --ink-3:       #555555;
  --border:      #e8e0eb;
  --border-l:    #f2ecf4;
  --font:        'Plus Jakarta Sans', sans-serif;
  --ease:        cubic-bezier(.4,0,.2,1);
  --ease-out:    cubic-bezier(0,.55,.45,1);
}

::selection { background: var(--purple); color: #fff; }
::-moz-selection { background: var(--purple); color: #fff; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--white); color: var(--ink); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

.wrap    { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.wrap-sm { max-width: 760px;  margin: 0 auto; padding: 0 24px; }

.section-label { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--purple); background: var(--purple-lt); border: 1px solid var(--purple-mid); padding: 5px 14px; border-radius: 100px; }
.section-h { font-size: clamp(1.75rem,3.5vw,2.5rem); font-weight: 800; color: var(--ink); letter-spacing: -.03em; line-height: 1.2; }
.section-h em { font-style: normal; color: var(--purple); }
.section-sub { font-size: 1rem; color: var(--ink-3); line-height: 1.7; font-weight: 400; max-width: 540px; }
.section-header { text-align: center; margin-bottom: 52px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.section-header .section-sub { text-align: center; }

.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font); font-weight: 700; font-size: .9rem; border-radius: 8px; padding: 14px 26px; cursor: pointer; border: none; letter-spacing: -.01em; transition: all .2s var(--ease); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 2px 12px rgba(244,17,73,.28); }
.btn-primary:hover { background: var(--orange-h); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(244,17,73,.38); }
.btn-purple { background: var(--purple); color: #fff; box-shadow: 0 2px 12px rgba(96,4,108,.25); }
.btn-purple:hover { background: var(--purple-h); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(96,4,108,.35); }
.btn-outline { background: transparent; color: var(--purple); border: 2px solid var(--purple); }
.btn-outline:hover { background: var(--purple); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink-2); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--purple); color: var(--purple); }
.btn-white { background: #fff; color: var(--purple); box-shadow: 0 4px 20px rgba(0,0,0,.12); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 3px 14px rgba(37,211,102,.28); }
.btn-wa:hover { background: #1EB858; transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: .84rem; }

nav { position: fixed; top: 16px; left: 50%; transform: translateX(-50%); z-index: 200; background: rgba(255,255,255,.94); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: 100px; transition: box-shadow .3s; will-change: box-shadow; width: calc(100% - 48px); max-width: 900px; }
nav.scrolled { box-shadow: 0 8px 32px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06); }
.nav-inner { padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 58px; }
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-text { font-weight: 800; font-size: .98rem; color: var(--ink); letter-spacing: -.02em; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: .87rem; font-weight: 500; color: var(--ink-2); transition: color .2s; position: relative; padding-bottom: 2px; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--purple); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.nav-links a:hover { color: var(--purple); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--purple); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 10px; }

.ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.ham span { display: block; width: 22px; height: 2px; background: var(--ink-2); border-radius: 2px; transition: .3s; }
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-nav { display: none; position: fixed; top: 90px; left: 50%; transform: translateX(-50%); width: calc(100% - 48px); max-width: 900px; z-index: 199; background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 12px 20px 20px; flex-direction: column; gap: 0; box-shadow: 0 8px 32px rgba(0,0,0,.12); }
.mob-nav.open { display: flex; }
.mob-nav a { font-weight: 600; font-size: .98rem; color: var(--ink-2); padding: 13px 0; border-bottom: 1px solid var(--border-l); transition: color .2s; }
.mob-nav a:last-child { border: none; }
.mob-nav a:hover, .mob-nav a.active { color: var(--purple); }
.mob-cta { margin-top: 14px; text-align: center; background: var(--orange) !important; color: #fff !important; border-radius: 8px; padding: 15px !important; border: none !important; font-weight: 700; }

.page-hero { padding: 110px 0 64px; background: var(--off-white); border-bottom: 1px solid var(--border); text-align: center; }
.page-hero .breadcrumb { justify-content: center; margin-bottom: 16px; }
.page-hero .section-label { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(2rem,4.5vw,3.2rem); font-weight: 800; color: var(--ink); letter-spacing: -.035em; line-height: 1.15; margin-bottom: 16px; }
.page-hero h1 em { font-style: normal; color: var(--purple); }
.page-hero p { font-size: 1.05rem; color: var(--ink-2); line-height: 1.7; max-width: 560px; margin: 0 auto; }

.section { padding: 88px 0; }
.section-alt { background: var(--off-white); }

.card { background: #fff; border: 1.5px solid var(--border); border-radius: 14px; padding: 28px; transition: border-color .25s, transform .3s, box-shadow .3s; position: relative; will-change: transform; }
.card:hover { border-color: rgba(96,4,108,.45); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(96,4,108,.12), 0 0 0 1px rgba(96,4,108,.18); }
.card-icon { width: 46px; height: 46px; border-radius: 10px; background: var(--purple-lt); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 18px; flex-shrink: 0; }
.card-icon.orange { background: var(--orange-lt); }
.card-title { font-weight: 800; font-size: 1rem; color: var(--ink); margin-bottom: 8px; }
.card-sub { font-size: .8rem; font-weight: 600; color: var(--purple); margin-bottom: 12px; }
.card-sub.orange { color: var(--orange); }
.card-text { font-size: .88rem; color: var(--ink-2); line-height: 1.65; }
.chip { display: inline-block; font-size: .7rem; padding: 3px 10px; border-radius: 100px; background: var(--off-white); color: var(--ink-3); border: 1px solid var(--border); font-weight: 500; }

.cta-band { background: var(--purple); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -80px; right: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.04); pointer-events: none; }
.cta-band::after { content: ''; position: absolute; bottom: -60px; left: -40px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.03); pointer-events: none; }
.cta-band .section-label { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.2); margin-bottom: 16px; }
.cta-band h2 { font-size: clamp(1.75rem,3.5vw,2.6rem); font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1.15; margin-bottom: 14px; }
.cta-band p { font-size: 1rem; color: rgba(255,255,255,.72); max-width: 480px; margin: 0 auto 32px; line-height: 1.7; }
.cta-band .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-band .note { margin-top: 20px; font-size: .82rem; color: rgba(255,255,255,.45); }
.cta-band .note a { color: rgba(255,255,255,.65); }
.cta-band .note a:hover { color: #fff; }

footer { background: var(--ink); padding: 56px 0 28px; color: rgba(255,255,255,.5); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.ft-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.ft-desc { font-size: .84rem; line-height: 1.65; max-width: 240px; }
.ft-socials { display: flex; gap: 10px; margin-top: 18px; }
.ft-social { width: 34px; height: 34px; border-radius: 7px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; font-size: .9rem; transition: background .2s; color: rgba(255,255,255,.75); }
.ft-social:hover { background: rgba(96,4,108,.6); color: #fff; }
.ft-col-h { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 14px; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.ft-links a { font-size: .85rem; color: rgba(255,255,255,.48); transition: color .2s; }
.ft-links a:hover { color: #fff; }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; display: flex; justify-content: space-between; font-size: .78rem; flex-wrap: wrap; gap: 10px; }
.ft-bottom a { color: rgba(255,255,255,.32); }
.ft-bottom a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.no-js .reveal { opacity: 1; transform: none; }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; } .d5 { transition-delay: .40s; }

hr.divider { border: none; height: 1px; background: var(--border); margin: 0; }
.next-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff;
  width: 56px; height: 56px; border-radius: 100px;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  font-weight: 700; font-size: .88rem;
  transition: width .3s var(--ease), box-shadow .25s, transform .25s, padding .3s, gap .3s, justify-content .1s;
  overflow: hidden; text-decoration: none; gap: 0;
}
.wa-float:hover {
  width: 190px; padding: 0 20px 0 16px; gap: 10px;
  transform: translateY(-3px); justify-content: flex-start;
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
}
.wa-float svg { flex-shrink: 0; }
.wa-label { white-space: nowrap; opacity: 0; width: 0; transition: opacity .2s .1s, width .3s; pointer-events: none; overflow: hidden; }
.wa-float:hover .wa-label { opacity: 1; width: auto; }

.wa-tooltip {
  position: absolute; bottom: 68px; right: 0;
  background: var(--ink); color: #fff;
  font-size: .75rem; font-weight: 600;
  padding: 6px 12px; border-radius: 8px;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transform: translateY(4px);
  transition: opacity .2s, transform .2s;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.wa-tooltip::after {
  content: ''; position: absolute; top: 100%; right: 18px;
  border: 5px solid transparent; border-top-color: var(--ink);
}
.wa-float-wrap:hover .wa-tooltip { opacity: 1; transform: translateY(0); }
.wa-float-wrap { position: fixed; bottom: 28px; right: 28px; z-index: 999; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }

@media (max-width: 900px) and (min-width: 601px) {
  .detail-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .ham { display: flex; }
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-band .actions { flex-direction: column; align-items: center; }
  .ft-bottom { flex-direction: column; }
  .next-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .audit-banner { align-items: center; }
  .audit-banner > div:last-child { align-items: center; width: 100%; }
  .audit-banner > div:last-child .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .page-hero { padding: 100px 0 48px; }
  .wa-float-wrap { bottom: 20px; right: 20px; }
}

@keyframes reveal-fallback { to { opacity: 1; transform: none; } }
.reveal { animation: reveal-fallback 1s 1.2s forwards; }
.reveal.in { animation: none; opacity: 1; transform: none; }


#hero { padding:130px 0 88px; background:var(--white); position:relative; overflow:hidden; contain:layout style; }
.hero-bg1 { position:absolute; top:-140px; right:-160px; width:600px; height:600px; border-radius:50%; background:radial-gradient(circle,rgba(96,4,108,.09) 0%,transparent 70%); pointer-events:none; }
.hero-bg2 { position:absolute; bottom:-80px; left:-80px; width:360px; height:360px; border-radius:50%; background:radial-gradient(circle,rgba(244,17,73,.06) 0%,transparent 70%); pointer-events:none; }
.hero-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.hero-eyebrow { margin-bottom:18px; }
.hero-h1 { font-size:clamp(2.2rem,4.5vw,3.5rem); font-weight:800; color:var(--ink); letter-spacing:-.035em; line-height:1.1; margin-bottom:20px; }
.hero-h1 em { font-style:normal; color:var(--purple); }
.hero-p { font-size:1.05rem; color:var(--ink-2); line-height:1.72; margin-bottom:32px; max-width:460px; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:36px; }
.hero-trust { display:flex; align-items:center; gap:20px; padding-top:20px; border-top:1px solid var(--border); flex-wrap:wrap; }
.trust-pill { display:flex; align-items:center; gap:7px; font-size:.82rem; color:var(--ink-3); font-weight:500; }
.trust-pill::before { content:''; width:7px; height:7px; border-radius:50%; background:var(--purple); opacity:.5; flex-shrink:0; }
.hero-visual { display:flex; flex-direction:column; gap:14px; }
.hv-card { background:#fff; border:1px solid var(--border); border-radius:16px; padding:22px 24px; box-shadow:0 4px 24px rgba(96,4,108,.08); }
.hv-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:18px; }
.hv-title { font-size:.78rem; font-weight:700; color:var(--ink-3); text-transform:uppercase; letter-spacing:.08em; }
.live-dot { display:flex; align-items:center; gap:6px; font-size:.72rem; font-weight:600; color:#1A8544; }
.live-dot::before { content:''; width:7px; height:7px; border-radius:50%; background:#34C759; flex-shrink:0; animation:blink 1.8s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hv-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-bottom:18px; }
.hv-metric { background:var(--off-white); border-radius:10px; padding:12px 10px; text-align:center; }
.hv-metric-v { font-size:1.4rem; font-weight:800; color:var(--ink); letter-spacing:-.03em; line-height:1; }
.hv-metric-v.purple { color:var(--purple); }
.hv-metric-v.orange { color:var(--orange); }
.hv-metric-v.green  { color:#1A8544; }
.hv-metric-l { font-size:.7rem; color:var(--ink-3); margin-top:5px; font-weight:500; }
.bar-row { margin-top:4px; }
.bar-label { display:flex; justify-content:space-between; font-size:.75rem; color:var(--ink-3); margin-bottom:5px; font-weight:500; }
.bar-track { height:7px; background:var(--border-l); border-radius:99px; overflow:hidden; }
.bar-fill { height:100%; border-radius:99px; width:0; transition:width 1.4s var(--ease); }
.bar-purple { background:linear-gradient(90deg,var(--purple),#9b0aaf); }
.bar-orange { background:linear-gradient(90deg,var(--orange),#ff4d7a); }
.hv-mini { display:flex; gap:12px; }
.hv-mini-card { flex:1; background:#fff; border:1px solid var(--border); border-radius:12px; padding:16px 12px; text-align:center; box-shadow:0 2px 8px rgba(96,4,108,.04); }
.hv-mini-ico { font-size:1.1rem; margin-bottom:8px; }
.hv-mini-v { font-size:1.1rem; font-weight:800; color:var(--ink); letter-spacing:-.02em; }
.hv-mini-l { font-size:.7rem; color:var(--ink-3); margin-top:3px; }
#platforms { padding:40px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); background:var(--off-white); }
.platforms-label { text-align:center; font-size:.72rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--ink-3); margin-bottom:22px; }
.platforms-row { display:flex; align-items:center; justify-content:center; gap:12px; flex-wrap:wrap; }
.plt-pill { display:flex; align-items:center; gap:7px; padding:9px 18px; border-radius:100px; background:#fff; border:1px solid var(--border); font-size:.82rem; font-weight:600; color:var(--ink-3); transition:border-color .2s,color .2s; }
.plt-pill:hover { border-color:var(--purple); color:var(--purple); }
.svcs-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.svc-chips { display:flex; gap:6px; flex-wrap:wrap; margin-top:14px; }
.who-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.who-card { background:#fff; border:1px solid var(--border); border-radius:12px; padding:24px 20px; text-align:center; transition:border-color .25s,transform .25s,box-shadow .25s; }
.who-card:hover { border-color:var(--purple); transform:translateY(-3px); box-shadow:0 8px 24px rgba(96,4,108,.1); }
.who-icon { font-size:2rem; margin-bottom:12px; }
.who-title { font-weight:700; font-size:.93rem; color:var(--ink); margin-bottom:6px; }
.who-desc { font-size:.82rem; color:var(--ink-3); line-height:1.55; }
.why-strip { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.why-item { background:#fff; border:1px solid var(--border); border-radius:12px; padding:24px; transition:border-color .25s,transform .25s; }
.why-item:hover { border-color:var(--purple); transform:translateY(-2px); }
.why-ico { font-size:1.5rem; margin-bottom:12px; }
.why-t { font-weight:700; font-size:.93rem; color:var(--ink); margin-bottom:7px; }
.why-d { font-size:.86rem; color:var(--ink-2); line-height:1.6; }

/* Team */
.team-section { background:var(--off-white); padding:88px 0; }
.team-inner { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.team-left .section-label { margin-bottom:20px; }
.team-left h2 { font-size:clamp(1.75rem,3.2vw,2.4rem); font-weight:800; color:var(--ink); letter-spacing:-.035em; line-height:1.15; margin-bottom:16px; }
.team-left h2 em { font-style:normal; color:var(--purple); }
.team-left p { font-size:.95rem; color:var(--ink-2); line-height:1.72; margin-bottom:28px; max-width:380px; }
.team-left-link { display:inline-flex; align-items:center; gap:8px; font-size:.88rem; font-weight:700; color:var(--purple); transition:gap .2s; }
.team-left-link:hover { gap:14px; }
.team-photos { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.team-photo-wrap { position:relative; border-radius:16px; overflow:hidden; border:1px solid var(--border); }
.team-photo-wrap img { width:100%; height:340px; object-fit:cover; display:block; transition:transform .4s; }
.team-photo-wrap:hover img { transform:scale(1.03); }
.team-photo-info { position:absolute; bottom:0; left:0; right:0; padding:48px 16px 16px; background:linear-gradient(to top,rgba(10,2,14,.82) 0%,transparent 100%); }
.team-photo-name { font-size:.95rem; font-weight:800; color:#fff; letter-spacing:-.01em; margin-bottom:3px; }
.team-photo-role { font-size:.63rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.65); }

/* Projects */
.projects-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.project-card { background:#fff; border:1px solid var(--border); border-radius:14px; padding:0; overflow:hidden; transition:border-color .25s,transform .3s,box-shadow .3s; display:flex; flex-direction:column; gap:0; }
.project-card:hover { border-color:rgba(96,4,108,.3); transform:translateY(-4px); box-shadow:0 10px 28px rgba(96,4,108,.09); }
.project-tag { display:inline-flex; align-items:center; gap:6px; font-size:.68rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--purple); background:var(--purple-lt); border:1px solid var(--purple-mid); border-radius:100px; padding:4px 11px; width:fit-content; }
.project-name { font-size:.97rem; font-weight:800; color:var(--ink); letter-spacing:-.02em; }
.project-desc { font-size:.84rem; color:var(--ink-2); line-height:1.6; }
.project-img { width:100%; height:180px; object-fit:cover; display:block; background:var(--off-white); }
.project-img-placeholder { width:100%; height:180px; background:linear-gradient(135deg,var(--purple-lt),var(--off-white)); display:flex; align-items:center; justify-content:center; color:var(--ink-3); font-size:.8rem; font-weight:600; }
.project-body { padding:18px 18px 20px; display:flex; flex-direction:column; gap:8px; }
.project-link { display:inline-flex; align-items:center; gap:5px; font-size:.75rem; font-weight:700; color:var(--purple); margin-top:2px; transition:opacity .2s; }
.project-link:hover { opacity:.7; }
.project-link svg { flex-shrink:0; }

/* Reviews */
.reviews-grid { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.review-card { background:#fff; border:1px solid var(--border); border-radius:16px; padding:28px 24px; transition:border-color .25s,transform .3s,box-shadow .3s; }
.review-card:hover { border-color:rgba(96,4,108,.3); transform:translateY(-4px); box-shadow:0 10px 28px rgba(96,4,108,.09); }
.review-quote-ico { color:var(--purple); opacity:.2; font-size:3rem; line-height:1; margin-bottom:4px; font-family:Georgia,serif; }
.review-text { font-size:.9rem; color:var(--ink-2); line-height:1.72; margin-bottom:18px; font-style:italic; }
.review-stars { display:flex; gap:2px; margin-bottom:12px; color:#F5A623; font-size:.95rem; }
.review-author { display:flex; align-items:center; gap:12px; }
.review-avatar { width:40px; height:40px; border-radius:50%; background:linear-gradient(135deg,var(--purple),#9b0aaf); display:flex; align-items:center; justify-content:center; color:#fff; font-weight:800; font-size:.88rem; flex-shrink:0; }
.review-author-name { font-weight:700; font-size:.88rem; color:var(--ink); }
.review-author-biz { font-size:.76rem; color:var(--ink-3); margin-top:2px; }

/* Nav glass override */
nav {
  background: rgba(255,255,255,0.55) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border-bottom: 1px solid rgba(255,255,255,0.45) !important;
  box-shadow: 0 1px 0 rgba(96,4,108,.06), 0 4px 24px rgba(96,4,108,.06) !important;
}
nav.scrolled {
  background: rgba(255,255,255,0.72) !important;
  box-shadow: 0 1px 0 rgba(96,4,108,.08), 0 8px 32px rgba(96,4,108,.1) !important;
}
.card::after { display:none !important; }

@media(max-width:1024px){ .svcs-grid{grid-template-columns:1fr 1fr} .who-grid{grid-template-columns:1fr 1fr} .why-strip{grid-template-columns:1fr 1fr} }
@media(max-width:768px){ .hero-grid{grid-template-columns:1fr;gap:40px} .hero-visual{display:none} .svcs-grid{grid-template-columns:1fr} .hero-trust{gap:12px} }
@media(max-width:480px){ .hero-h1{font-size:2rem} .hero-actions{flex-direction:column} .hero-actions .btn{width:100%;justify-content:center} .who-grid{grid-template-columns:1fr} .why-strip{grid-template-columns:1fr} }
@media(max-width:900px){ .team-inner{grid-template-columns:1fr;gap:40px} .team-photo-wrap img{height:260px} .projects-grid{grid-template-columns:1fr 1fr} .reviews-grid{grid-template-columns:1fr} }
@media(max-width:600px){ .projects-grid{grid-template-columns:1fr} .team-photos{gap:10px} .team-photo-wrap img{height:210px} }

/* ═══════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════ */
.story-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.story-visual { background:var(--off-white); border:1px solid var(--border); border-radius:20px; padding:32px; }
.story-card { background:#fff; border:1px solid var(--border); border-radius:12px; padding:18px 20px; margin-bottom:12px; display:flex; align-items:flex-start; gap:14px; }
.story-card:last-child { margin-bottom:0; }
.story-card-ico { font-size:1.3rem; flex-shrink:0; margin-top:2px; }
.story-card-t { font-weight:700; font-size:.9rem; color:var(--ink); margin-bottom:4px; }
.story-card-d { font-size:.82rem; color:var(--ink-3); line-height:1.55; }
.story-content .section-label { margin-bottom:16px; }
.story-content h2 { font-size:clamp(1.6rem,3vw,2.2rem); font-weight:800; color:var(--ink); letter-spacing:-.03em; line-height:1.2; margin-bottom:16px; }
.story-content p { font-size:.95rem; color:var(--ink-2); line-height:1.72; margin-bottom:16px; }
.founder-block { background:var(--purple-lt); border:1.5px solid var(--purple-mid); border-radius:18px; padding:40px 44px; display:flex; align-items:flex-start; gap:36px; flex-wrap:wrap; }
.founder-text h3 { font-size:1.1rem; font-weight:800; color:var(--ink); margin-bottom:8px; }
.founder-text p { font-size:.9rem; color:var(--ink-2); line-height:1.65; margin:0 0 20px; max-width:580px; }
.founder-people { display:flex; gap:14px; margin-bottom:22px; flex-wrap:wrap; }
.founder-person { display:flex; align-items:center; gap:14px; background:#fff; border:1px solid var(--purple-mid); border-radius:14px; padding:12px 20px 12px 12px; box-shadow:0 2px 12px rgba(96,4,108,.07); transition:box-shadow .2s,transform .2s; }
.founder-person:hover { box-shadow:0 6px 20px rgba(96,4,108,.13); transform:translateY(-2px); }
.founder-person img { width:52px; height:52px; border-radius:50%; object-fit:cover; flex-shrink:0; border:2px solid var(--purple-mid); }
.founder-person-name { font-size:.93rem; font-weight:800; color:var(--ink); line-height:1.2; }
.founder-person-role { font-size:.72rem; font-weight:600; color:var(--purple); margin-top:3px; letter-spacing:.01em; }
.founder-promise { display:flex; flex-wrap:wrap; gap:8px; }
.fp-pill { font-size:.78rem; font-weight:600; color:var(--purple); background:#fff; border:1px solid var(--purple-mid); border-radius:100px; padding:5px 14px; }
#process { scroll-margin-top:80px; }
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; }
.process-steps::before { content:''; position:absolute; top:28px; left:calc(12.5%); right:calc(12.5%); height:2px; background:repeating-linear-gradient(90deg,var(--purple-mid) 0,var(--purple-mid) 6px,transparent 6px,transparent 14px); z-index:0; }
.ps { display:flex; flex-direction:column; align-items:center; text-align:center; padding:0 16px; position:relative; z-index:1; }
.ps-num { width:56px; height:56px; border-radius:50%; background:var(--purple-lt); border:2px solid var(--purple-mid); display:flex; align-items:center; justify-content:center; font-weight:800; font-size:1rem; color:var(--purple); margin-bottom:18px; transition:.25s; flex-shrink:0; }
.ps:hover .ps-num { background:var(--purple); color:#fff; border-color:var(--purple); }
.ps-title { font-weight:700; font-size:.93rem; color:var(--ink); margin-bottom:8px; }
.ps-desc { font-size:.83rem; color:var(--ink-3); line-height:1.6; }
#why { scroll-margin-top:80px; }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.value-card { background:#fff; border:1px solid var(--border); border-radius:12px; padding:26px; transition:border-color .25s,transform .25s; }
.value-card:hover { border-color:var(--purple); transform:translateY(-2px); }
.value-ico { font-size:1.5rem; margin-bottom:14px; }
.value-t { font-weight:700; font-size:.93rem; color:var(--ink); margin-bottom:8px; }
.value-d { font-size:.86rem; color:var(--ink-2); line-height:1.6; }
.beliefs-list { display:flex; flex-direction:column; gap:16px; max-width:680px; margin:0 auto; }
.belief { display:flex; align-items:flex-start; gap:18px; background:#fff; border:1px solid var(--border); border-radius:12px; padding:20px 22px; }
.belief-num { width:36px; height:36px; border-radius:50%; flex-shrink:0; background:var(--purple-lt); color:var(--purple); font-weight:800; font-size:.85rem; display:flex; align-items:center; justify-content:center; }
.belief-t { font-weight:700; font-size:.93rem; color:var(--ink); margin-bottom:5px; }
.belief-d { font-size:.85rem; color:var(--ink-2); line-height:1.6; }
/* Team cards on about page */
.team-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; max-width:860px; margin:0 auto; }
.team-card { background:#fff; border:1.5px solid var(--border); border-radius:20px; overflow:hidden; transition:border-color .3s,transform .35s,box-shadow .35s; position:relative; }
.team-card:hover { border-color:rgba(96,4,108,.35); transform:translateY(-6px); box-shadow:0 20px 48px rgba(96,4,108,.12); }
.team-card-photo { width:100%; aspect-ratio:3/4; object-fit:cover; object-position:center top; display:block; }
.team-card-body { padding:24px 26px 28px; }
.team-card-name { font-size:1.15rem; font-weight:800; color:var(--ink); letter-spacing:-.025em; margin-bottom:4px; }
.team-card-role { font-size:.78rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--purple); margin-bottom:12px; }
.team-card-bio { font-size:.87rem; color:var(--ink-2); line-height:1.65; margin-bottom:16px; }
.team-card-skills { display:flex; flex-wrap:wrap; gap:7px; }
.team-skill { font-size:.73rem; font-weight:600; color:var(--ink-3); background:var(--off-white); border:1px solid var(--border); border-radius:100px; padding:4px 12px; }
.team-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg,var(--purple),#9b0aaf); transform:scaleX(0); transform-origin:left; transition:transform .4s; }
.team-card:hover::before { transform:scaleX(1); }

@media(max-width:900px){ .story-grid{grid-template-columns:1fr;gap:36px} .process-steps{grid-template-columns:1fr 1fr;gap:28px} .process-steps::before{display:none} .values-grid{grid-template-columns:1fr 1fr} .founder-block{grid-template-columns:1fr;padding:28px 24px} .founder-avatars{justify-content:center} }
@media(max-width:600px){ .values-grid{grid-template-columns:1fr} .process-steps{grid-template-columns:1fr} .founder-photo-wrap{width:110px} .founder-photo-wrap img{width:110px;height:140px} .team-grid{grid-template-columns:1fr} }

/* ═══════════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════════ */
.svc-cards-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.svc-card{background:#fff;border:2px solid var(--border);border-radius:20px;padding:36px 30px 32px;display:flex;flex-direction:column;transition:border-color .3s,transform .35s,box-shadow .35s,background .3s;position:relative;}
.svc-card:hover{transform:translateY(-6px);box-shadow:0 20px 48px rgba(96,4,108,.12);}
.svc-card.meta:hover{border-color:transparent;background:linear-gradient(#fff,#fff) padding-box,linear-gradient(135deg,#0668E1,#1877F2,#F0005A) border-box;}
.svc-card.google:hover{border-color:transparent;background:linear-gradient(#fff,#fff) padding-box,linear-gradient(135deg,#4285F4,#34A853,#FBBC05,#EA4335) border-box;}
.svc-card.web:hover{border-color:transparent;background:linear-gradient(#fff,#fff) padding-box,linear-gradient(135deg,var(--purple),var(--orange)) border-box;}
.svc-card-icon{width:56px;height:56px;border-radius:14px;display:flex;align-items:center;justify-content:center;margin-bottom:22px;flex-shrink:0;}
.meta-bg{background:linear-gradient(135deg,#EBF1FD,#D6E4FF);}
.google-bg{background:linear-gradient(135deg,#FEF9E7,#FEF0D1);}
.web-bg{background:var(--purple-lt);}
.svc-card-label{font-size:.7rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--ink-3);margin-bottom:8px;}
.svc-card-label.meta{color:#1877F2;}.svc-card-label.google{color:#4285F4;}.svc-card-label.web{color:var(--purple);}
.svc-card-title{font-size:1.3rem;font-weight:800;color:var(--ink);letter-spacing:-.03em;line-height:1.2;margin-bottom:12px;}
.svc-card-desc{font-size:.9rem;color:var(--ink-2);line-height:1.7;margin-bottom:22px;}
.svc-card-bullets{list-style:none;display:flex;flex-direction:column;gap:9px;margin-bottom:28px;flex:1;}
.svc-card-bullets li{display:flex;align-items:flex-start;gap:10px;font-size:.86rem;color:var(--ink-2);line-height:1.45;}
.bullet-icon{flex-shrink:0;margin-top:1px;}
.svc-card.meta .bullet-icon{color:#1877F2;}.svc-card.google .bullet-icon{color:#34A853;}.svc-card.web .bullet-icon{color:var(--purple);}
.svc-card-actions{display:flex;gap:10px;margin-top:auto;}
.svc-card-actions .btn{flex:1;justify-content:center;font-size:.84rem;padding:12px 16px;}
.reporting-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
.report-card{background:#fff;border:1px solid var(--border);border-radius:12px;padding:22px;display:flex;align-items:flex-start;gap:14px;}
.report-ico{width:40px;height:40px;border-radius:10px;background:var(--purple-lt);display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--purple);}
.report-t{font-weight:700;font-size:.93rem;color:var(--ink);margin-bottom:6px;}
.report-d{font-size:.84rem;color:var(--ink-2);line-height:1.6;}
.audit-banner{background:linear-gradient(135deg,var(--purple-lt),var(--orange-lt));border:1px solid var(--purple-mid);border-radius:16px;padding:32px 36px;display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;}
.audit-banner h3{font-size:1.15rem;font-weight:800;color:var(--ink);margin-bottom:8px;display:flex;align-items:center;gap:10px;}
.audit-banner p{font-size:.9rem;color:var(--ink-2);max-width:460px;line-height:1.6;}
.audit-badge{font-size:1.8rem;font-weight:800;color:var(--purple);flex-shrink:0;}
@media(max-width:900px){.svc-cards-grid{grid-template-columns:1fr;gap:22px;}.reporting-grid{grid-template-columns:1fr;}}
@media(max-width:600px){.audit-banner{flex-direction:column;text-align:center;}.svc-card-actions{flex-direction:column;}}

/* ═══════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════ */
.contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:52px; align-items:start; }
.contact-info { display:flex; flex-direction:column; gap:16px; }
.contact-card { background:#fff; border:1px solid var(--border); border-radius:14px; padding:22px; display:flex; align-items:flex-start; gap:16px; transition:border-color .2s,transform .2s,box-shadow .2s; text-decoration:none; }
.contact-card:hover { border-color:var(--purple); transform:translateX(4px); box-shadow:0 6px 20px rgba(96,4,108,.08); }
.cc-ico { width:44px; height:44px; border-radius:10px; background:var(--purple-lt); display:flex; align-items:center; justify-content:center; font-size:1.2rem; flex-shrink:0; }
.cc-ico.orange { background:var(--orange-lt); }
.cc-ico.green  { background:#E6F9EE; }
.cc-t  { font-weight:700; font-size:.9rem; color:var(--ink); margin-bottom:4px; }
.cc-v  { font-size:.86rem; color:var(--purple); font-weight:600; }
.cc-v.orange { color:var(--orange); }
.cc-v.green  { color:#1A8544; }
.cc-d  { font-size:.8rem; color:var(--ink-3); margin-top:4px; line-height:1.5; }
.quick-actions { display:flex; flex-direction:column; gap:10px; margin-top:8px; }
.quick-btn { display:flex; align-items:center; justify-content:center; gap:10px; padding:14px; border-radius:10px; font-weight:700; font-size:.9rem; font-family:var(--font); transition:.2s; border:none; cursor:pointer; text-decoration:none; }
.qb-calendly { background:var(--purple); color:#fff; box-shadow:0 3px 14px rgba(96,4,108,.28); }
.qb-calendly:hover { background:var(--purple-h); transform:translateY(-2px); box-shadow:0 6px 20px rgba(96,4,108,.38); }
.qb-wa { background:#25D366; color:#fff; box-shadow:0 3px 14px rgba(37,211,102,.28); }
.qb-wa:hover { background:#1EB858; transform:translateY(-2px); }
.avail-badge { display:flex; align-items:center; gap:8px; background:var(--purple-lt); border:1px solid var(--purple-mid); border-radius:100px; padding:8px 16px; font-size:.78rem; color:var(--ink-3); font-weight:500; width:fit-content; }
.avail-dot { width:8px; height:8px; border-radius:50%; background:#34C759; flex-shrink:0; animation:blink-dot 2s infinite; }
@keyframes blink-dot { 0%,100%{opacity:1} 50%{opacity:.3} }
.form-card { background:#fff; border:1.5px solid var(--border); border-radius:18px; padding:36px 32px; box-shadow:0 4px 24px rgba(96,4,108,.06); }
.form-card h3 { font-size:1.2rem; font-weight:800; color:var(--ink); margin-bottom:6px; letter-spacing:-.02em; }
.form-sub { font-size:.85rem; color:var(--ink-3); margin-bottom:26px; line-height:1.55; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:14px; }
.form-group label { font-size:.82rem; font-weight:600; color:var(--ink-2); }
.form-group input,.form-group select,.form-group textarea { font-family:var(--font); font-size:.9rem; color:var(--ink); background:var(--off-white); border:1.5px solid var(--border); border-radius:9px; padding:12px 14px; transition:border-color .2s,box-shadow .2s; outline:none; width:100%; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color:var(--purple); box-shadow:0 0 0 3px rgba(96,4,108,.12); background:#fff; }
.form-group textarea { resize:vertical; min-height:120px; }
.form-group select { cursor:pointer; }
.form-submit { width:100%; padding:15px; background:var(--orange); color:#fff; border:none; border-radius:9px; cursor:pointer; font-family:var(--font); font-weight:700; font-size:.95rem; transition:background .2s,transform .2s,box-shadow .2s; box-shadow:0 3px 14px rgba(244,17,73,.3); }
.form-submit:hover { background:var(--orange-h); transform:translateY(-2px); box-shadow:0 6px 20px rgba(244,17,73,.4); }
#formFeedback { display:none; margin-top:14px; background:#E6F9EE; border:1px solid #A3E4B7; border-radius:8px; padding:12px 16px; font-size:.88rem; color:#1A8544; font-weight:500; }
.form-note { text-align:center; margin-top:16px; font-size:.78rem; color:var(--ink-3); }
.field-err { font-size:.76rem; color:#C0392B; font-weight:500; margin-top:3px; display:none; }
.form-group.has-err input,.form-group.has-err select,.form-group.has-err textarea { border-color:#E74C3C !important; box-shadow:0 0 0 3px rgba(231,76,60,.12) !important; background:#fff9f9; }
.form-group.has-err .field-err { display:block; }
.form-group.is-ok input,.form-group.is-ok select,.form-group.is-ok textarea { border-color:#34C759 !important; }
.map-placeholder { background:var(--off-white); border:1px solid var(--border); border-radius:14px; padding:32px; text-align:center; color:var(--ink-3); }
.map-ico { font-size:2rem; margin-bottom:12px; }
.map-placeholder h4 { font-weight:700; color:var(--ink); margin-bottom:6px; }
.map-placeholder p { font-size:.85rem; line-height:1.6; }
@media(max-width:900px){ .contact-grid{grid-template-columns:1fr;} .form-row{grid-template-columns:1fr;} }
@media(max-width:480px){ .form-card{padding:24px 20px;} }

/* ═══════════════════════════════════════════════
   DETAIL PAGES (google-ads, meta-ads, web-dev)
═══════════════════════════════════════════════ */
.detail-hero{padding:110px 0 72px;border-bottom:1px solid var(--border);}
.detail-hero-inner{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;}
.detail-hero-badge{display:inline-flex;align-items:center;gap:8px;background:#fff;border-radius:100px;padding:7px 16px 7px 10px;font-size:.78rem;font-weight:700;margin-bottom:20px;}
.detail-hero-badge-ico{width:28px;height:28px;border-radius:50%;display:flex;align-items:center;justify-content:center;}
.detail-hero h1{font-size:clamp(2rem,4vw,3rem);font-weight:800;color:var(--ink);letter-spacing:-.035em;line-height:1.1;margin-bottom:18px;}
.detail-hero p{font-size:1rem;color:var(--ink-2);line-height:1.72;margin-bottom:28px;max-width:480px;}
.detail-hero-actions{display:flex;gap:12px;flex-wrap:wrap;}
.detail-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;}
.dstat{background:#fff;border:1.5px solid var(--border);border-radius:14px;padding:20px 18px;text-align:center;}
.dstat-v{font-size:1.7rem;font-weight:800;letter-spacing:-.04em;line-height:1;margin-bottom:6px;}
.dstat-l{font-size:.78rem;color:var(--ink-3);font-weight:500;line-height:1.4;}

/* Google Ads hero */
.detail-hero.google-hero{background:linear-gradient(135deg,#FEF9E7 0%,#F7F5FB 60%,#fff 100%);}
.detail-hero.google-hero .detail-hero-badge{border-color:#FDE68A;color:#4285F4;}
.detail-hero.google-hero .detail-hero-badge-ico{background:linear-gradient(135deg,#FEF9E7,#FEF0D1);}
.detail-hero.google-hero .detail-hero h1 em,.google-hero h1 em{color:#4285F4;}
.detail-hero.google-hero .dstat-v,.google-dstat-v{color:#4285F4;}
.detail-h.google-h em{color:#4285F4;}
.process-num.google-num{background:linear-gradient(135deg,#FEF9E7,#FEF0D1);color:#4285F4;}
.include-ico.google-ico{background:linear-gradient(135deg,#FEF9E7,#FEF0D1);color:#4285F4;}
.who-ico-detail.google-ico{background:linear-gradient(135deg,#FEF9E7,#FEF0D1);color:#4285F4;}
.faq-item.open .faq-q.google-q{color:#4285F4;}
.faq-item.open .faq-chevron.google-chev{color:#4285F4;}

/* Meta Ads hero */
.detail-hero.meta-hero{background:linear-gradient(135deg,#EBF1FD 0%,#F7F5FB 60%,#fff 100%);}
.detail-hero.meta-hero .detail-hero-badge{border-color:#D6E4FF;color:#1877F2;}
.detail-hero.meta-hero .detail-hero-badge-ico{background:linear-gradient(135deg,#EBF1FD,#D6E4FF);}
.meta-dstat-v,.detail-hero.meta-hero .dstat-v{color:#1877F2;}
.detail-h.meta-h em{color:#1877F2;}
.process-num.meta-num{background:linear-gradient(135deg,#EBF1FD,#D6E4FF);color:#1877F2;}
.include-ico.meta-ico{background:linear-gradient(135deg,#EBF1FD,#D6E4FF);color:#1877F2;}
.who-ico-detail.meta-ico{background:linear-gradient(135deg,#EBF1FD,#D6E4FF);color:#1877F2;}
.faq-item.open .faq-q.meta-q{color:#1877F2;}
.faq-item.open .faq-chevron.meta-chev{color:#1877F2;}

/* Web Dev hero */
.detail-hero.web-hero{background:linear-gradient(135deg,var(--purple-lt) 0%,var(--off-white) 60%,#fff 100%);}
.detail-hero.web-hero .detail-hero-badge{border-color:var(--purple-mid);color:var(--purple);}
.detail-hero.web-hero .detail-hero-badge-ico{background:var(--purple-lt);}
.web-dstat-v,.detail-hero.web-hero .dstat-v{color:var(--purple);}
.detail-h em{color:var(--purple);}

/* Shared detail styles */
.detail-section{padding:80px 0;}
.detail-section-alt{background:var(--off-white);}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:start;}
.detail-h{font-size:clamp(1.5rem,2.8vw,2rem);font-weight:800;color:var(--ink);letter-spacing:-.03em;line-height:1.2;margin-bottom:14px;}
.detail-p{font-size:.95rem;color:var(--ink-2);line-height:1.72;margin-bottom:18px;}
.process-list{display:flex;flex-direction:column;gap:0;}
.process-item{display:flex;gap:18px;padding:20px 0;border-bottom:1px solid var(--border-l);}
.process-item:last-child{border-bottom:none;}
.process-num{width:38px;height:38px;border-radius:10px;background:var(--purple-lt);color:var(--purple);font-weight:800;font-size:.88rem;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.process-t{font-weight:700;font-size:.93rem;color:var(--ink);margin-bottom:5px;}
.process-d{font-size:.84rem;color:var(--ink-3);line-height:1.6;}
.includes-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.include-item{display:flex;align-items:flex-start;gap:10px;background:#fff;border:1px solid var(--border);border-radius:10px;padding:14px 16px;}
.include-ico{width:32px;height:32px;border-radius:8px;background:var(--purple-lt);color:var(--purple);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.include-t{font-weight:600;font-size:.86rem;color:var(--ink);line-height:1.35;}
.include-d{font-size:.78rem;color:var(--ink-3);margin-top:2px;line-height:1.45;}
.who-grid-detail{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;}
.who-item-detail{display:flex;align-items:flex-start;gap:12px;background:#fff;border:1px solid var(--border);border-radius:12px;padding:18px;}
.who-ico-detail{width:38px;height:38px;border-radius:10px;background:var(--purple-lt);color:var(--purple);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.who-t-detail{font-weight:700;font-size:.88rem;color:var(--ink);margin-bottom:4px;}
.who-d-detail{font-size:.8rem;color:var(--ink-3);line-height:1.5;}
.faq-list{display:flex;flex-direction:column;gap:0;max-width:720px;margin:0 auto;}
.faq-item{border-bottom:1px solid var(--border);}
.faq-q{display:flex;justify-content:space-between;align-items:center;padding:18px 0;cursor:pointer;font-weight:700;font-size:.95rem;color:var(--ink);gap:16px;user-select:none;}
.faq-chevron{flex-shrink:0;color:var(--ink-3);transition:transform .3s;}
.faq-item.open .faq-chevron{transform:rotate(180deg);color:var(--purple);}
.faq-item.open .faq-q{color:var(--purple);}
.faq-a{font-size:.88rem;color:var(--ink-2);line-height:1.7;max-height:0;overflow:hidden;transition:max-height .35s ease,padding .3s;}
.faq-item.open .faq-a{max-height:300px;padding-bottom:18px;}
.breadcrumb{display:flex;align-items:center;gap:8px;font-size:.8rem;color:var(--ink-3);margin-bottom:24px;flex-wrap:wrap;}
.breadcrumb a{color:var(--ink-3);transition:color .2s;}
.breadcrumb a:hover{color:var(--purple);}
.breadcrumb-sep{color:var(--border);}
.tech-stack{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px;}
.tech-pill{display:flex;align-items:center;gap:7px;padding:8px 16px;border-radius:100px;background:#fff;border:1.5px solid var(--border);font-size:.82rem;font-weight:600;color:var(--ink-2);}

@media(max-width:900px){.detail-hero-inner{grid-template-columns:1fr;gap:36px;}.two-col{grid-template-columns:1fr;gap:36px;}.includes-grid{grid-template-columns:1fr;}.who-grid-detail{grid-template-columns:1fr;}.detail-stats{grid-template-columns:1fr 1fr;}}
@media(max-width:600px){.detail-hero{padding:100px 0 52px;}.detail-stats{grid-template-columns:1fr;}}