/* WebPro temporary static-page styles. Scoped to .webpro-static so Elementor header/footer remain independent. */
.webpro-static{
  --white:#FFFFFF; --off:#F8F7F5; --off2:#F2F0ED;
  --border:#E8E4DF; --border2:#D5CFC8;
  --ink:#0D0D0D; --ink2:#1A1A1A; --mid:#4A4540;
  --dim:#7A746E; --dimmer:#9E9994;
  --rose:#E8185A; --orange:#F06B2F; --amber:#F5A623;
  --grad:linear-gradient(135deg,#E8185A 0%,#F06B2F 50%,#F5A623 100%);
  --grad-r:linear-gradient(135deg,#F5A623 0%,#F06B2F 50%,#E8185A 100%);
  --grad-soft:linear-gradient(135deg,rgba(232,24,90,.07) 0%,rgba(240,107,47,.05) 50%,rgba(245,166,35,.03) 100%);
  --shadow-sm:0 1px 3px rgba(0,0,0,.06),0 1px 2px rgba(0,0,0,.04);
  --shadow-md:0 4px 16px rgba(0,0,0,.08),0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:0 16px 48px rgba(0,0,0,.10),0 4px 16px rgba(0,0,0,.06);
  --shadow-xl:0 32px 80px rgba(0,0,0,.12),0 8px 24px rgba(0,0,0,.06);
  --font-disp:"Bricolage Grotesque",sans-serif;
  --font-body:"DM Sans",sans-serif;
  --font-mono:"DM Mono",monospace;
  --ease:cubic-bezier(.16,1,.3,1);
  --ease2:cubic-bezier(.4,0,.2,1);
  --r:16px; --r-lg:24px; --r-xl:32px;
}
.webpro-static, .webpro-static *, .webpro-static *::before, .webpro-static *::after{box-sizing:border-box;margin:0;padding:0}
.webpro-static{scroll-behavior:smooth;font-size:16px;-webkit-font-smoothing:antialiased}
.webpro-static{font-family:var(--font-body);background:var(--white);color:var(--ink);cursor:auto;overflow-x:hidden;line-height:1.65}
.webpro-static a{text-decoration:none;color:inherit}
.webpro-static img{max-width:100%;display:block}
.webpro-static ::selection{background:var(--rose);color:#fff}
/* CURSOR */
.webpro-static #c-dot{position:fixed;width:7px;height:7px;background:var(--rose);border-radius:50%;pointer-events:none;z-index:99999;transform:translate(-50%,-50%);mix-blend-mode:multiply}
.webpro-static #c-ring{position:fixed;width:32px;height:32px;border:1.5px solid rgba(232,24,90,.5);border-radius:50%;pointer-events:none;z-index:99998;transform:translate(-50%,-50%);transition:width .35s var(--ease),height .35s var(--ease),border-color .25s}
.webpro-static:has(a:hover) #c-ring, .webpro-static:has(button:hover) #c-ring{width:52px;height:52px;border-color:var(--rose);background:rgba(232,24,90,.06)}
.webpro-static #sp{position:fixed;top:0;left:0;height:2px;background:var(--grad);z-index:10001;transition:width .1s}
.webpro-static #pt{position:fixed;inset:0;background:var(--white);z-index:9999;pointer-events:none;opacity:0;transition:opacity .2s}
.webpro-static #pt.on{opacity:1;pointer-events:all}
.webpro-static .page{display:none;min-height:100vh}
.webpro-static .page.active{display:block}
/* NAV */
.webpro-static nav{position:fixed;top:0;left:0;right:0;z-index:1000;height:68px;padding:0 5%;display:flex;align-items:center;justify-content:space-between;background:rgba(255,255,255,.88);backdrop-filter:blur(24px) saturate(180%);-webkit-backdrop-filter:blur(24px) saturate(180%);border-bottom:1px solid rgba(232,180,160,.12);transition:background .3s,box-shadow .3s}
.webpro-static nav.scrolled{background:rgba(255,255,255,.97);box-shadow:0 1px 0 var(--border),0 4px 24px rgba(0,0,0,.06)}
.webpro-static .logo{display:flex;align-items:center;cursor:pointer;height:38px}
.webpro-static .logo img{height:100%;width:auto;object-fit:contain;max-width:180px}
.webpro-static .nav-links{display:flex;align-items:center;gap:1.6rem;list-style:none}
.webpro-static .nav-links a{font-size:.82rem;font-weight:500;letter-spacing:.01em;color:var(--mid);transition:color .2s}
.webpro-static .nav-links a:hover, .webpro-static .nav-links a.active{color:var(--ink)}
.webpro-static .nav-cta{padding:9px 22px;background:var(--grad);color:#fff!important;border-radius:100px;font-weight:600!important;font-size:.82rem!important;transition:opacity .2s,transform .2s,box-shadow .2s!important;box-shadow:0 2px 12px rgba(232,24,90,.28)}
.webpro-static .nav-cta:hover{opacity:.9;transform:translateY(-1px);box-shadow:0 4px 20px rgba(232,24,90,.38)!important}
.webpro-static .hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px}
.webpro-static .hamburger span{display:block;width:22px;height:1.5px;background:var(--ink);border-radius:2px;transition:.3s}
.webpro-static .mob-menu{display:none;position:fixed;inset:0;background:var(--white);z-index:999;flex-direction:column;align-items:center;justify-content:center;gap:1.75rem}
.webpro-static .mob-menu.open{display:flex}
.webpro-static .mob-menu a{font-family:var(--font-disp);font-size:1.8rem;font-weight:700;color:var(--ink);transition:color .2s}
.webpro-static .mob-menu a:hover{color:var(--rose)}
.webpro-static .mob-close{position:absolute;top:24px;right:5%;font-size:1.8rem;cursor:pointer;color:var(--ink)}
/* REVEAL */
.webpro-static .reveal{opacity:0;transform:translateY(28px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.webpro-static .reveal.visible{opacity:1;transform:none}
.webpro-static .rd1{transition-delay:.08s}
.webpro-static .rd2{transition-delay:.16s}
.webpro-static .rd3{transition-delay:.24s}
.webpro-static .rd4{transition-delay:.32s}
.webpro-static .rd5{transition-delay:.40s}
/* TYPOGRAPHY */
.webpro-static h1, .webpro-static h2, .webpro-static h3, .webpro-static h4{font-family:var(--font-disp);letter-spacing:-.03em;line-height:1.1;color:var(--ink)}
.webpro-static .xl{font-size:clamp(2.8rem,6vw,6.5rem);font-weight:800;line-height:1.05;padding-bottom:.1em}
.webpro-static .lg{font-size:clamp(2rem,4vw,3.8rem);font-weight:800;line-height:1.1;padding-bottom:.08em}
.webpro-static .md{font-size:clamp(1.6rem,3vw,2.6rem);font-weight:700;line-height:1.15;padding-bottom:.06em}
.webpro-static .sm{font-size:clamp(1.1rem,2vw,1.5rem);font-weight:600;line-height:1.25}
.webpro-static .grad-text{background:var(--grad);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.webpro-static .body-lg{font-size:1.05rem;line-height:1.75;color:var(--mid);font-weight:400}
.webpro-static .body-md{font-size:.92rem;line-height:1.7;color:var(--mid)}
.webpro-static .body-sm{font-size:.84rem;line-height:1.65;color:var(--dim)}
.webpro-static .label{font-family:var(--font-mono);font-size:.7rem;letter-spacing:.1em;text-transform:uppercase;color:var(--rose)}
/* CHIP */
.webpro-static .chip{display:inline-flex;align-items:center;gap:7px;padding:7px 16px;border-radius:100px;border:1.5px solid rgba(232,24,90,.2);background:rgba(232,24,90,.05);margin-bottom:1.5rem}
.webpro-static .chip-dot{width:6px;height:6px;background:var(--rose);border-radius:50%;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.4;transform:scale(1.5)}}
/* BUTTONS */
.webpro-static .btn{display:inline-flex;align-items:center;gap:8px;padding:14px 32px;border-radius:100px;font-family:var(--font-body);font-size:.95rem;font-weight:600;cursor:pointer;border:none;transition:transform .25s var(--ease),box-shadow .25s,opacity .2s;position:relative;overflow:hidden;letter-spacing:.01em}
.webpro-static .btn:hover{transform:translateY(-2px)}
.webpro-static .btn-primary{background:var(--grad);color:#fff;box-shadow:0 4px 20px rgba(232,24,90,.3)}
.webpro-static .btn-primary:hover{box-shadow:0 8px 32px rgba(232,24,90,.4)}
.webpro-static .btn-outline{background:transparent;color:var(--ink);border:1.5px solid var(--border2)}
.webpro-static .btn-outline:hover{border-color:var(--rose);color:var(--rose);background:rgba(232,24,90,.04)}
.webpro-static .btn-dark{background:var(--ink);color:#fff}
.webpro-static .btn-dark:hover{background:var(--ink2);box-shadow:0 8px 32px rgba(0,0,0,.2)}
.webpro-static .btn-wa{background:#25D366;color:#fff;box-shadow:0 4px 16px rgba(37,211,102,.25)}
.webpro-static .btn-wa:hover{background:#1ab756;box-shadow:0 8px 28px rgba(37,211,102,.4)}
/* CARDS */
.webpro-static .card{background:var(--white);border:1px solid var(--border);border-radius:var(--r-lg);padding:2rem;position:relative;overflow:hidden;transition:transform .35s var(--ease),box-shadow .35s,border-color .25s}
.webpro-static .card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);border-color:rgba(232,24,90,.2)}
.webpro-static .card-feat{background:var(--off);border-color:transparent}
.webpro-static .card-feat:hover{background:var(--white)}
/* SECTION */
.webpro-static section{padding:96px 5%;position:relative}
.webpro-static .grid-2{display:grid;grid-template-columns:1fr 1fr;gap:3rem}
.webpro-static .grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.webpro-static .grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.webpro-static .section-head{max-width:680px;margin-bottom:3.5rem}
/* WHATSAPP ENHANCED */
.webpro-static #wa{position:fixed;bottom:28px;right:28px;z-index:9000;display:flex;flex-direction:column;align-items:flex-end;gap:10px}
.webpro-static .wa-discount{background:var(--grad);color:#fff;padding:8px 16px;border-radius:100px;font-size:.72rem;font-weight:700;white-space:nowrap;box-shadow:0 4px 16px rgba(232,24,90,.4);animation:discFlicker 2.5s ease-in-out infinite;letter-spacing:.02em;text-align:center}
@keyframes discFlicker{
  0%,100%{opacity:1;transform:scale(1)}
  30%{opacity:.7;transform:scale(.97)}
  60%{opacity:1;transform:scale(1.02)}
  80%{opacity:.85;transform:scale(.99)}
}
.webpro-static .wa-row{display:flex;align-items:center;gap:10px}
.webpro-static .wa-tip{background:var(--ink);color:#fff;padding:8px 16px;border-radius:100px;font-size:.78rem;font-weight:500;white-space:nowrap;opacity:0;transform:translateX(8px);transition:all .25s;pointer-events:none}
.webpro-static #wa:hover .wa-tip{opacity:1;transform:translateX(0)}
.webpro-static .wa-btn{width:60px;height:60px;background:#25D366;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 6px 24px rgba(37,211,102,.45);cursor:pointer;position:relative}
.webpro-static .wa-btn::before{content:"";position:absolute;inset:0;border-radius:50%;background:#25D366;animation:waRipple 2s ease-out infinite}
.webpro-static .wa-btn::after{content:"";position:absolute;inset:0;border-radius:50%;background:#25D366;animation:waRipple 2s ease-out .6s infinite}
@keyframes waRipple{0%{transform:scale(1);opacity:.7}100%{transform:scale(2);opacity:0}}
.webpro-static .wa-btn svg{width:28px;height:28px;fill:#fff;position:relative;z-index:1;animation:waWiggle 3s ease-in-out infinite}
@keyframes waWiggle{0%,100%{transform:rotate(0) scale(1)}20%{transform:rotate(-12deg) scale(1.1)}40%{transform:rotate(12deg) scale(1.1)}60%{transform:rotate(-6deg) scale(1.05)}80%{transform:rotate(6deg) scale(1.05)}}
/* URGENCY STRIP */
.webpro-static .urgency{background:var(--ink);color:#fff;padding:12px 5%;text-align:center;font-size:.8rem;letter-spacing:.04em;font-family:var(--font-mono);position:relative;overflow:hidden}
.webpro-static .urgency::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,transparent,rgba(240,107,47,.2),transparent);animation:shine 3s infinite}
@keyframes shine{from{transform:translateX(-100%)}to{transform:translateX(100%)}}
/* HERO */
.webpro-static .hero{min-height:100vh;display:flex;flex-direction:column;justify-content:center;padding-top:120px;position:relative;overflow:hidden}
/* HERO BG: Animated dot grid instead of checkered lines */
.webpro-static .hero-mesh{position:absolute;inset:0;background:radial-gradient(ellipse 70% 60% at 70% 50%,rgba(245,166,35,.07) 0%,transparent 60%),radial-gradient(ellipse 50% 40% at 10% 80%,rgba(232,24,90,.05) 0%,transparent 60%);pointer-events:none}
.webpro-static .hero-dots{position:absolute;inset:0;background-image:radial-gradient(circle,rgba(232,24,90,.18) 1.2px,transparent 1.2px);background-size:36px 36px;mask-image:radial-gradient(ellipse 80% 80% at 50% 50%,black 0%,transparent 80%);opacity:.5;pointer-events:none;animation:dotMove 20s linear infinite}
@keyframes dotMove{0%{background-position:0 0}100%{background-position:36px 36px}}
.webpro-static .hero-inner{position:relative;z-index:1;max-width:700px}
.webpro-static .hero-trust{display:flex;align-items:center;gap:12px;margin-top:2rem;font-size:.82rem;color:var(--dim)}
.webpro-static .trust-avs{display:flex}
.webpro-static .trust-av{width:30px;height:30px;border-radius:50%;border:2px solid var(--white);margin-right:-8px;overflow:hidden;background:var(--grad);display:flex;align-items:center;justify-content:center;font-size:.65rem;font-weight:700;color:#fff}
.webpro-static .hero-ctas{display:flex;gap:12px;flex-wrap:wrap;margin-top:2.5rem}
.webpro-static .hero-visual{position:absolute;right:0;top:50%;transform:translateY(-50%);width:42%;z-index:1;display:grid;grid-template-columns:1fr 1fr;gap:14px;padding-right:2%}
.webpro-static .stat-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r);padding:1.5rem;box-shadow:var(--shadow-md);animation:statfloat 6s ease-in-out infinite}
.webpro-static .stat-card:nth-child(2){animation-delay:1.5s}
.webpro-static .stat-card:nth-child(3){animation-delay:3s}
.webpro-static .stat-card:nth-child(4){animation-delay:4.5s}
@keyframes statfloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
.webpro-static .stat-num{font-family:var(--font-disp);font-size:2rem;font-weight:800;background:var(--grad);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;line-height:1}
.webpro-static .stat-lbl{font-size:.72rem;color:var(--dim);margin-top:5px;font-family:var(--font-mono);text-transform:uppercase;letter-spacing:.06em;line-height:1.4}
/* TICKER */
.webpro-static .ticker{overflow:hidden;padding:18px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:var(--off)}
.webpro-static .ticker-t{display:flex;gap:3rem;white-space:nowrap;animation:tick 28s linear infinite}
@keyframes tick{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.webpro-static .ticker-i{display:flex;align-items:center;gap:12px;font-family:var(--font-mono);font-size:.75rem;letter-spacing:.06em;text-transform:uppercase;color:var(--dimmer)}
.webpro-static .ticker-sep{color:var(--rose)}
/* COUNTERS */
.webpro-static .counters{display:grid;grid-template-columns:repeat(4,1fr);background:var(--ink);border-radius:var(--r-xl);overflow:hidden}
.webpro-static .ctr-item{padding:3rem 2rem;text-align:center;position:relative}
.webpro-static .ctr-item:not(:last-child)::after{content:"";position:absolute;right:0;top:25%;height:50%;width:1px;background:rgba(255,255,255,.1)}
.webpro-static .ctr-num{font-family:var(--font-disp);font-size:clamp(2rem,4vw,3.5rem);font-weight:800;background:var(--grad);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;display:block;line-height:1.15;padding-bottom:.05em}
.webpro-static .ctr-lbl{font-family:var(--font-mono);font-size:.7rem;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.4);margin-top:8px;line-height:1.5}
/* SERVICE ICON */
.webpro-static .svc-icon{width:52px;height:52px;border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:1.4rem;margin-bottom:1.25rem;background:var(--grad-soft);border:1px solid rgba(232,24,90,.12)}
.webpro-static .svc-arrow{display:inline-flex;align-items:center;gap:6px;font-size:.82rem;font-weight:600;color:var(--rose);margin-top:1.25rem;font-family:var(--font-mono);letter-spacing:.04em;transition:gap .2s}
.webpro-static .card:hover .svc-arrow{gap:10px}
/* AI SECTION */
.webpro-static .ai-wrap{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.webpro-static .ai-vis{position:relative;height:480px}
.webpro-static .ai-orb{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:160px;height:160px;border-radius:50%;background:var(--grad);box-shadow:0 0 80px rgba(232,24,90,.35);animation:orbp 4s ease-in-out infinite}
@keyframes orbp{0%,100%{box-shadow:0 0 80px rgba(232,24,90,.35),0 0 160px rgba(240,107,47,.2)}50%{box-shadow:0 0 120px rgba(232,24,90,.5),0 0 200px rgba(240,107,47,.3)}}
.webpro-static .ai-orbit{position:absolute;left:50%;top:50%;border-radius:50%;border:1px dashed rgba(232,24,90,.15);animation:spin linear infinite}
.webpro-static .ai-orbit:nth-child(2){width:280px;height:280px;margin:-140px;animation-duration:14s}
.webpro-static .ai-orbit:nth-child(3){width:380px;height:380px;margin:-190px;animation-duration:22s;animation-direction:reverse}
.webpro-static .ai-orbit:nth-child(4){width:460px;height:460px;margin:-230px;animation-duration:32s}
@keyframes spin{from{transform:rotate(0)}to{transform:rotate(360deg)}}
.webpro-static .o-dot{position:absolute;width:9px;height:9px;background:var(--rose);border-radius:50%;top:-4px;left:50%;margin-left:-4px;box-shadow:0 0 10px var(--rose)}
.webpro-static .ai-pill{display:flex;align-items:center;gap:14px;padding:14px 20px;border-radius:14px;border:1px solid var(--border);background:var(--white);box-shadow:var(--shadow-sm);margin-bottom:10px;transition:border-color .25s,transform .25s var(--ease),box-shadow .25s}
.webpro-static .ai-pill:hover{border-color:rgba(232,24,90,.3);transform:translateX(6px);box-shadow:var(--shadow-md)}
.webpro-static .ai-pill-ico{width:36px;height:36px;border-radius:10px;background:var(--grad);display:flex;align-items:center;justify-content:center;font-size:.95rem;flex-shrink:0}
/* CASE STUDIES */
.webpro-static .case-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r-xl);overflow:hidden;cursor:pointer;transition:transform .35s var(--ease),box-shadow .35s,border-color .25s}
.webpro-static .case-card:hover{transform:translateY(-7px);box-shadow:var(--shadow-xl);border-color:rgba(232,24,90,.2)}
.webpro-static .case-top{padding:2.5rem 2.5rem 0}
.webpro-static .case-badge{display:inline-block;font-family:var(--font-mono);font-size:.68rem;letter-spacing:.1em;text-transform:uppercase;color:var(--rose);background:rgba(232,24,90,.07);border:1px solid rgba(232,24,90,.15);padding:5px 14px;border-radius:100px;margin-bottom:1.25rem}
.webpro-static .case-mets{display:grid;grid-template-columns:repeat(3,1fr);margin-top:2rem;border-top:1px solid var(--border)}
.webpro-static .case-met{padding:1.25rem;text-align:center}
.webpro-static .case-met:not(:last-child){border-right:1px solid var(--border)}
.webpro-static .case-val{font-family:var(--font-disp);font-size:1.5rem;font-weight:800;background:var(--grad);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;line-height:1.15;display:block;padding-bottom:.05em}
.webpro-static .case-key{font-family:var(--font-mono);font-size:.67rem;letter-spacing:.06em;text-transform:uppercase;color:var(--dim);margin-top:4px}
/* WHY */
.webpro-static .why-wrap{display:grid;grid-template-columns:1fr 1.5fr;gap:5rem;align-items:start}
.webpro-static .why-item{display:flex;gap:20px;padding:18px;border-radius:var(--r);border:1px solid transparent;transition:border-color .25s,background .25s}
.webpro-static .why-item:hover{border-color:var(--border);background:var(--off)}
.webpro-static .why-n{font-family:var(--font-mono);font-size:.7rem;color:var(--rose);width:28px;flex-shrink:0;padding-top:3px}
.webpro-static .why-item h4{font-size:.93rem;font-weight:700;margin-bottom:3px;letter-spacing:-.01em}
.webpro-static .why-item p{font-size:.83rem;color:var(--dim);line-height:1.6}
/* FOMO */
.webpro-static .fomo-box{background:var(--ink);border-radius:var(--r-xl);padding:5rem;text-align:center;position:relative;overflow:hidden}
/* Animated diagonal lines instead of checkered */
.webpro-static .fomo-box::before{content:"";position:absolute;inset:0;background:repeating-linear-gradient(45deg,transparent,transparent 40px,rgba(232,24,90,.04) 40px,rgba(232,24,90,.04) 41px);pointer-events:none}
.webpro-static .fomo-dot{width:7px;height:7px;background:var(--rose);border-radius:50%;animation:pulse 2s infinite}
.webpro-static .fomo-it{display:flex;align-items:center;gap:10px;font-size:.9rem;color:rgba(255,255,255,.65)}
.webpro-static .fomo-items{display:flex;justify-content:center;gap:2.5rem;flex-wrap:wrap;margin-top:2rem}
/* FINAL CTA */
.webpro-static .final-box{background:var(--grad);border-radius:var(--r-xl);padding:6rem 5%;text-align:center;position:relative;overflow:hidden}
/* Animated flowing lines instead of grid */
.webpro-static .final-box::before{content:"";position:absolute;inset:0;background:repeating-linear-gradient(-45deg,transparent,transparent 30px,rgba(255,255,255,.04) 30px,rgba(255,255,255,.04) 31px);pointer-events:none}
.webpro-static .final-btns{display:flex;justify-content:center;gap:14px;margin-top:2.5rem;flex-wrap:wrap}
/* PROCESS */
.webpro-static .proc-steps{display:flex;gap:0;overflow-x:auto;padding-bottom:1rem;scrollbar-width:none}
.webpro-static .proc-steps::-webkit-scrollbar{display:none}
.webpro-static .proc-step{flex:1;min-width:150px;text-align:center;padding:0 1rem;position:relative}
.webpro-static .proc-step::after{content:"";position:absolute;top:28px;left:50%;width:100%;height:1px;background:linear-gradient(90deg,var(--rose),rgba(232,24,90,.1));pointer-events:none}
.webpro-static .proc-step:last-child::after{display:none}
.webpro-static .step-n{width:56px;height:56px;border-radius:50%;background:var(--white);border:2px solid var(--border);display:flex;align-items:center;justify-content:center;font-family:var(--font-disp);font-weight:800;font-size:1rem;margin:0 auto 1rem;position:relative;z-index:1;transition:background .3s,border-color .3s,box-shadow .3s,color .3s}
.webpro-static .proc-step:hover .step-n{background:var(--grad);border-color:transparent;box-shadow:0 6px 20px rgba(232,24,90,.35);color:#fff}
.webpro-static .step-t{font-family:var(--font-disp);font-size:.9rem;font-weight:700;margin-bottom:4px}
.webpro-static .step-d{font-size:.75rem;color:var(--dim);font-family:var(--font-mono)}
/* INDUSTRIES */
.webpro-static .ind-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.webpro-static .ind-card{background:var(--off);border:1px solid var(--border);border-radius:var(--r-lg);padding:2rem;text-align:center;cursor:pointer;transition:transform .3s var(--ease),border-color .25s,background .25s,box-shadow .3s}
.webpro-static .ind-card:hover{transform:translateY(-4px);border-color:rgba(232,24,90,.25);background:var(--white);box-shadow:var(--shadow-md)}
.webpro-static .ind-emoji{font-size:2.2rem;margin-bottom:1rem;display:block}
/* BLOG */
.webpro-static .blog-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr;gap:1.5rem}
.webpro-static .blog-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r-lg);overflow:hidden;cursor:pointer;transition:transform .3s var(--ease),box-shadow .3s}
.webpro-static .blog-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.webpro-static .blog-thumb{height:180px;background:var(--grad);display:flex;align-items:center;justify-content:center;font-size:2.5rem}
.webpro-static .blog-card.feat .blog-thumb{height:220px}
.webpro-static .blog-body{padding:1.5rem}
.webpro-static .blog-cat{font-family:var(--font-mono);font-size:.67rem;letter-spacing:.1em;text-transform:uppercase;color:var(--rose);margin-bottom:8px}
.webpro-static .blog-ttl{font-family:var(--font-disp);font-size:1rem;font-weight:700;margin-bottom:8px;line-height:1.35;letter-spacing:-.01em}
.webpro-static .blog-date{font-size:.75rem;color:var(--dim);font-family:var(--font-mono)}
/* CONTACT */
.webpro-static .ctc-grid{display:grid;grid-template-columns:1fr 1.5fr;gap:4rem;align-items:start}
.webpro-static .ctc-form{background:var(--white);border:1px solid var(--border);border-radius:var(--r-xl);padding:2.5rem;box-shadow:var(--shadow-md)}
.webpro-static .fg{margin-bottom:1.25rem}
.webpro-static .fg label{display:block;font-size:.72rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--dim);margin-bottom:7px;font-family:var(--font-mono)}
.webpro-static .fg input, .webpro-static .fg textarea, .webpro-static .fg select{width:100%;background:var(--off);border:1.5px solid var(--border);border-radius:10px;padding:13px 16px;color:var(--ink);font-family:var(--font-body);font-size:.9rem;outline:none;transition:border-color .2s,box-shadow .2s}
.webpro-static .fg input:focus, .webpro-static .fg textarea:focus, .webpro-static .fg select:focus{border-color:var(--rose);box-shadow:0 0 0 3px rgba(232,24,90,.1);background:var(--white)}
.webpro-static .fg textarea{resize:vertical;min-height:110px}
.webpro-static .ctc-info{display:flex;flex-direction:column;gap:1.5rem}
.webpro-static .ctc-block{display:flex;align-items:flex-start;gap:16px}
.webpro-static .ctc-ico{width:44px;height:44px;background:var(--grad-soft);border:1px solid rgba(232,24,90,.15);border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.15rem;flex-shrink:0}
/* PAGE HERO */
.webpro-static .ph{min-height:58vh;display:flex;flex-direction:column;justify-content:center;padding-top:140px;text-align:center;position:relative;overflow:hidden;background:var(--off)}
/* Animated dot pattern for page heroes */
.webpro-static .ph::before{content:"";position:absolute;inset:0;background-image:radial-gradient(circle,rgba(232,24,90,.12) 1px,transparent 1px);background-size:30px 30px;opacity:.4;pointer-events:none;animation:dotMove 25s linear infinite}
.webpro-static .ph-bg{position:absolute;inset:0;background:radial-gradient(ellipse 60% 50% at 50% 0%,rgba(232,24,90,.06) 0%,transparent 70%);pointer-events:none}
/* VALUES */
.webpro-static .val-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.webpro-static .val-card{background:var(--off);border:1px solid var(--border);border-radius:var(--r-lg);padding:2rem;text-align:center;transition:border-color .25s,transform .3s var(--ease),background .25s}
.webpro-static .val-card:hover{border-color:rgba(232,24,90,.25);transform:translateY(-4px);background:var(--white)}
/* TESTIMONIALS */
.webpro-static .testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.webpro-static .testi-card{background:var(--off);border:1px solid var(--border);border-radius:var(--r-lg);padding:2rem}
.webpro-static .testi-stars{color:var(--amber);font-size:1rem;margin-bottom:1rem;letter-spacing:2px}
.webpro-static .testi-text{font-size:.88rem;line-height:1.7;color:var(--mid);margin-bottom:1.5rem;font-style:italic}
.webpro-static .testi-author{display:flex;align-items:center;gap:12px}
.webpro-static .testi-av{width:38px;height:38px;border-radius:50%;background:var(--grad);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.8rem;color:#fff;flex-shrink:0}
.webpro-static .testi-name{font-size:.87rem;font-weight:600}
.webpro-static .testi-role{font-size:.73rem;color:var(--dim);font-family:var(--font-mono)}
/* ══ BRANDS PAGE ══ */
.webpro-static .brand-showcase{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem}
.webpro-static .brand-tile{background:var(--white);border:1px solid var(--border);border-radius:var(--r-xl);overflow:hidden;position:relative;cursor:pointer;transition:transform .4s var(--ease),box-shadow .4s,border-color .3s}
.webpro-static .brand-tile:hover{transform:translateY(-8px) scale(1.01);box-shadow:var(--shadow-xl);border-color:rgba(232,24,90,.25)}
.webpro-static .brand-tile-top{height:220px;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;border-bottom:1px solid var(--border)}
.webpro-static .brand-tile-top img{max-height:130px;max-width:80%;object-fit:contain;position:relative;z-index:1;transition:transform .4s var(--ease)}
.webpro-static .brand-tile:hover .brand-tile-top img{transform:scale(1.06)}
.webpro-static .brand-tile-glow{position:absolute;inset:0;background:var(--grad);opacity:0;transition:opacity .4s}
.webpro-static .brand-tile:hover .brand-tile-glow{opacity:.06}
.webpro-static .brand-tile-body{padding:2rem}
.webpro-static .brand-tile-name{font-family:var(--font-disp);font-size:1.3rem;font-weight:800;margin-bottom:.4rem;letter-spacing:-.02em}
.webpro-static .brand-tile-tag{font-family:var(--font-mono);font-size:.68rem;letter-spacing:.1em;text-transform:uppercase;color:var(--rose);margin-bottom:.75rem}
.webpro-static .brand-tile-desc{font-size:.86rem;color:var(--mid);line-height:1.65;margin-bottom:1.25rem}
.webpro-static .brand-tile-link{display:inline-flex;align-items:center;gap:6px;font-size:.82rem;font-weight:600;color:var(--rose);font-family:var(--font-mono);letter-spacing:.03em;transition:gap .2s}
.webpro-static .brand-tile:hover .brand-tile-link{gap:10px}
/* Animated corner accent */
.webpro-static .brand-tile::before{content:"";position:absolute;top:0;right:0;width:80px;height:80px;background:var(--grad);opacity:0;clip-path:polygon(100% 0,0 0,100% 100%);transition:opacity .3s}
.webpro-static .brand-tile:hover::before{opacity:.08}
/* JOBS */
.webpro-static .job-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r);padding:1.75rem 2.5rem;display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-bottom:1rem;transition:border-color .25s,transform .25s var(--ease),box-shadow .25s;cursor:pointer}
.webpro-static .job-card:hover{border-color:rgba(232,24,90,.3);transform:translateX(6px);box-shadow:var(--shadow-sm)}
.webpro-static .job-dept{font-family:var(--font-mono);font-size:.68rem;letter-spacing:.1em;text-transform:uppercase;color:var(--rose);margin-bottom:5px}
.webpro-static .job-ttl{font-family:var(--font-disp);font-size:1.1rem;font-weight:700}
.webpro-static .job-type{font-size:.8rem;color:var(--dim);margin-top:4px}
/* PARTNERS */
.webpro-static .partner-logos{display:flex;flex-wrap:wrap;justify-content:center;gap:1.25rem;margin-top:3rem}
.webpro-static .p-logo{background:var(--off);border:1px solid var(--border);border-radius:10px;padding:1rem 1.75rem;font-family:var(--font-mono);font-size:.8rem;font-weight:500;color:var(--dim);transition:border-color .25s,color .25s}
.webpro-static .p-logo:hover{border-color:rgba(232,24,90,.3);color:var(--ink)}
/* LEADER CARD */
.webpro-static .leader-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r-xl);overflow:hidden;display:grid;grid-template-columns:1fr 1.8fr}
.webpro-static .leader-img{background:var(--grad-soft);display:flex;align-items:center;justify-content:center;min-height:320px;position:relative}
.webpro-static .leader-body{padding:3rem}
/* ══ FOOTER (CONSTANT on ALL pages) ══ */
.webpro-static .site-footer{background:var(--ink);padding:4rem 5% 2rem}
.webpro-static .ft-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
.webpro-static .ft-brand p{font-size:.84rem;color:rgba(255,255,255,.4);margin-top:1rem;max-width:260px;line-height:1.7}
.webpro-static .ft-logo-wrap{height:34px}
.webpro-static .ft-logo-wrap img{height:100%;width:auto;object-fit:contain;max-width:160px}
.webpro-static .ft-col h4{font-family:var(--font-mono);font-size:.7rem;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.35);margin-bottom:1.25rem}
.webpro-static .ft-col ul{list-style:none;display:flex;flex-direction:column;gap:.65rem}
.webpro-static .ft-col ul li a{font-size:.84rem;color:rgba(255,255,255,.4);transition:color .2s}
.webpro-static .ft-col ul li a:hover{color:#fff}
.webpro-static .ft-bot{border-top:1px solid rgba(255,255,255,.08);padding-top:2rem;display:flex;align-items:center;justify-content:space-between;font-size:.76rem;color:rgba(255,255,255,.28)}
.webpro-static .ft-socials{display:flex;gap:.75rem}
.webpro-static .ft-soc{width:34px;height:34px;border-radius:8px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;font-size:.8rem;cursor:pointer;color:rgba(255,255,255,.45);transition:background .2s,border-color .2s,color .2s}
.webpro-static .ft-soc:hover{background:rgba(232,24,90,.2);border-color:rgba(232,24,90,.4);color:#fff}
/* HUMAN SECTION */
.webpro-static .human-section{background:var(--off);position:relative;overflow:hidden}
.webpro-static .human-inner{display:grid;grid-template-columns:1fr 1fr;gap:0;min-height:480px}
.webpro-static .human-text{padding:5rem;display:flex;flex-direction:column;justify-content:center}
.webpro-static .human-img-wrap{position:relative;overflow:hidden}
/* CASE DETAIL */
.webpro-static .case-detail{background:var(--white);border:1px solid var(--border);border-radius:var(--r-xl);overflow:hidden;margin-bottom:2rem}
.webpro-static .cd-head{padding:2.5rem 2.5rem 2rem;background:var(--off);border-bottom:1px solid var(--border)}
.webpro-static .cd-cols{display:grid;grid-template-columns:repeat(3,1fr)}
.webpro-static .cd-col{padding:2rem}
.webpro-static .cd-col:not(:last-child){border-right:1px solid var(--border)}
.webpro-static .cd-col-lbl{font-family:var(--font-mono);font-size:.7rem;letter-spacing:.08em;text-transform:uppercase;margin-bottom:1rem}
.webpro-static .cd-col-lbl.prob{color:var(--rose)}
.webpro-static .cd-col-lbl.sol{color:#059669}
.webpro-static .cd-col-lbl.imp{color:var(--amber)}
.webpro-static .cd-col ul{list-style:none;display:flex;flex-direction:column;gap:.6rem}
.webpro-static .cd-col ul li{font-size:.87rem;color:var(--mid);display:flex;gap:8px;line-height:1.5}
.webpro-static .cd-big{display:flex;flex-direction:column;gap:.75rem}
.webpro-static .cd-big-n{font-family:var(--font-disp);font-size:2rem;font-weight:800;background:var(--grad);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;line-height:1.15;padding-bottom:.04em}
.webpro-static .cd-big-k{font-size:.75rem;color:var(--dim);font-family:var(--font-mono)}
/* ══ MOBILE RESPONSIVE ══ */
@media (max-width:1024px){.webpro-static .hero-visual{display:none}
.webpro-static .ai-wrap{grid-template-columns:1fr}
.webpro-static .leader-card{grid-template-columns:1fr}
.webpro-static .human-inner{grid-template-columns:1fr}
.webpro-static .ft-grid{grid-template-columns:1fr 1fr}
.webpro-static .why-wrap{grid-template-columns:1fr}}
@media (max-width:768px){.webpro-static .nav-links{display:none}
.webpro-static .hamburger{display:flex}
.webpro-static section{padding:64px 5%}
/* 4-col grids become 2×2 on mobile */
.webpro-static .grid-4{grid-template-columns:repeat(2,1fr);gap:1rem}
.webpro-static .val-grid{grid-template-columns:repeat(2,1fr);gap:1rem}
.webpro-static .counters{grid-template-columns:1fr 1fr}
/* Others stack to 1 col */
.webpro-static .grid-2, .webpro-static .grid-3, .webpro-static .blog-grid, .webpro-static .brand-showcase, .webpro-static .ctc-grid, .webpro-static .testi-grid, .webpro-static .cd-cols{grid-template-columns:1fr}
.webpro-static .case-card+.case-card{margin-top:0}
.webpro-static .ind-grid{grid-template-columns:1fr 1fr}
.webpro-static .fomo-box{padding:3rem 1.5rem}
.webpro-static .final-box{padding:4rem 1.5rem}
.webpro-static .ph{min-height:50vh;padding-top:110px}
.webpro-static .ph::before{background-size:24px 24px}
.webpro-static .human-text{padding:3rem 5%}
.webpro-static #wa{bottom:16px;right:16px}
.webpro-static .wa-discount{font-size:.68rem;padding:7px 12px}
.webpro-static .ft-grid{grid-template-columns:1fr;gap:2rem}
.webpro-static .ft-bot{flex-direction:column;gap:1rem;text-align:center}
.webpro-static .hero-ctas{flex-direction:column;width:100%}
.webpro-static .hero-ctas .btn{width:100%;justify-content:center}
.webpro-static .proc-steps{justify-content:flex-start}
.webpro-static .proc-step{min-width:130px}}
@media (max-width:480px){.webpro-static .xl{font-size:2.4rem}
.webpro-static .lg{font-size:1.9rem}
.webpro-static .counters{grid-template-columns:1fr}
.webpro-static .ctr-item:not(:last-child)::after{display:none}
.webpro-static .ind-grid{grid-template-columns:1fr}
.webpro-static .brand-showcase{grid-template-columns:1fr}
.webpro-static .testi-grid{grid-template-columns:1fr}
.webpro-static .val-grid{grid-template-columns:1fr}}
/* ══ WHY CHOOSE SECTION ══ */
.webpro-static .why-choose-section{background:var(--off);padding:96px 5%}
.webpro-static .why-choose-inner{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center;max-width:1200px;margin:0 auto}
.webpro-static .why-choose-left{}
.webpro-static .why-item-v2{display:flex;gap:20px;padding:18px 20px;border-radius:var(--r);border:1px solid transparent;transition:border-color .25s,background .25s;margin-bottom:.5rem;cursor:default}
.webpro-static .why-item-v2:hover, .webpro-static .why-item-v2.active{border-color:var(--border);background:var(--white)}
.webpro-static .why-item-v2 .why-n{font-family:var(--font-mono);font-size:.7rem;color:var(--rose);width:28px;flex-shrink:0;padding-top:3px}
.webpro-static .why-item-v2 h4{font-size:.93rem;font-weight:700;margin-bottom:3px;letter-spacing:-.01em}
.webpro-static .why-item-v2 p{font-size:.83rem;color:var(--dim);line-height:1.6}
/* VISUAL ILLUSTRATION */
.webpro-static .why-choose-right{}
.webpro-static .why-visual{position:relative;height:480px;width:100%;border-radius:var(--r-xl);overflow:hidden}
.webpro-static .wv-bg{position:absolute;inset:0;background:linear-gradient(135deg,rgba(245,166,35,.12) 0%,rgba(240,107,47,.1) 40%,rgba(232,24,90,.08) 100%)}
.webpro-static .wv-badge{position:absolute;background:var(--white);border-radius:100px;padding:10px 20px;font-size:.82rem;font-weight:600;box-shadow:0 4px 20px rgba(0,0,0,.1);z-index:10;animation:badgefloat 4s ease-in-out infinite}
.webpro-static .wv-badge-1{top:14%;left:8%;color:var(--rose);animation-delay:0s}
.webpro-static .wv-badge-2{top:10%;right:6%;color:var(--orange);animation-delay:1.2s}
@keyframes badgefloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-6px)}}
.webpro-static .wv-persons{position:absolute;bottom:140px;left:0;right:0;display:flex;align-items:flex-end;justify-content:center;gap:24px;padding:0 2rem}
.webpro-static .wv-person{display:flex;flex-direction:column;align-items:center;gap:10px;animation:personfloat 5s ease-in-out infinite}
.webpro-static .wv-p1{animation-delay:.5s}
.webpro-static .wv-p2{animation-delay:0s}
.webpro-static .wv-p3{animation-delay:1.2s}
@keyframes personfloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
.webpro-static .wv-head{width:52px;height:52px;border-radius:50%;background:linear-gradient(135deg,var(--orange),var(--rose))}
.webpro-static .wv-p1 .wv-head{background:linear-gradient(135deg,var(--orange),var(--amber))}
.webpro-static .wv-p2 .wv-head{width:64px;height:64px;background:linear-gradient(135deg,var(--rose),var(--orange))}
.webpro-static .wv-p3 .wv-head{background:linear-gradient(135deg,var(--rose),#c01049)}
.webpro-static .wv-card{background:var(--white);border-radius:12px;padding:14px 16px;width:90px;display:flex;flex-direction:column;gap:6px;box-shadow:0 4px 16px rgba(0,0,0,.08)}
.webpro-static .wv-p2 .wv-card{width:110px}
.webpro-static .wv-line{height:6px;background:var(--border);border-radius:3px}
.webpro-static .wv-line-accent{background:linear-gradient(90deg,var(--rose),var(--orange));width:60%}
.webpro-static .wv-line-short{width:50%}
.webpro-static .wv-result{position:absolute;bottom:24px;left:50%;transform:translateX(-50%);background:var(--white);border-radius:var(--r-lg);padding:1.5rem 2.5rem;text-align:center;box-shadow:0 8px 40px rgba(0,0,0,.12);min-width:220px;animation:resultpop 3s ease-in-out infinite}
@keyframes resultpop{0%,100%{transform:translateX(-50%) scale(1)}50%{transform:translateX(-50%) scale(1.02)}}
.webpro-static .wv-result-num{font-family:var(--font-disp);font-size:2.2rem;font-weight:800;background:var(--grad);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;line-height:1.15;padding-bottom:.04em}
.webpro-static .wv-result-lbl{font-family:var(--font-mono);font-size:.68rem;letter-spacing:.1em;text-transform:uppercase;color:var(--dim);margin-top:4px}
/* ══ BLOG REDESIGN ══ */
.webpro-static .blog-list{display:flex;flex-direction:column;gap:0}
.webpro-static .blog-article-card{display:grid;grid-template-columns:380px 1fr;border-radius:var(--r-xl);overflow:hidden;border:1px solid var(--border);background:var(--white);cursor:pointer;transition:transform .35s var(--ease),box-shadow .35s,border-color .25s;margin-bottom:1.5rem}
.webpro-static .blog-article-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-xl);border-color:rgba(232,24,90,.2)}
.webpro-static .blog-article-card.featured{grid-template-columns:1fr}
.webpro-static .blog-article-card.featured .bac-img{height:360px}
.webpro-static .bac-img{position:relative;overflow:hidden;min-height:260px}
.webpro-static .bac-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease)}
.webpro-static .blog-article-card:hover .bac-img img{transform:scale(1.04)}
.webpro-static .bac-img-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,transparent 40%,rgba(0,0,0,.35))}
.webpro-static .bac-cat-badge{position:absolute;top:16px;left:16px;background:var(--rose);color:#fff;font-family:var(--font-mono);font-size:.65rem;letter-spacing:.1em;text-transform:uppercase;padding:5px 14px;border-radius:100px}
.webpro-static .bac-body{padding:2rem 2.5rem;display:flex;flex-direction:column;justify-content:center}
.webpro-static .bac-meta{font-family:var(--font-mono);font-size:.72rem;color:var(--dim);margin-bottom:.75rem}
.webpro-static .bac-title{font-family:var(--font-disp);font-size:1.3rem;font-weight:800;line-height:1.25;letter-spacing:-.025em;margin-bottom:1rem;padding-bottom:.04em}
.webpro-static .blog-article-card.featured .bac-title{font-size:1.8rem}
.webpro-static .bac-excerpt{font-size:.88rem;color:var(--mid);line-height:1.7;margin-bottom:1.25rem}
.webpro-static .bac-author{display:flex;align-items:center;gap:10px}
.webpro-static .bac-av{width:34px;height:34px;border-radius:50%;background:var(--grad);display:flex;align-items:center;justify-content:center;font-size:.72rem;font-weight:700;color:#fff;flex-shrink:0}
.webpro-static .bac-author-name{font-size:.82rem;font-weight:600}
.webpro-static .bac-author-role{font-size:.73rem;color:var(--dim)}
.webpro-static .bac-read-link{display:inline-flex;align-items:center;gap:6px;font-size:.82rem;font-weight:600;color:var(--rose);font-family:var(--font-mono);margin-top:.75rem;transition:gap .2s}
.webpro-static .blog-article-card:hover .bac-read-link{gap:10px}
/* ══ BLOG DETAIL PAGE ══ */
.webpro-static .blog-detail-hero{min-height:70vh;position:relative;overflow:hidden;display:flex;align-items:flex-end;padding:6rem 5% 4rem;padding-top:120px}
.webpro-static .blog-detail-hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.webpro-static .blog-detail-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(0,0,0,.3) 0%,rgba(0,0,0,.7) 100%)}
.webpro-static .blog-detail-meta{position:relative;z-index:1;max-width:800px}
.webpro-static .blog-detail-content{max-width:760px;margin:0 auto;padding:4rem 5%}
.webpro-static .blog-detail-content h2{font-family:var(--font-disp);font-size:1.7rem;font-weight:800;margin:2.5rem 0 1rem;letter-spacing:-.025em;padding-bottom:.04em}
.webpro-static .blog-detail-content h3{font-family:var(--font-disp);font-size:1.25rem;font-weight:700;margin:2rem 0 .75rem;letter-spacing:-.02em;padding-bottom:.03em}
.webpro-static .blog-detail-content p{font-size:1rem;line-height:1.8;color:var(--mid);margin-bottom:1.25rem}
.webpro-static .blog-detail-content ul{list-style:none;margin:1rem 0 1.5rem;display:flex;flex-direction:column;gap:.6rem}
.webpro-static .blog-detail-content ul li{font-size:.95rem;line-height:1.7;color:var(--mid);display:flex;gap:10px}
.webpro-static .blog-detail-content ul li::before{content:"";width:6px;height:6px;background:var(--rose);border-radius:50%;flex-shrink:0;margin-top:.55em}
.webpro-static .blog-detail-content blockquote{border-left:3px solid var(--rose);padding:1.25rem 1.5rem;background:rgba(232,24,90,.04);border-radius:0 12px 12px 0;margin:2rem 0;font-size:1.05rem;font-style:italic;color:var(--mid)}
.webpro-static .blog-detail-content .highlight-box{background:var(--grad);border-radius:var(--r-lg);padding:2rem;color:#fff;margin:2rem 0}
.webpro-static .blog-detail-content .highlight-box h4{font-family:var(--font-disp);font-size:1.1rem;font-weight:700;color:#fff;margin-bottom:.5rem}
.webpro-static .blog-detail-content .highlight-box p{color:rgba(255,255,255,.85);margin-bottom:0}
.webpro-static .blog-nav{display:flex;gap:12px;margin-top:3rem;padding-top:2rem;border-top:1px solid var(--border)}
.webpro-static .blog-back{display:inline-flex;align-items:center;gap:8px;font-size:.85rem;font-weight:600;color:var(--mid);cursor:pointer;transition:color .2s}
.webpro-static .blog-back:hover{color:var(--rose)}
/* Mobile */
@media (max-width:768px){.webpro-static .why-choose-inner{grid-template-columns:1fr;gap:3rem}
.webpro-static .why-visual{height:320px}
.webpro-static .blog-article-card{grid-template-columns:1fr}
.webpro-static .blog-article-card.featured .bac-img{height:240px}
.webpro-static .bac-img{min-height:200px}
.webpro-static .blog-detail-content{padding:3rem 5%}
.webpro-static .blog-detail-hero{min-height:50vh;padding-bottom:3rem}}
/* WHY CHOOSE DASHBOARD */
.webpro-static .wv-dashboard{position:absolute;top:50%;left:50%;transform:translate(-50%,-52%);width:85%;background:#12122a;border-radius:14px;overflow:hidden;box-shadow:0 24px 60px rgba(0,0,0,.3);border:1px solid rgba(255,255,255,.07)}
.webpro-static .wv-dash-header{background:#0e0e22;padding:10px 14px;display:flex;align-items:center;gap:6px;border-bottom:1px solid rgba(255,255,255,.05)}
.webpro-static .wv-dash-dot{width:11px;height:11px;border-radius:50%}
.webpro-static .wv-dash-body{padding:1.1rem}
.webpro-static .wv-kpi-row{display:grid;grid-template-columns:repeat(3,1fr);gap:.6rem;margin-bottom:1rem}
.webpro-static .wv-kpi{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.07);border-radius:9px;padding:.65rem;text-align:center}
.webpro-static .wv-kpi-num{font-family:var(--font-disp);font-size:1.25rem;font-weight:800;line-height:1.1;padding-bottom:.04em}
.webpro-static .wv-kpi-1 .wv-kpi-num{background:var(--grad);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.webpro-static .wv-kpi-2 .wv-kpi-num{color:#10B981}
.webpro-static .wv-kpi-3 .wv-kpi-num{color:var(--amber)}
.webpro-static .wv-kpi-lbl{font-family:var(--font-mono);font-size:.58rem;letter-spacing:.06em;text-transform:uppercase;color:rgba(255,255,255,.3);margin-top:2px}
.webpro-static .wv-chart{margin-bottom:1rem}
.webpro-static .wv-chart-label{font-family:var(--font-mono);font-size:.6rem;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.3);margin-bottom:.5rem}
.webpro-static .wv-bars{display:flex;align-items:flex-end;gap:.4rem;height:52px}
.webpro-static .wv-bar-wrap{display:flex;flex-direction:column;align-items:center;gap:3px;flex:1}
.webpro-static .wv-bar{width:100%;height:var(--h);background:rgba(255,255,255,.1);border-radius:3px 3px 0 0;animation:barGrow .9s var(--d,0s) var(--ease) both}
@keyframes barGrow{from{height:0}to{height:var(--h)}}
.webpro-static .wv-bar-accent{background:linear-gradient(to top,var(--rose),var(--orange))!important}
.webpro-static .wv-bar-wrap span{font-family:var(--font-mono);font-size:.56rem;color:rgba(255,255,255,.25);text-transform:uppercase}
.webpro-static .wv-feed{display:flex;flex-direction:column;gap:.4rem}
.webpro-static .wv-feed-item{display:flex;align-items:center;gap:7px;padding:6px 9px;background:rgba(255,255,255,.04);border-radius:7px;font-size:.7rem;color:rgba(255,255,255,.6)}
.webpro-static .wv-fi-1{animation:.5s .4s feedSlide var(--ease) both}
.webpro-static .wv-fi-2{animation:.5s .55s feedSlide var(--ease) both}
.webpro-static .wv-fi-3{animation:.5s .7s feedSlide var(--ease) both}
@keyframes feedSlide{from{opacity:0;transform:translateX(-6px)}to{opacity:1;transform:none}}
.webpro-static .wv-feed-dot{width:6px;height:6px;border-radius:50%;background:var(--rose);flex-shrink:0}
.webpro-static .wv-feed-time{margin-left:auto;font-size:.62rem;color:rgba(255,255,255,.25);font-family:var(--font-mono)}
.webpro-static .testi-photo{width:40px;height:40px;border-radius:50%;object-fit:cover;flex-shrink:0;border:2px solid var(--border)}
@media(max-width:768px){.webpro-static .blog-list > div[style*="grid-template-columns:1fr 1fr"]{grid-template-columns:1fr!important}}
