/* WB Services Premium Styles */
:root {
    --wb-dark: #0a0f1c;
    --wb-darker: #060a14;
    --wb-gold: #d4af37;
    --wb-gold-light: #f5d061;
    --wb-accent: #1a73e8;
    --wb-text: #e0e0e0;
    --wb-text-muted: #8a8a9a;
    --wb-card-bg: rgba(255,255,255,0.03);
    --wb-border: rgba(212,175,55,0.15);
    --wb-green: #25d366;
    --wb-radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--wb-dark);
    color: var(--wb-text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Scroll Reveal Animation */
.wb-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.wb-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.wb-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.wb-reveal-left.visible { opacity: 1; transform: translateX(0); }
.wb-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.wb-reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Nav */
.wb-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 12px 24px;
    background: rgba(10,15,28,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--wb-border);
    transition: all 0.3s ease;
}
.wb-nav.scrolled { padding: 8px 24px; background: rgba(10,15,28,0.95); }
.wb-nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}
.wb-nav-logo {
    font-size: 1.3rem; font-weight: 800;
    background: linear-gradient(135deg, var(--wb-gold), var(--wb-gold-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    text-decoration: none;
}
.wb-nav-cta {
    background: var(--wb-green); color: #fff;
    padding: 10px 24px; border-radius: 30px;
    text-decoration: none; font-weight: 600; font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.wb-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.3); }

/* Hero */
.wb-hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 120px 24px 80px;
    position: relative; overflow: hidden;
}
.wb-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(212,175,55,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(26,115,232,0.05) 0%, transparent 50%);
}
.wb-hero::after {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-30px); } }
.wb-hero-inner {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center;
    position: relative; z-index: 1;
}
.wb-hero-text h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800;
    line-height: 1.15; margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 30%, var(--wb-gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.wb-hero-subtitle { font-size: 1.15rem; color: var(--wb-text-muted); margin-bottom: 28px; line-height: 1.6; }
.wb-hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.wb-badge {
    padding: 10px 20px; border-radius: 30px; font-size: 0.9rem; font-weight: 600;
    background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3); color: var(--wb-gold);
}
.wb-badge-price {
    background: linear-gradient(135deg, var(--wb-gold), var(--wb-gold-light));
    color: var(--wb-dark); border: none; font-size: 1.1rem;
}
.wb-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.wb-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--wb-green); color: #fff;
    padding: 16px 32px; border-radius: 30px;
    text-decoration: none; font-weight: 700; font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.wb-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37,211,102,0.3); }
.wb-btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; border: 2px solid var(--wb-gold); color: var(--wb-gold);
    padding: 14px 28px; border-radius: 30px;
    text-decoration: none; font-weight: 600;
    transition: background 0.3s, color 0.3s;
}
.wb-btn-secondary:hover { background: var(--wb-gold); color: var(--wb-dark); }

/* Hero Stats Card */
.wb-hero-stats {
    background: var(--wb-card-bg); border: 1px solid var(--wb-border);
    border-radius: var(--wb-radius); padding: 32px;
    backdrop-filter: blur(10px);
}
.wb-stat-item { text-align: center; padding: 16px 0; border-bottom: 1px solid var(--wb-border); }
.wb-stat-item:last-child { border-bottom: none; }
.wb-stat-num { font-size: 2rem; font-weight: 800; color: var(--wb-gold); }
.wb-stat-label { font-size: 0.85rem; color: var(--wb-text-muted); margin-top: 4px; }

/* Sections */
.wb-section {
    padding: 80px 24px;
    max-width: 1200px; margin: 0 auto;
}
.wb-section-alt { background: rgba(212,175,55,0.02); }
.wb-section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700;
    margin-bottom: 16px; color: #fff;
}
.wb-section-subtitle { color: var(--wb-text-muted); font-size: 1.05rem; margin-bottom: 40px; max-width: 600px; }

/* Pricing Table */
.wb-pricing-wrap { overflow-x: auto; border-radius: var(--wb-radius); border: 1px solid var(--wb-border); }
.wb-pricing-table { width: 100%; border-collapse: collapse; }
.wb-pricing-table thead { background: linear-gradient(135deg, var(--wb-gold), var(--wb-gold-light)); }
.wb-pricing-table th { padding: 16px 20px; color: var(--wb-dark); font-weight: 700; text-align: left; font-size: 0.9rem; }
.wb-pricing-table td { padding: 16px 20px; border-bottom: 1px solid var(--wb-border); }
.wb-pricing-table tr:hover { background: rgba(212,175,55,0.04); }
.wb-pricing-table tr:last-child td { border-bottom: none; }

/* Documents Checklist */
.wb-checklist { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; }
.wb-checklist li {
    padding: 16px 20px 16px 48px; position: relative;
    background: var(--wb-card-bg); border: 1px solid var(--wb-border);
    border-radius: 12px; transition: border-color 0.3s;
}
.wb-checklist li:hover { border-color: var(--wb-gold); }
.wb-checklist li::before {
    content: '\2713'; position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
    color: var(--wb-gold); font-weight: 700; font-size: 1.1rem;
}

/* Process Timeline */
.wb-timeline { position: relative; padding-left: 48px; margin-top: 16px; }
.wb-timeline::before {
    content: ''; position: absolute; left: 16px; top: 8px; bottom: 8px;
    width: 2px; background: linear-gradient(to bottom, var(--wb-gold), rgba(212,175,55,0.2));
}
.wb-timeline-step {
    position: relative; padding: 24px 0;
}
.wb-timeline-step + .wb-timeline-step { border-top: none; }
.wb-timeline-dot {
    position: absolute; left: -48px; top: 24px;
    width: 34px; height: 34px; border-radius: 50%;
    background: linear-gradient(135deg, var(--wb-gold), var(--wb-gold-light));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: var(--wb-dark); font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(212,175,55,0.3);
    transform: translateX(0);
}
.wb-timeline-content h4 { color: #fff; margin-bottom: 6px; font-size: 1rem; line-height: 1.4; }
.wb-timeline-content span { color: var(--wb-gold); font-size: 0.85rem; font-weight: 500; }

/* FAQ */
.wb-faq-item {
    background: var(--wb-card-bg); border: 1px solid var(--wb-border);
    border-radius: 12px; margin-bottom: 12px; overflow: hidden;
    transition: border-color 0.3s;
}
.wb-faq-item:hover { border-color: var(--wb-gold); }
.wb-faq-item summary {
    padding: 20px 24px; cursor: pointer; font-weight: 600; color: #fff;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.wb-faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--wb-gold); transition: transform 0.3s; }
.wb-faq-item[open] summary::after { transform: rotate(45deg); }
.wb-faq-item p { padding: 0 24px 20px; color: var(--wb-text-muted); line-height: 1.7; }

/* Cross-Sell Cards */
.wb-cross-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.wb-cross-card {
    background: var(--wb-card-bg); border: 1px solid var(--wb-border);
    border-radius: var(--wb-radius); padding: 28px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    text-decoration: none; display: block;
}
.wb-cross-card:hover { transform: translateY(-4px); border-color: var(--wb-gold); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.wb-cross-card h4 { color: var(--wb-gold); margin-bottom: 8px; font-size: 1rem; }
.wb-cross-card p { color: var(--wb-text-muted); font-size: 0.9rem; }

/* CTA Section */
.wb-cta-section {
    background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(26,115,232,0.05));
    border: 1px solid var(--wb-border); border-radius: 24px;
    padding: 60px 40px; text-align: center; margin: 40px auto;
    max-width: 800px; position: relative; overflow: hidden;
}
.wb-cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212,175,55,0.1), transparent 60%);
}
.wb-cta-section h2 { font-size: 2rem; margin-bottom: 12px; position: relative; }
.wb-cta-section p { color: var(--wb-text-muted); margin-bottom: 28px; position: relative; }
.wb-cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* Footer */
.wb-footer {
    padding: 40px 24px; text-align: center;
    border-top: 1px solid var(--wb-border);
    color: var(--wb-text-muted); font-size: 0.85rem;
}

/* Floating WhatsApp */
.wb-float-wa {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--wb-green); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    transition: transform 0.2s;
    text-decoration: none; color: #fff; font-size: 1.5rem;
}
.wb-float-wa:hover { transform: scale(1.1); }
.wb-float-wa img { width: 32px; height: 32px; }

/* Responsive */
@media (max-width: 768px) {
    .wb-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .wb-hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); }
    .wb-stat-item { border-bottom: none; border-right: 1px solid var(--wb-border); }
    .wb-stat-item:last-child { border-right: none; }
    .wb-hero { min-height: auto; padding: 100px 16px 60px; }
    .wb-section { padding: 60px 16px; }
    .wb-cta-section { padding: 40px 20px; }
    .wb-checklist { grid-template-columns: 1fr; }
}
