:root {
  --wb-primary: #1a56db;
  --wb-primary-dark: #1442a8;
  --wb-secondary: #0e9f6e;
  --wb-accent: #f59e0b;
  --wb-dark: #111827;
  --wb-text: #374151;
  --wb-text-light: #6b7280;
  --wb-bg: #ffffff;
  --wb-bg-light: #f9fafb;
  --wb-bg-alt: #f3f4f6;
  --wb-border: #e5e7eb;
  --wb-radius: 8px;
  --wb-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --wb-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --wb-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --wb-max-width: 1200px;
}

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

body {
  font-family: var(--wb-font);
  color: var(--wb-text);
  line-height: 1.6;
  background: var(--wb-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: var(--wb-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--wb-primary-dark); }

.container { max-width: var(--wb-max-width); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  background: var(--wb-bg);
  border-bottom: 1px solid var(--wb-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--wb-max-width);
  margin: 0 auto;
}
.site-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--wb-dark);
  letter-spacing: -0.5px;
}
.site-logo span { color: var(--wb-primary); }

.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  color: var(--wb-text);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--wb-radius);
  transition: all 0.2s;
}
.main-nav a:hover { color: var(--wb-primary); background: var(--wb-bg-light); }
.main-nav a.current { color: var(--wb-primary); }

.nav-cta {
  background: var(--wb-primary) !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: var(--wb-radius) !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--wb-primary-dark) !important; }

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--wb-dark);
  padding: 4px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--wb-radius);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  line-height: 1.4;
}
.btn-primary { background: var(--wb-primary); color: #fff; }
.btn-primary:hover { background: var(--wb-primary-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--wb-shadow-lg); }
.btn-secondary { background: var(--wb-bg); color: var(--wb-primary); border: 2px solid var(--wb-primary); }
.btn-secondary:hover { background: var(--wb-primary); color: #fff; }
.btn-white { background: #fff; color: var(--wb-primary); }
.btn-white:hover { background: var(--wb-bg-light); color: var(--wb-primary-dark); }
.btn-large { padding: 16px 36px; font-size: 1.1rem; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #1a56db 50%, #3b82f6 100%);
  color: #fff;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero p {
  font-size: 1.25rem;
  max-width: 640px;
  margin: 0 auto 36px;
  opacity: 0.9;
  line-height: 1.6;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--wb-bg-light); }
.section-dark { background: var(--wb-dark); color: #fff; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--wb-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-dark .section-header h2 { color: #fff; }
.section-header p {
  font-size: 1.15rem;
  color: var(--wb-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Problem Section */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.problem-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--wb-dark);
  margin-bottom: 20px;
}
.problem-text p { font-size: 1.05rem; margin-bottom: 16px; }
.problem-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--wb-bg-light);
  border-radius: var(--wb-radius);
  border-left: 4px solid var(--wb-primary);
}
.stat-item .stat-icon { font-size: 1.5rem; flex-shrink: 0; }
.stat-item p { font-size: 0.95rem; margin: 0; }
.stat-item strong { color: var(--wb-dark); }

.problem-visual {
  background: var(--wb-bg-light);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}
.problem-visual .big-stat {
  font-size: 4rem;
  font-weight: 800;
  color: var(--wb-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.problem-visual .stat-label {
  font-size: 1.1rem;
  color: var(--wb-text-light);
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--wb-bg);
  border-radius: 12px;
  box-shadow: var(--wb-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--wb-shadow-lg); }
.step-number {
  width: 56px; height: 56px;
  background: var(--wb-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 20px;
}
.step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wb-dark);
  margin-bottom: 12px;
}
.step-card p { font-size: 0.95rem; color: var(--wb-text-light); }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.pricing-card {
  background: var(--wb-bg);
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: var(--wb-shadow);
  border: 2px solid var(--wb-border);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--wb-shadow-lg); }
.pricing-card.featured {
  border-color: var(--wb-primary);
  transform: scale(1.03);
  box-shadow: var(--wb-shadow-lg);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wb-primary);
  color: #fff;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--wb-dark);
  margin-bottom: 4px;
}
.pricing-card .price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--wb-dark);
  margin: 12px 0 4px;
}
.pricing-card .price span { font-size: 1rem; font-weight: 500; color: var(--wb-text-light); }
.pricing-card .plan-desc {
  font-size: 0.9rem;
  color: var(--wb-text-light);
  margin-bottom: 24px;
  font-style: italic;
}
.pricing-card ul { list-style: none; margin-bottom: 28px; }
.pricing-card ul li {
  padding: 8px 0;
  font-size: 0.93rem;
  color: var(--wb-text);
  border-bottom: 1px solid var(--wb-bg-alt);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card ul li::before {
  content: "\2713";
  color: var(--wb-secondary);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card .btn { width: 100%; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--wb-bg);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--wb-shadow);
}
.testimonial-card .stars { color: var(--wb-accent); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-card blockquote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--wb-text);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card .author {
  font-weight: 600;
  color: var(--wb-dark);
  font-size: 0.9rem;
}

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--wb-border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 40px 20px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--wb-dark);
  cursor: pointer;
  position: relative;
  font-family: var(--wb-font);
  line-height: 1.4;
}
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--wb-primary);
  transition: transform 0.2s;
}
.faq-item.active .faq-question::after { content: "\2212"; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--wb-text-light);
  line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, #1a56db 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}
.cta-banner h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 16px; }
.cta-banner p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--wb-dark);
  margin-bottom: 16px;
}
.contact-info p { font-size: 1.05rem; margin-bottom: 24px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--wb-border);
}
.contact-method .icon { font-size: 1.3rem; }
.contact-method strong { display: block; color: var(--wb-dark); }
.contact-method span { font-size: 0.9rem; color: var(--wb-text-light); }

.contact-form { background: var(--wb-bg-light); padding: 36px; border-radius: 12px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--wb-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--wb-border);
  border-radius: var(--wb-radius);
  font-size: 0.95rem;
  font-family: var(--wb-font);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--wb-primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Trust Signals */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 24px 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--wb-text-light);
  font-weight: 500;
}
.trust-item .trust-icon { font-size: 1.2rem; color: var(--wb-secondary); }
.guarantee-badge {
  background: var(--wb-bg-light);
  border: 2px solid var(--wb-secondary);
  border-radius: 12px;
  padding: 24px 32px;
  text-align: center;
  margin-top: 32px;
}
.guarantee-badge h4 {
  color: var(--wb-secondary);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.guarantee-badge p { font-size: 0.9rem; color: var(--wb-text-light); max-width: 400px; margin: 0 auto; }

/* About Page */
.about-hero { padding: 80px 0 60px; }
.about-hero h1 { font-size: 2.8rem; font-weight: 800; color: var(--wb-dark); margin-bottom: 20px; }
.about-hero p { font-size: 1.15rem; max-width: 700px; line-height: 1.8; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  padding: 28px;
  background: var(--wb-bg);
  border-radius: 12px;
  box-shadow: var(--wb-shadow);
  border-top: 4px solid var(--wb-primary);
}
.value-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--wb-dark); margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; color: var(--wb-text-light); }

/* How It Works Page */
.process-timeline { max-width: 780px; margin: 0 auto; }
.timeline-step {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}
.timeline-marker {
  flex-shrink: 0;
  width: 64px; height: 64px;
  background: var(--wb-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}
.timeline-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--wb-dark);
  margin-bottom: 8px;
}
.timeline-content .timeline-days {
  display: inline-block;
  background: var(--wb-bg-alt);
  color: var(--wb-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.timeline-content p { font-size: 0.95rem; color: var(--wb-text-light); }
.timeline-content ul { list-style: none; margin-top: 12px; }
.timeline-content ul li {
  padding: 4px 0;
  font-size: 0.93rem;
  color: var(--wb-text-light);
}
.timeline-content ul li::before { content: "\2713 "; color: var(--wb-secondary); font-weight: 700; margin-right: 8px; }

/* Footer */
.site-footer {
  background: var(--wb-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-about .footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.footer-about .footer-logo span { color: var(--wb-primary); }
.footer-about p { font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: #fff; }

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.5rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero { padding: 60px 0 50px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1.05rem; }
  .section { padding: 56px 0; }
  .section-header h2 { font-size: 1.8rem; }
  .problem-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .mobile-nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--wb-bg);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--wb-border);
    box-shadow: var(--wb-shadow-lg);
  }
  .main-nav.active { display: flex; }
  .main-nav a { width: 100%; padding: 12px 16px; }
  .nav-cta { text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-banner h2 { font-size: 1.6rem; }
  .about-hero h1 { font-size: 2rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 300px; }
  .trust-bar { flex-direction: column; gap: 12px; }
}
