/* ============================================================
   WeDrive - Modern Carpooling Landing Page Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --wd-primary: #019BA7;
  --wd-primary-dark: #017A85;
  --wd-primary-light: #E8F5F6;
  --wd-accent: #019BA7;
  --wd-accent-light: #E8F5F6;
  --wd-dark: #0F172A;
  --wd-dark-2: #1E293B;
  --wd-text: #334155;
  --wd-text-light: #64748B;
  --wd-light: #F8FAFC;
  --wd-white: #FFFFFF;
  --wd-border: #E2E8F0;
  --wd-gradient: linear-gradient(135deg, #019BA7 0%, #017A85 100%);
  --wd-gradient-2: linear-gradient(135deg, #0F172A 0%, #1E3A5F 100%);
  --wd-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --wd-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --wd-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --wd-radius: 12px;
  --wd-radius-lg: 20px;
  --wd-radius-xl: 28px;
  --wd-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--wd-text);
  background: var(--wd-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; }

a { color: var(--wd-primary); text-decoration: none; transition: var(--wd-transition); }
a:hover { color: var(--wd-primary-dark); }

/* ---------- Navbar ---------- */
.wd-navbar {
  padding: 16px 0;
  transition: var(--wd-transition);
  background: transparent;
  z-index: 1000;
}

.wd-navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  padding: 10px 0;
}

.wd-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 24px;
  color: var(--wd-white);
}

.wd-navbar.scrolled .navbar-brand { color: var(--wd-dark); }

.wd-logo { height: 38px; width: auto; }

.wd-brand-text { font-weight: 800; letter-spacing: -0.5px; }

.wd-navbar .nav-link {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: var(--wd-transition);
  position: relative;
}

.wd-navbar .nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }

.wd-navbar.scrolled .nav-link { color: var(--wd-text); }
.wd-navbar.scrolled .nav-link:hover { color: var(--wd-primary); background: var(--wd-primary-light); }

/* Hamburger */
.wd-toggler {
  width: 36px;
  height: 36px;
  position: relative;
  border: none;
  background: none;
  padding: 0;
  z-index: 1001;
  display: none;
}

.wd-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--wd-transition);
  position: absolute;
  left: 6px;
}

.wd-toggler span:nth-child(1) { top: 10px; }
.wd-toggler span:nth-child(2) { top: 17px; }
.wd-toggler span:nth-child(3) { top: 24px; }

.wd-navbar.scrolled .wd-toggler span { background: var(--wd-dark); }

.wd-toggler.active span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.wd-toggler.active span:nth-child(2) { opacity: 0; }
.wd-toggler.active span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* Mobile Menu */
.wd-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--wd-transition);
}

.wd-mobile-menu.open { opacity: 1; visibility: visible; }

.wd-mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.wd-mobile-menu ul li { margin-bottom: 24px; }

.wd-mobile-menu ul li a {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  transition: var(--wd-transition);
}

.wd-mobile-menu ul li a:hover { color: var(--wd-primary); }

/* ---------- Buttons ---------- */
.wd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--wd-transition);
  text-decoration: none;
  gap: 6px;
  line-height: 1.4;
}

.wd-btn-primary {
  background: var(--wd-primary);
  color: #fff;
  border-color: var(--wd-primary);
  box-shadow: 0 4px 14px rgba(43, 128, 255, 0.35);
}

.wd-btn-primary:hover {
  background: var(--wd-primary-dark);
  border-color: var(--wd-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 128, 255, 0.45);
}

.wd-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.wd-btn-outline:hover {
  background: #fff;
  color: var(--wd-dark);
  border-color: #fff;
  transform: translateY(-2px);
}

.wd-btn-lg { padding: 16px 36px; font-size: 16px; }
.wd-btn-sm { padding: 8px 20px; font-size: 14px; }

/* ---------- Section Badge ---------- */
.wd-section-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--wd-primary);
  background: var(--wd-primary-light);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.wd-badge {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--wd-accent);
  background: var(--wd-accent-light);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ---------- Section Styles ---------- */
.wd-section { padding: 100px 0; position: relative; }

.wd-section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--wd-dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.wd-section-desc {
  font-size: 18px;
  color: var(--wd-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.wd-gradient-text {
  background: var(--wd-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Hero ---------- */
.wd-hero {
  position: relative;
  background: var(--wd-gradient-2);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.wd-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.wd-hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--wd-primary);
}

.wd-hero-shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  animation: floatShape 20s ease-in-out infinite;
}

.wd-hero-shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  animation: floatShape 25s ease-in-out infinite reverse;
}

.wd-hero-shape-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 50%;
  animation: floatShape 15s ease-in-out infinite;
  background: var(--wd-accent);
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.wd-hero-title {
  font-size: 58px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.wd-hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}

.wd-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

/* Hero Stats */
.wd-hero-stats {
  display: flex;
  gap: 36px;
}

.wd-hero-stat {
  text-align: center;
}

.wd-stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.wd-stat-suffix {
  font-size: 20px;
  font-weight: 700;
  color: var(--wd-accent);
}

.wd-stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* Hero Image */
.wd-hero-image {
  position: relative;
  padding: 40px;
}

.wd-hero-phone {
  max-height: 520px;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.3));
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Floating badges */
.wd-hero-float {
  position: absolute;
  background: var(--wd-white);
  padding: 12px 20px;
  border-radius: var(--wd-radius);
  box-shadow: var(--wd-shadow-xl);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--wd-dark);
  animation: floatBadge 4s ease-in-out infinite;
}

.wd-hero-float i {
  color: var(--wd-primary);
  font-size: 18px;
}

.wd-hero-float-1 { top: 15%; left: 0; animation-delay: 0s; }
.wd-hero-float-2 { top: 50%; right: 0; animation-delay: 1.3s; }
.wd-hero-float-3 { bottom: 15%; left: 5%; animation-delay: 2.6s; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Hero Wave */
.wd-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.wd-hero-wave svg { width: 100%; height: 80px; }

/* ---------- Trusted ---------- */
.wd-trusted {
  background: var(--wd-light);
  border-bottom: 1px solid var(--wd-border);
}

.wd-trusted-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--wd-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.wd-trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.wd-trusted-item {
  font-size: 15px;
  font-weight: 600;
  color: var(--wd-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.wd-trusted-item i { color: var(--wd-primary); font-size: 18px; }

/* ---------- How It Works ---------- */
.wd-how-it-works { background: var(--wd-light); }

.wd-step-card {
  background: var(--wd-white);
  border-radius: var(--wd-radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  height: 100%;
  border: 1px solid var(--wd-border);
  transition: var(--wd-transition);
}

.wd-step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--wd-shadow-xl);
  border-color: var(--wd-primary);
}

.wd-step-number {
  font-size: 56px;
  font-weight: 900;
  background: var(--wd-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.wd-step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wd-step-icon img { height: 64px; }

.wd-step-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--wd-dark);
  margin-bottom: 12px;
}

.wd-step-card p {
  color: var(--wd-text-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

.wd-step-connector {
  display: none;
}

/* ---------- Features ---------- */
.wd-features-section { background: var(--wd-white); }

.wd-feature-card {
  background: var(--wd-white);
  border: 1px solid var(--wd-border);
  border-radius: var(--wd-radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: var(--wd-transition);
}

.wd-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--wd-shadow-xl);
  border-color: transparent;
}

.wd-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.wd-feature-icon-blue { background: #E8F5F6; color: #019BA7; }
.wd-feature-icon-green { background: #E8F5F6; color: #019BA7; }
.wd-feature-icon-purple { background: #F3E8FF; color: #9333EA; }
.wd-feature-icon-orange { background: #FFF3E0; color: #F57C00; }
.wd-feature-icon-teal { background: #E0F7FA; color: #00ACC1; }
.wd-feature-icon-red { background: #FCE4EC; color: #E53935; }

.wd-feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--wd-dark);
  margin-bottom: 10px;
}

.wd-feature-card p {
  color: var(--wd-text-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---------- App Showcase ---------- */
.wd-app-showcase { background: var(--wd-light); }

.wd-showcase-image { padding: 20px; }

.wd-showcase-phone {
  max-height: 500px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

.wd-app-features-list { margin-top: 12px; }

.wd-app-feature-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--wd-radius);
  transition: var(--wd-transition);
  margin-bottom: 8px;
}

.wd-app-feature-item:hover {
  background: var(--wd-white);
  box-shadow: var(--wd-shadow);
}

.wd-app-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--wd-primary-light);
  color: var(--wd-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.wd-app-feature-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--wd-dark);
  margin-bottom: 4px;
}

.wd-app-feature-item p {
  color: var(--wd-text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---------- Stats ---------- */
.wd-stats-section {
  background: var(--wd-gradient-2);
  padding: 80px 0;
}

.wd-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.wd-stats-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--wd-radius-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  transition: var(--wd-transition);
}

.wd-stats-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.wd-stats-icon {
  font-size: 32px;
  color: var(--wd-primary);
  margin-bottom: 12px;
}

.wd-stats-number {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.wd-stats-card p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin: 0;
}

/* ---------- Testimonials ---------- */
.wd-testimonials { background: var(--wd-light); }

.wd-testimonial-card {
  background: var(--wd-white);
  border: 1px solid var(--wd-border);
  border-radius: var(--wd-radius-lg);
  padding: 32px;
  height: 100%;
  transition: var(--wd-transition);
}

.wd-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--wd-shadow-lg);
}

.wd-testimonial-stars {
  color: #FBBF24;
  font-size: 16px;
  margin-bottom: 16px;
  display: flex;
  gap: 3px;
}

.wd-testimonial-card > p {
  color: var(--wd-text);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.wd-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wd-testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.wd-testimonial-author h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--wd-dark);
  margin-bottom: 2px;
}

.wd-testimonial-author span {
  font-size: 13px;
  color: var(--wd-text-light);
}

/* ---------- FAQ ---------- */
.wd-faq-section { background: var(--wd-white); }

.wd-faq-list { margin-top: 20px; }

.wd-faq-item {
  background: var(--wd-light);
  border-radius: var(--wd-radius);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--wd-border);
  transition: var(--wd-transition);
}

.wd-faq-item.active { border-color: var(--wd-primary); background: var(--wd-primary-light); }

.wd-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  transition: var(--wd-transition);
}

.wd-faq-question h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--wd-dark);
  margin: 0;
}

.wd-faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--wd-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wd-primary);
  font-size: 14px;
  flex-shrink: 0;
  transition: var(--wd-transition);
}

.wd-faq-item.active .wd-faq-toggle { background: var(--wd-primary); color: #fff; transform: rotate(45deg); }

.wd-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.wd-faq-item.active .wd-faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.wd-faq-answer p {
  color: var(--wd-text-light);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* ---------- Download CTA ---------- */
.wd-download-section { background: var(--wd-light); padding: 100px 0; }

.wd-download-card {
  background: var(--wd-gradient-2);
  border-radius: var(--wd-radius-xl);
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.wd-download-bg { position: absolute; inset: 0; overflow: hidden; }

.wd-download-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.wd-download-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--wd-primary);
  top: -100px;
  right: -100px;
}

.wd-download-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--wd-accent);
  bottom: -80px;
  left: -80px;
}

.wd-download-card h2 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.wd-download-card h2 span { color: var(--wd-primary); }

.wd-download-card p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 480px;
  position: relative;
  z-index: 1;
}

.wd-download-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.wd-store-btn {
  display: inline-block;
  transition: var(--wd-transition);
}

.wd-store-btn img { height: 52px; }

.wd-store-btn:hover { transform: translateY(-3px); }

.wd-download-phone {
  max-height: 380px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* ---------- Page Header ---------- */
.wd-page-header {
  background: var(--wd-gradient-2);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.wd-page-header::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--wd-primary);
  opacity: 0.05;
  top: -200px;
  right: -100px;
}

.wd-page-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.wd-page-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Legal Pages ---------- */
.wd-legal-content {
  padding: 80px 0;
}

.wd-legal-block {
  background: var(--wd-white);
  border-radius: var(--wd-radius-lg);
  padding: 48px;
  border: 1px solid var(--wd-border);
}

.wd-legal-block h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--wd-dark);
  margin: 36px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--wd-border);
}

.wd-legal-block h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.wd-legal-block h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--wd-dark);
  margin: 20px 0 10px;
}

.wd-legal-block p {
  color: var(--wd-text);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.wd-legal-block ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.wd-legal-block ul li {
  color: var(--wd-text);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.wd-legal-block a {
  color: var(--wd-primary);
  text-decoration: underline;
}

/* ---------- About Page ---------- */
.wd-about-image {
  position: relative;
}

.wd-about-image img {
  border-radius: var(--wd-radius-lg);
  box-shadow: var(--wd-shadow-xl);
}

.wd-mission-card {
  background: var(--wd-white);
  border-radius: var(--wd-radius-lg);
  padding: 40px;
  height: 100%;
  border: 1px solid var(--wd-border);
  transition: var(--wd-transition);
}

.wd-mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--wd-shadow-xl);
}

.wd-mission-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.wd-mission-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--wd-dark);
  margin-bottom: 12px;
}

.wd-mission-card p {
  color: var(--wd-text-light);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.wd-value-card {
  background: var(--wd-white);
  border: 1px solid var(--wd-border);
  border-radius: var(--wd-radius-lg);
  padding: 32px 24px;
  height: 100%;
  transition: var(--wd-transition);
}

.wd-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--wd-shadow-xl);
  border-color: var(--wd-primary);
}

.wd-value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--wd-primary-light);
  color: var(--wd-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.wd-value-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--wd-dark);
  margin-bottom: 8px;
}

.wd-value-card p {
  color: var(--wd-text-light);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ---------- Contact Page ---------- */
.wd-contact-info-list { margin-top: 8px; }

.wd-contact-info-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--wd-border);
}

.wd-contact-info-item:last-child { border-bottom: none; }

.wd-contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--wd-primary-light);
  color: var(--wd-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.wd-contact-info-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--wd-dark);
  margin-bottom: 2px;
}

.wd-contact-info-item p {
  color: var(--wd-text-light);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.wd-contact-info-item a { color: var(--wd-text-light); }
.wd-contact-info-item a:hover { color: var(--wd-primary); }

.wd-contact-form-card {
  background: var(--wd-white);
  border: 1px solid var(--wd-border);
  border-radius: var(--wd-radius-xl);
  padding: 48px;
  box-shadow: var(--wd-shadow-lg);
}

.wd-contact-form-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--wd-dark);
  margin-bottom: 4px;
}

.wd-form-group { margin-bottom: 4px; }

.wd-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--wd-dark);
  margin-bottom: 6px;
}

.wd-form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--wd-border);
  border-radius: var(--wd-radius);
  font-size: 15px;
  color: var(--wd-text);
  background: var(--wd-light);
  transition: var(--wd-transition);
  font-family: inherit;
}

.wd-form-control:focus {
  outline: none;
  border-color: var(--wd-primary);
  box-shadow: 0 0 0 3px rgba(43, 128, 255, 0.15);
  background: var(--wd-white);
}

.wd-form-control::placeholder { color: #94A3B8; }

textarea.wd-form-control { resize: vertical; min-height: 120px; }

select.wd-form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}

.wd-contact-card {
  background: var(--wd-white);
  border: 1px solid var(--wd-border);
  border-radius: var(--wd-radius-lg);
  padding: 36px 24px;
  height: 100%;
  transition: var(--wd-transition);
}

.wd-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--wd-shadow-lg);
}

.wd-contact-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--wd-primary-light);
  color: var(--wd-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.wd-contact-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--wd-dark);
  margin-bottom: 8px;
}

.wd-contact-card p {
  color: var(--wd-text-light);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ---------- Footer ---------- */
.wd-footer {
  background: var(--wd-dark);
  color: #fff;
}

.wd-footer-top {
  padding: 80px 0 40px;
}

.wd-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.wd-footer-logo { height: 32px; }

.wd-footer-desc {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}

.wd-footer-social {
  display: flex;
  gap: 12px;
}

.wd-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--wd-transition);
  font-size: 16px;
}

.wd-footer-social a:hover {
  background: var(--wd-primary);
  color: #fff;
  transform: translateY(-3px);
}

.wd-footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.wd-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wd-footer-links li { margin-bottom: 12px; }

.wd-footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: var(--wd-transition);
}

.wd-footer-links a:hover { color: var(--wd-primary); transform: translateX(4px); display: inline-block; }

.wd-footer-app-desc {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin-bottom: 16px;
}

.wd-footer-apps {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.wd-app-badge img { height: 42px; }
.wd-app-badge:hover { opacity: 0.8; }

.wd-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

.wd-footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  margin: 0;
}

.wd-footer-bottom a {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

.wd-footer-bottom a:hover { color: var(--wd-primary); }

.wd-dot {
  color: rgba(255,255,255,0.2);
  margin: 0 8px;
}

/* ---------- Back to Top ---------- */
.wd-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--wd-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  transition: var(--wd-transition);
  z-index: 90;
  box-shadow: 0 4px 12px rgba(43, 128, 255, 0.35);
}

.wd-back-to-top.visible { opacity: 1; visibility: visible; }
.wd-back-to-top:hover { transform: translateY(-3px); color: #fff; background: var(--wd-primary-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .wd-toggler { display: block; }
  .navbar-collapse { display: none !important; }

  .wd-hero-title { font-size: 40px; }
  .wd-hero-stats { gap: 24px; }
  .wd-hero-float { display: none; }

  .wd-section-title { font-size: 32px; }
  .wd-page-title { font-size: 36px; }

  .wd-stats-grid { grid-template-columns: repeat(2, 1fr); }

  .wd-download-card { padding: 40px 32px; }
  .wd-download-card h2 { font-size: 30px; }

  .wd-legal-block { padding: 32px 24px; }
  .wd-contact-form-card { padding: 32px 24px; }
}

@media (max-width: 767px) {
  .wd-section { padding: 60px 0; }

  .wd-hero-title { font-size: 32px; }
  .wd-hero-desc { font-size: 16px; }
  .wd-hero-phone { max-height: 360px; }
  .wd-hero-stats { gap: 16px; }
  .wd-stat-number { font-size: 22px; }

  .wd-section-title { font-size: 28px; }
  .wd-section-desc { font-size: 16px; }

  .wd-page-header { padding: 120px 0 60px; }
  .wd-page-title { font-size: 30px; }

  .wd-trusted-logos { gap: 20px; }
  .wd-trusted-item { font-size: 13px; }

  .wd-download-card { padding: 32px 20px; }
  .wd-download-card h2 { font-size: 26px; }
  .wd-download-card p { font-size: 15px; }

  .wd-footer-top { padding: 60px 0 30px; }
  .wd-btn-lg { padding: 14px 28px; font-size: 15px; }
}

@media (max-width: 480px) {
  .wd-hero-title { font-size: 28px; }
  .wd-hero-actions { flex-direction: column; }
  .wd-hero-stats { flex-wrap: wrap; }
  .wd-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
