:root {
  --wbt-bg: #0a0a0a;
  --wbt-surface: #121212;
  --wbt-surface-hover: #1e1e1e;
  --wbt-text: #f5f5f7;
  --wbt-text-muted: #a1a1aa;
  --wbt-primary: #00E599;
  --wbt-border: #27272a;
  --wbt-radius: 8px;
  --wbt-radius-l: 16px;
  --wbt-font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --wbt-font-mono: 'Space Mono', monospace;
}
html { scroll-behavior: smooth; font-family: var(--wbt-font-sans); background: var(--wbt-bg); color: var(--wbt-text); }
body { margin: 0; padding: 0; overflow-x: hidden; }
* { box-sizing: border-box; }
.wbt-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wbt-container-wide { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
.wbt-btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; border-radius: 4px; font-weight: 500; text-decoration: none; transition: 0.2s; cursor: pointer; border: none; font-family: var(--wbt-font-sans); }
.wbt-btn-primary { background: var(--wbt-primary); color: #000; }
.wbt-btn-primary:hover { filter: brightness(1.1); }
.wbt-btn-secondary { background: var(--wbt-surface); color: var(--wbt-text); border: 1px solid var(--wbt-border); }
.wbt-btn-secondary:hover { background: var(--wbt-surface-hover); }
/* Header */
.wbt-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: 0.3s; padding: 20px 0; border-bottom: 1px solid transparent; }
.wbt-header.wbt-scrolled { background: rgba(10, 10, 10, 0.8); backdrop-filter: blur(12px); border-bottom-color: var(--wbt-border); padding: 12px 0; }
.wbt-header-inner { display: flex; justify-content: space-between; align-items: center; }
.wbt-logo { display: flex; align-items: center; gap: 12px; font-weight: 700; text-decoration: none; color: var(--wbt-text); font-size: 1.25rem; letter-spacing: -0.02em; }
.wbt-logo svg { width: 24px; height: 24px; }
.wbt-nav { display: flex; gap: 32px; align-items: center; }
.wbt-nav-link { color: var(--wbt-text-muted); text-decoration: none; font-size: 0.9rem; transition: 0.2s; }
.wbt-nav-link:hover, .wbt-nav-link.wbt-active { color: var(--wbt-primary); }
.wbt-burger { display: none; background: none; border: none; color: var(--wbt-text); font-size: 1.5rem; cursor: pointer; }
.wbt-mobile-panel { display: none; }
/* Typography */
h1, h2, h3, h4 { margin: 0 0 16px; font-weight: 600; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; }
.wbt-accent { color: var(--wbt-primary); }
p { margin: 0 0 24px; line-height: 1.6; color: var(--wbt-text-muted); }
/* Sections */
.wbt-section { padding: 96px 0; }
.wbt-section-tight { padding: 48px 0; }
.wbt-section-dark { background: var(--wbt-bg); }
.wbt-section-surface { background: var(--wbt-surface); border-y: 1px solid var(--wbt-border); }
/* Hero - Mirrored Split */
.wbt-hero { padding: 160px 0 96px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.wbt-hero-visual { order: 1; position: relative; height: 400px; background: var(--wbt-surface); border-radius: var(--wbt-radius-l); border: 1px solid var(--wbt-border); overflow: hidden; }
.wbt-hero-content { order: 2; }
.wbt-hero-visual::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(0, 229, 153, 0.15) 0%, transparent 70%); }
/* Trust */
.wbt-trust { padding: 32px 0; border-top: 1px solid var(--wbt-border); border-bottom: 1px solid var(--wbt-border); text-align: center; }
.wbt-trust-label { font-size: 0.8rem; font-family: var(--wbt-font-mono); color: var(--wbt-text-muted); text-transform: uppercase; margin-bottom: 24px; }
.wbt-trust-logos { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px; opacity: 0.6; font-weight: 700; font-size: 1.2rem; }
/* Services - Bento */
.wbt-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wbt-bento-card { background: var(--wbt-surface); border: 1px solid var(--wbt-border); border-radius: var(--wbt-radius-l); padding: 32px; transition: 0.3s; }
.wbt-bento-card:hover { border-color: var(--wbt-primary); transform: translateY(-4px); }
.wbt-bento-card:nth-child(1), .wbt-bento-card:nth-child(4) { grid-column: span 2; }
.wbt-icon { font-size: 2rem; color: var(--wbt-primary); margin-bottom: 24px; }
/* Pricing */
.wbt-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; margin-top: 48px; }
.wbt-price-card { background: var(--wbt-surface); border: 1px solid var(--wbt-border); border-radius: var(--wbt-radius-l); padding: 40px 32px; }
.wbt-price-card.wbt-featured { background: #18181b; border-color: var(--wbt-primary); transform: translateY(-16px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); position: relative; }
.wbt-price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--wbt-primary); color: #000; padding: 4px 12px; border-radius: 12px; font-size: 0.75rem; font-weight: 700; }
.wbt-price-amount { font-size: 2.5rem; font-weight: 700; color: var(--wbt-text); margin: 16px 0; }
.wbt-price-amount span { font-size: 1rem; color: var(--wbt-text-muted); font-weight: 400; }
.wbt-price-list { list-style: none; padding: 0; margin: 24px 0 32px; }
.wbt-price-list li { padding: 8px 0; border-bottom: 1px solid var(--wbt-border); color: var(--wbt-text-muted); display: flex; align-items: center; gap: 8px; }
.wbt-price-list li::before { content: '✓'; color: var(--wbt-primary); font-weight: bold; }
/* Additional Services */
.wbt-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.wbt-menu-col { display: flex; flex-direction: column; gap: 16px; }
.wbt-menu-item { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; border-bottom: 1px dashed var(--wbt-border); }
.wbt-menu-info { flex: 1; }
.wbt-menu-title { font-weight: 600; margin: 0; }
.wbt-menu-price { font-family: var(--wbt-font-mono); color: var(--wbt-primary); }
.wbt-menu-action { margin-left: 24px; font-size: 0.85rem; color: var(--wbt-text); text-decoration: none; padding: 6px 12px; border: 1px solid var(--wbt-border); border-radius: 4px; transition: 0.2s; }
.wbt-menu-action:hover { background: var(--wbt-text); color: var(--wbt-bg); }
/* Process */
.wbt-timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.wbt-timeline::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: var(--wbt-border); }
.wbt-timeline-step { display: flex; gap: 32px; position: relative; padding-bottom: 48px; }
.wbt-timeline-num { width: 50px; height: 50px; border-radius: 25px; background: var(--wbt-bg); border: 2px solid var(--wbt-primary); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--wbt-primary); flex-shrink: 0; z-index: 2; }
/* Guarantee */
.wbt-guarantee { background: linear-gradient(90deg, var(--wbt-bg), #062b1d, var(--wbt-bg)); text-align: center; padding: 64px 24px; border-y: 1px solid var(--wbt-primary); }
/* Comparison */
.wbt-comp-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 0; background: var(--wbt-surface); border: 1px solid var(--wbt-border); border-radius: var(--wbt-radius-l); overflow: hidden; }
.wbt-comp-head { font-weight: 700; padding: 24px; background: #1a1a1a; border-bottom: 1px solid var(--wbt-border); }
.wbt-comp-cell { padding: 24px; border-bottom: 1px solid var(--wbt-border); border-right: 1px solid var(--wbt-border); }
.wbt-comp-grid div:nth-child(3n) { border-right: none; }
/* FAQ */
.wbt-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.wbt-faq-item { background: var(--wbt-surface); border: 1px solid var(--wbt-border); border-radius: var(--wbt-radius); overflow: hidden; }
.wbt-faq-btn { width: 100%; text-align: left; background: none; border: none; padding: 24px; color: var(--wbt-text); font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; font-family: var(--wbt-font-sans); }
.wbt-faq-content { padding: 0 24px 24px; display: none; }
.wbt-faq-btn[aria-expanded="true"] + .wbt-faq-content { display: block; }
/* About & Team */
.wbt-about-prose { text-align: center; max-width: 800px; margin: 0 auto 64px; }
.wbt-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; border-top: 1px solid var(--wbt-border); padding-top: 48px; }
.wbt-stat-num { font-size: 3rem; font-weight: 700; color: var(--wbt-primary); margin-bottom: 8px; }
.wbt-team { display: flex; justify-content: center; margin-top: 64px; }
.wbt-team-card { background: var(--wbt-surface); padding: 24px; border-radius: var(--wbt-radius); border: 1px solid var(--wbt-border); display: flex; align-items: center; gap: 16px; text-align: left; }
.wbt-avatar { width: 48px; height: 48px; border-radius: 24px; background: var(--wbt-primary); color: #000; display: flex; align-items: center; justify-content: center; font-weight: 700; }
/* Reviews */
.wbt-reviews-strip { display: flex; gap: 24px; overflow-x: auto; padding-bottom: 24px; scroll-snap-type: x mandatory; }
.wbt-review-card { min-width: 300px; flex: 1; background: var(--wbt-surface); padding: 32px; border: 1px solid var(--wbt-border); border-radius: var(--wbt-radius); scroll-snap-align: start; }
/* Footer */
.wbt-footer { border-top: 1px solid var(--wbt-border); padding: 64px 0 24px; background: var(--wbt-surface); }
.wbt-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.wbt-footer h4 { color: var(--wbt-text); margin-bottom: 24px; }
.wbt-footer a { color: var(--wbt-text-muted); text-decoration: none; display: block; margin-bottom: 12px; transition: 0.2s; }
.wbt-footer a:hover { color: var(--wbt-primary); }
.wbt-footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid var(--wbt-border); padding-top: 24px; font-size: 0.85rem; color: var(--wbt-text-muted); }
.wbt-footer-bottom-links { display: flex; gap: 24px; }
/* Utils & Animations */
.wbt-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
html.js-ready .wbt-reveal { opacity: 0; transform: translateY(20px); }
.wbt-revealed, noscript .wbt-reveal { opacity: 1 !important; transform: none !important; }
:focus-visible { outline: 2px solid var(--wbt-primary); outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) { * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; } .wbt-reveal { opacity: 1; transform: none; } }
/* Cookie Banner */
.wbt-cookie { position: fixed; bottom: 24px; left: 24px; right: 24px; max-width: 600px; background: var(--wbt-surface-hover); border: 1px solid var(--wbt-border); border-radius: var(--wbt-radius); padding: 24px; z-index: 1000; transform: translateY(150%); transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 10px 30px rgba(0,0,0,0.5); display: flex; flex-direction: column; gap: 16px; }
.wbt-cookie.wbt-show { transform: translateY(0); }
.wbt-cookie-actions { display: flex; gap: 12px; }
/* Responsive */
@media(max-width: 900px) {
  .wbt-hero { grid-template-columns: 1fr; padding-top: 120px; text-align: center; }
  .wbt-hero-visual { order: -1; }
  .wbt-nav { display: none; }
  .wbt-burger { display: block; }
  .wbt-bento { grid-template-columns: 1fr; }
  .wbt-bento-card:nth-child(1), .wbt-bento-card:nth-child(4) { grid-column: auto; }
  .wbt-pricing-grid, .wbt-menu-grid, .wbt-faq-grid, .wbt-footer-grid, .wbt-stats, .wbt-comp-grid { grid-template-columns: 1fr; }
  .wbt-price-card.wbt-featured { transform: none; }
  .wbt-mobile-panel { position: fixed; top: 72px; left: 0; right: 0; background: var(--wbt-surface); border-bottom: 1px solid var(--wbt-border); padding: 24px; display: flex; flex-direction: column; gap: 16px; transform: translateY(-100%); opacity: 0; transition: 0.3s; z-index: 99; pointer-events: none; }
  .wbt-mobile-panel.wbt-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .wbt-comp-grid div:nth-child(3n) { border-right: 1px solid var(--wbt-border); }
  .wbt-comp-head { display: none; }
}
