/* =====================================================
   BAKULAN WA - Modern Light Theme (watzap.id style)
   Clean, friendly, professional SaaS landing page
   ===================================================== */

/* --- CSS Variables --- */
:root {
  --wz-primary: #da336b;
  --wz-primary-dark: #bf154c;
  --wz-primary-light: #f8e0ea;
  --wz-primary-rgb: 218, 51, 107;
  --wz-cta: #ffd12e;
  --wz-cta-dark: #e1a41b;
  --wz-cta-text: #350000;
  --wz-text: #2b2b2b;
  --wz-text-secondary: #555;
  --wz-text-muted: #888;
  --wz-bg: #ffffff;
  --wz-bg-soft: #f3fafc;
  --wz-bg-gray: #f8f9fc;
  --wz-bg-gradient: linear-gradient(135deg, #f3fafc 0%, #fafbff 50%, #fff0f5 100%);
  --wz-border: #eef0f3;
  --wz-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  --wz-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
  --wz-shadow-btn: 0px 4px 0px 0px var(--wz-cta-dark);
  --wz-shadow-pink: 1px 2px 8px #d7507d;
  --wz-radius: 16px;
  --wz-radius-sm: 10px;
  --wz-radius-pill: 50px;
  --wz-font: 'Quicksand', sans-serif;
  --wz-transition: all 0.3s ease;
}

/* --- Base Styles --- */
.wz-landing {
  background: var(--wz-bg);
  color: var(--wz-text);
  font-family: var(--wz-font);
  overflow-x: hidden;
  line-height: 1.7;
}

.wz-landing h1,
.wz-landing h2,
.wz-landing h3,
.wz-landing h4,
.wz-landing h5,
.wz-landing h6 {
  font-family: var(--wz-font);
  color: var(--wz-text);
  font-weight: 700;
  line-height: 1.3;
}

.wz-landing p {
  color: var(--wz-text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 500;
}

.wz-landing a {
  color: var(--wz-primary);
  text-decoration: none;
  transition: var(--wz-transition);
}

.wz-landing a:hover {
  color: var(--wz-primary-dark);
}

/* --- Navbar --- */
.wz-nav {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 0.8rem 0;
  transition: var(--wz-transition);
  background: transparent;
}

.wz-nav.scrolled {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
  padding: 0.5rem 0;
}

.wz-nav .navbar-brand img {
  max-height: 36px;
  transition: var(--wz-transition);
}

.wz-nav .nav-link {
  font-family: var(--wz-font);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--wz-text) !important;
  padding: 0.5rem 1rem !important;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: var(--wz-transition);
}

.wz-nav .nav-link:hover,
.wz-nav .nav-link.active {
  color: var(--wz-primary) !important;
}

/* Nav CTA buttons */
.wz-nav .btn-wz-register {
  background: var(--wz-cta);
  color: var(--wz-cta-text) !important;
  border: none;
  border-radius: var(--wz-radius-pill);
  padding: 0.5rem 1.5rem !important;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: var(--wz-shadow-btn);
  transition: var(--wz-transition);
}

.wz-nav .btn-wz-register:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 0px 0px var(--wz-cta-dark);
}

.wz-nav .btn-wz-login {
  background: transparent;
  color: var(--wz-text) !important;
  border: none;
  padding: 0.5rem 1rem !important;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--wz-transition);
}

.wz-nav .btn-wz-login:hover {
  color: var(--wz-primary) !important;
}

/* Mobile nav */
.wz-nav .offcanvas-nav {
  background: #fff !important;
}

.wz-nav .offcanvas-header {
  border-bottom: 1px solid var(--wz-border);
}

.wz-nav .navbar-hamburger button.hamburger {
  background: var(--wz-primary);
  border: none;
  border-radius: 0 !important;
  padding: 16px 14px;
  width: auto;
  height: auto;
  box-shadow: 0 2px 10px rgba(218, 51, 107, 0.3);
}

.wz-nav button.hamburger:before,
.wz-nav button.hamburger span,
.wz-nav button.hamburger:after {
  background: #ffffff !important;
  height: 2.5px !important;
  width: 20px !important;
  border-radius: 2px;
}

/* --- Buttons --- */
.btn-wz-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--wz-cta);
  color: var(--wz-cta-text) !important;
  font-family: var(--wz-font);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--wz-radius-pill);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: var(--wz-shadow-btn);
  transition: var(--wz-transition);
  text-decoration: none !important;
  cursor: pointer;
}

.btn-wz-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 0px 0px var(--wz-cta-dark);
  color: var(--wz-cta-text) !important;
}

.btn-wz-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--wz-primary);
  color: #fff !important;
  font-family: var(--wz-font);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--wz-radius-pill);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: var(--wz-shadow-pink);
  transition: var(--wz-transition);
  text-decoration: none !important;
  cursor: pointer;
}

.btn-wz-secondary:hover {
  background: var(--wz-primary-dark);
  transform: translateY(-2px);
  box-shadow: 1px 4px 12px #d7507d;
  color: #fff !important;
}

.btn-wz-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  background: transparent;
  color: var(--wz-primary) !important;
  font-family: var(--wz-font);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--wz-radius-pill);
  border: 2px solid var(--wz-primary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: var(--wz-transition);
  text-decoration: none !important;
  cursor: pointer;
}

.btn-wz-outline:hover {
  background: var(--wz-primary);
  color: #fff !important;
  transform: translateY(-2px);
}

/* --- Hero Section --- */
.wz-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--wz-bg-gradient);
  padding: 7rem 0 4rem;
  overflow: hidden;
}

/* Soft decorative shapes */
.wz-hero .wz-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.wz-hero .wz-shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(var(--wz-primary-rgb), 0.06);
  top: -80px;
  right: -80px;
}

.wz-hero .wz-shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 209, 46, 0.08);
  bottom: -40px;
  left: -60px;
}

.wz-hero .wz-shape-3 {
  width: 180px;
  height: 180px;
  background: rgba(var(--wz-primary-rgb), 0.04);
  top: 40%;
  left: 20%;
}

.wz-hero-content {
  position: relative;
  z-index: 2;
}

.wz-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--wz-primary-light);
  border-radius: var(--wz-radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--wz-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.wz-hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--wz-primary);
  border-radius: 50%;
  animation: wzPulse 2s ease-in-out infinite;
}

.wz-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--wz-text);
}

.wz-hero h1 .wz-highlight {
  color: var(--wz-primary);
}

.wz-hero .hero-desc {
  font-size: 1.1rem;
  color: var(--wz-text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 500px;
  font-weight: 500;
}

.wz-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Hero illustration */
.wz-hero-illustration {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wz-hero-illustration svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
}

/* Hero stats */
.wz-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.wz-stat {
  text-align: left;
}

.wz-stat-value {
  font-family: var(--wz-font);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--wz-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.wz-stat-label {
  font-size: 0.78rem;
  color: var(--wz-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Wave divider */
.wz-wave-divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
}

.wz-wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

/* --- Sections --- */
.wz-section {
  position: relative;
  padding: 5rem 0;
}

.wz-section-white {
  background: var(--wz-bg);
}

.wz-section-soft {
  background: var(--wz-bg-soft);
}

.wz-section-gray {
  background: var(--wz-bg-gray);
}

.wz-section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.wz-section-title .wz-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--wz-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.wz-section-title h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.wz-section-title p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--wz-text-secondary);
}

.wz-line-accent {
  width: 50px;
  height: 4px;
  background: var(--wz-primary);
  border-radius: 4px;
  margin: 0 auto 1.25rem;
}

/* --- Feature Cards --- */
.wz-features {
  padding: 5rem 0;
  background: var(--wz-bg);
}

.wz-feature-card {
  background: #fff;
  border: 1px solid var(--wz-border);
  border-radius: var(--wz-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--wz-transition);
  height: 100%;
}

.wz-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--wz-shadow-lg);
  border-color: transparent;
}

.wz-feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: var(--wz-transition);
}

.wz-feature-icon.icon-pink {
  background: rgba(var(--wz-primary-rgb), 0.08);
  color: var(--wz-primary);
}

.wz-feature-icon.icon-green {
  background: rgba(37, 211, 102, 0.08);
  color: #25d366;
}

.wz-feature-icon.icon-blue {
  background: rgba(0, 112, 255, 0.08);
  color: #0070ff;
}

.wz-feature-icon.icon-yellow {
  background: rgba(255, 209, 46, 0.12);
  color: #e1a41b;
}

.wz-feature-icon.icon-purple {
  background: rgba(114, 82, 199, 0.08);
  color: #7252c7;
}

.wz-feature-card:hover .wz-feature-icon {
  transform: scale(1.1);
}

.wz-feature-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.wz-feature-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--wz-text-muted);
}

/* --- Showcase Sections --- */
.wz-showcase {
  padding: 5rem 0;
}

.wz-showcase .wz-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--wz-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.wz-showcase h2 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.wz-img-frame {
  position: relative;
  border-radius: var(--wz-radius);
  overflow: hidden;
  box-shadow: var(--wz-shadow-lg);
  transition: var(--wz-transition);
}

.wz-img-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.wz-img-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

/* Bullet list */
.wz-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.wz-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--wz-text-secondary);
}

.wz-list li i {
  color: var(--wz-primary);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.wz-list li strong {
  color: var(--wz-text);
  font-weight: 700;
}

/* --- Image Gallery --- */
.wz-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.wz-gallery-item {
  border-radius: var(--wz-radius-sm);
  overflow: hidden;
  box-shadow: var(--wz-shadow);
  transition: var(--wz-transition);
}

.wz-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.wz-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--wz-shadow-lg);
}

/* --- Pricing Section --- */
.wz-pricing {
  padding: 5rem 0;
  background: var(--wz-bg-gray);
}

.wz-price-card {
  background: #fff;
  border: 2px solid var(--wz-border);
  border-radius: var(--wz-radius);
  padding: 2.5rem 2rem;
  transition: var(--wz-transition);
  height: 100%;
  position: relative;
}

.wz-price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--wz-shadow-lg);
}

.wz-price-card.featured {
  border-color: var(--wz-primary);
  box-shadow: var(--wz-shadow-lg);
}

.wz-price-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--wz-primary);
  border-radius: var(--wz-radius) var(--wz-radius) 0 0;
}

.wz-price-card .plan-name {
  font-family: var(--wz-font);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--wz-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}

.wz-price-card .plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 0.25rem;
}

.wz-price-card .price-currency {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--wz-text-muted);
}

.wz-price-card .price-value {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--wz-text);
  line-height: 1;
}

.wz-price-card .price-duration {
  font-size: 0.85rem;
  color: var(--wz-text-muted);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.wz-price-card .plan-divider {
  width: 100%;
  height: 1px;
  background: var(--wz-border);
  margin: 1.25rem 0;
}

.wz-price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wz-price-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.45rem 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--wz-text-secondary);
}

.wz-price-list li i {
  color: var(--wz-primary);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.wz-price-list li strong {
  color: var(--wz-text);
  display: block;
  font-weight: 700;
  font-size: 0.82rem;
}

/* --- Clients Section --- */
.wz-clients {
  padding: 5rem 0;
  background: var(--wz-bg);
}

.wz-client-card {
  background: #fff;
  border: 1px solid var(--wz-border);
  border-radius: var(--wz-radius-sm);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  transition: var(--wz-transition);
}

.wz-client-card:hover {
  box-shadow: var(--wz-shadow);
  transform: translateY(-4px);
  border-color: transparent;
}

.wz-client-card img {
  max-width: 100%;
  max-height: 45px;
  filter: grayscale(100%) opacity(0.5);
  transition: var(--wz-transition);
}

.wz-client-card:hover img {
  filter: grayscale(0%) opacity(1);
}

/* --- Footer --- */
.wz-footer {
  background: var(--wz-text);
  color: rgba(255, 255, 255, 0.85);
}

.wz-footer-main {
  padding: 4rem 0 2rem;
}

.wz-footer h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.6rem;
}

.wz-footer h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
  color: var(--wz-cta);
}

.wz-footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.wz-footer .footer-desc {
  max-width: 300px;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.wz-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wz-footer ul li {
  margin-bottom: 0.6rem;
}

.wz-footer ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--wz-transition);
}

.wz-footer ul li a:hover {
  color: var(--wz-cta);
  padding-left: 4px;
}

.wz-footer address {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.7;
}

.wz-footer-cta .btn-wz-primary {
  padding: 12px 28px;
  font-size: 0.85rem;
}

.wz-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.wz-footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.wz-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 1rem;
  margin-left: 8px;
  transition: var(--wz-transition);
  text-decoration: none;
}

.wz-social a:hover {
  border-color: var(--wz-cta);
  color: var(--wz-cta) !important;
  background: rgba(255, 209, 46, 0.1);
  transform: translateY(-2px);
}

/* --- Hide MFB language selector (moved to header) --- */
.mfb-component--br,
.mfb-component--bl {
  display: none !important;
}

/* --- Header Language Dropdown --- */
.wz-lang-dropdown {
  position: relative;
}

.wz-lang-dropdown .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0 !important;
  border-radius: 50%;
  border: 1px solid var(--wz-border);
  color: var(--wz-text) !important;
  font-size: 1.15rem;
  transition: var(--wz-transition);
  background: rgba(255, 255, 255, 0.6);
}

.wz-lang-dropdown .nav-link::after {
  display: none;
}

.wz-lang-dropdown .nav-link:hover {
  border-color: var(--wz-primary);
  color: var(--wz-primary) !important;
  background: var(--wz-primary-light);
}

.wz-nav.scrolled .wz-lang-dropdown .nav-link {
  border-color: var(--wz-border);
  background: var(--wz-bg);
}

.wz-lang-menu {
  min-width: 180px;
  padding: 8px 0;
  border: 1px solid var(--wz-border);
  border-radius: var(--wz-radius-sm);
  box-shadow: var(--wz-shadow-lg);
  background: var(--wz-bg);
  margin-top: 8px !important;
  z-index: 10001;
}

.wz-lang-menu.show {
  display: block;
  position: absolute;
  left: auto;
  top: 100%;
  transform: none !important;
}

.wz-lang-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  font-family: var(--wz-font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wz-text);
  text-decoration: none;
  transition: var(--wz-transition);
}

.wz-lang-menu li a:hover {
  background: var(--wz-bg-soft);
  color: var(--wz-primary);
}

.wz-lang-menu li a .flag-icon {
  font-size: 1.1rem;
  border-radius: 3px;
}

.wz-lang-menu .wz-lang-more {
  border-top: 1px solid var(--wz-border);
  margin-top: 4px;
  padding-top: 4px;
}

.wz-lang-menu .wz-lang-more a {
  color: var(--wz-primary);
  font-weight: 700;
}

.wz-lang-loading {
  display: flex;
  justify-content: center;
  padding: 12px;
  color: var(--wz-primary);
}

/* --- Floating CTA Button --- */
.wz-floating-cta {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 9999;
  animation: wzBounceIn 0.6s ease;
}

.wz-floating-cta a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--wz-primary);
  color: #fff !important;
  font-family: var(--wz-font);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--wz-radius-pill);
  box-shadow: var(--wz-shadow-pink);
  text-decoration: none;
  transition: var(--wz-transition);
  white-space: nowrap;
}

.wz-floating-cta a:hover {
  background: var(--wz-primary-dark);
  transform: translateY(-2px);
  box-shadow: 1px 4px 14px #d7507d;
}

.wz-floating-cta a i {
  font-size: 1.2rem;
}

/* --- Animations --- */
@keyframes wzPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

@keyframes wzBounceIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  60% {
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wzFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Scroll reveal */
.wz-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.wz-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1199px) {
  .wz-hero {
    padding: 7rem 0 4rem;
  }
}

@media (max-width: 991px) {
  .wz-hero {
    padding: 7rem 0 4rem;
    min-height: auto;
    text-align: center;
  }

  .wz-hero-content {
    margin-bottom: 2.5rem;
  }

  .wz-hero .hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .wz-hero-btns {
    justify-content: center;
  }

  .wz-hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .wz-hero-illustration svg {
    max-width: 320px;
  }

  .wz-section {
    padding: 4rem 0;
  }

  .wz-stats {
    justify-content: center;
  }

  .wz-stat {
    text-align: center;
  }

  .wz-showcase .row {
    text-align: center;
  }

  .wz-showcase .wz-list {
    display: inline-block;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .wz-hero {
    padding: 6rem 0 3rem;
  }

  .wz-hero h1 {
    font-size: 1.75rem;
  }

  .wz-hero .hero-desc {
    font-size: 0.95rem;
  }

  .btn-wz-primary,
  .btn-wz-secondary {
    padding: 12px 24px;
    font-size: 0.85rem;
    width: 100%;
  }

  .wz-hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .wz-section-title h2 {
    font-size: 1.35rem;
  }

  .wz-feature-card {
    padding: 1.5rem 1.25rem;
  }

  .wz-price-card {
    padding: 2rem 1.5rem;
  }

  .wz-price-card .price-value {
    font-size: 2.2rem;
  }

  .wz-footer-main {
    padding: 3rem 1.25rem 1.5rem;
  }

  .wz-footer h3 {
    font-size: 1.15rem;
  }

  .wz-footer .widget {
    margin-bottom: 0.5rem;
  }

  .wz-footer-bottom {
    text-align: center;
    padding: 1.25rem 1.25rem;
  }

  .wz-footer-bottom .d-md-flex {
    flex-direction: column;
    gap: 1rem;
  }

  .wz-social {
    justify-content: center;
  }

  .wz-social a {
    margin: 0 4px;
  }

  .wz-nav .nav-link {
    font-size: 0.95rem;
    padding: 0.7rem 0 !important;
    border-bottom: 1px solid var(--wz-border);
    color: var(--wz-text) !important;
  }

  .wz-floating-cta {
    bottom: 80px;
    right: 16px;
    left: 16px;
  }

  .wz-floating-cta a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .wz-hero h1 {
    font-size: 1.5rem;
  }

  .wz-hero-illustration svg {
    max-width: 260px;
  }

  .wz-stats {
    gap: 1.5rem;
  }

  .wz-stat-value {
    font-size: 1.3rem;
  }

  .wz-gallery-grid {
    gap: 0.6rem;
  }

  .wz-client-card {
    padding: 1rem;
    min-height: 65px;
  }
}

/* --- Override base theme conflicts --- */
.wz-landing .wrapper {
  background: transparent !important;
}

.wz-landing .bg-light,
.wz-landing .bg-gray,
.wz-landing .bg-soft-primary {
  background: transparent !important;
}

.wz-landing .card {
  background: transparent;
  border: none;
}

.wz-landing .shadow-lg {
  box-shadow: none !important;
}

/* Static pages consistency */
.accent-header {
  background-color: var(--wz-primary) !important;
  background-image: none !important;
}

.accent-header .accent-overlay {
  background: linear-gradient(160deg, var(--wz-primary) 0%, var(--wz-primary-dark) 100%) !important;
}

.accent-header .wrapper.bg-gray {
  background: var(--wz-bg) !important;
}

.accent-header h1,
.accent-header .text-white {
  font-family: var(--wz-font);
  color: #ffffff !important;
}
