/* ============================================
   كوثر - Kawthar Landing Page v2
   Water Distribution & Donation Platform
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --kw-primary: #1689bf;
  --kw-primary-dark: #0b6f9f;
  --kw-primary-deeper: #085a82;
  --kw-primary-light: #1aa0d8;
  --kw-aqua: #e9f8ff;
  --kw-aqua-soft: #f5fbff;
  --kw-ink: #17445a;
  --kw-muted: #7f98a6;
  --kw-white: #ffffff;
  --kw-off-white: #f8fcff;
  --kw-gray-50: #f0f7fb;
  --kw-gray-100: #e4eff5;
  --kw-gray-200: #c8dce8;
  --kw-gray-400: #8ba8b8;
  --kw-gray-600: #4a6e80;
  --kw-green: #27ae60;
  --kw-green-light: #e8f8ef;
  --kw-gold: #f0a500;
  --kw-gold-light: #fef9ec;

  --kw-gradient-hero: linear-gradient(160deg, #0b6f9f 0%, #1689bf 40%, #1aa0d8 100%);
  --kw-gradient-btn: linear-gradient(135deg, #1aa0d8, #0878ab);
  --kw-gradient-green: linear-gradient(135deg, #27ae60, #1e8e4e);
  --kw-gradient-footer: linear-gradient(180deg, #0a3a50 0%, #082c3d 100%);
  --kw-gradient-gift: linear-gradient(135deg, #fef9ec 0%, #fff8e1 50%, #fffdf5 100%);

  --kw-shadow-sm: 0 2px 8px rgba(22, 137, 191, 0.08);
  --kw-shadow-md: 0 8px 30px rgba(22, 137, 191, 0.12);
  --kw-shadow-lg: 0 16px 50px rgba(22, 137, 191, 0.15);
  --kw-shadow-xl: 0 24px 60px rgba(17, 107, 151, 0.18);
  --kw-shadow-glow: 0 0 40px rgba(22, 137, 191, 0.25);

  --kw-font: 'Tajawal', sans-serif;
  --kw-radius-sm: 12px;
  --kw-radius-md: 20px;
  --kw-radius-lg: 28px;
  --kw-radius-full: 999px;

  --kw-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --kw-transition: all 0.4s var(--kw-ease);
  --kw-transition-fast: all 0.25s ease;
}

/* ---------- Reset ---------- */
.kw-landing *, .kw-landing *::before, .kw-landing *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

.kw-landing {
  font-family: var(--kw-font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--kw-ink);
  background: var(--kw-white);
  overflow-x: hidden;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
}

.kw-landing img { max-width: 100%; height: auto; display: block; }
.kw-landing a { text-decoration: none; color: inherit; transition: var(--kw-transition-fast); }
.kw-landing ul { list-style: none; }
.kw-landing h1,.kw-landing h2,.kw-landing h3,.kw-landing h4,.kw-landing h5,.kw-landing h6 {
  font-weight: 800; line-height: 1.3; color: var(--kw-ink);
}
.kw-landing button { font-family: var(--kw-font); cursor: pointer; }

/* ---------- Utilities ---------- */
.kw-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.kw-section { padding: 100px 0; }

.kw-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.kw-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--kw-aqua); color: var(--kw-primary);
  font-size: 14px; font-weight: 700;
  padding: 8px 22px; border-radius: var(--kw-radius-full);
  margin-bottom: 16px; border: 1px solid rgba(22,137,191,0.1);
}

.kw-section-header h2 {
  font-size: 42px; font-weight: 900; margin-bottom: 16px;
}

.kw-section-header h2 span { color: var(--kw-primary); }

.kw-section-header p {
  font-size: 18px; color: var(--kw-muted);
  max-width: 580px; margin: 0 auto; line-height: 1.9;
}

/* Buttons */
.kw-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 16px 36px; border-radius: var(--kw-radius-md);
  font-size: 17px; font-weight: 800; border: none;
  cursor: pointer; transition: var(--kw-transition);
  position: relative; overflow: hidden; font-family: var(--kw-font);
}

.kw-btn::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}
.kw-btn:hover::after { left: 100%; }

.kw-btn-primary {
  background: var(--kw-gradient-btn); color: var(--kw-white);
  box-shadow: 0 10px 30px rgba(22,137,191,0.3);
}
.kw-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(22,137,191,0.38);
}

.kw-btn-white {
  background: var(--kw-white); color: var(--kw-primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.kw-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.kw-btn-ghost {
  background: rgba(255,255,255,0.12); color: var(--kw-white);
  border: 2px solid rgba(255,255,255,0.3); backdrop-filter: blur(10px);
}
.kw-btn-ghost:hover {
  background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
}

/* Scroll Reveal */
.kw-reveal {
  opacity: 0; transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s var(--kw-ease);
}
.kw-reveal.kw-visible { opacity: 1; transform: translateY(0); }

.kw-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.kw-stagger > *:nth-child(2) { transition-delay: 0.15s; }
.kw-stagger > *:nth-child(3) { transition-delay: 0.25s; }
.kw-stagger > *:nth-child(4) { transition-delay: 0.35s; }

/* ============================================
   NAVBAR
   ============================================ */
.kw-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: var(--kw-transition);
}
.kw-nav.scrolled {
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  padding: 10px 0; box-shadow: 0 2px 30px rgba(0,0,0,0.06);
}

.kw-nav .kw-container {
  display: flex; align-items: center; justify-content: space-between;
}

.kw-nav-brand {
  display: flex; align-items: center; gap: 10px;
}
.kw-nav-brand img { height: 44px; width: auto; }
.kw-nav-brand span {
  font-size: 24px; font-weight: 900; color: var(--kw-white);
  transition: var(--kw-transition-fast);
}
.kw-nav.scrolled .kw-nav-brand span { color: var(--kw-primary-dark); }

.kw-nav-links {
  display: flex; align-items: center; gap: 6px;
}
.kw-nav-links a {
  color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 700;
  padding: 10px 20px; border-radius: var(--kw-radius-full);
}
.kw-nav-links a:hover { color: #fff; background: rgba(255,255,255,0.14); }

.kw-nav.scrolled .kw-nav-links a { color: var(--kw-gray-600); }
.kw-nav.scrolled .kw-nav-links a:hover { color: var(--kw-primary); background: var(--kw-aqua); }

.kw-nav-links .kw-nav-cta {
  background: var(--kw-gradient-btn) !important;
  color: var(--kw-white) !important;
  padding: 10px 26px;
  box-shadow: 0 4px 18px rgba(22,137,191,0.3);
  border-radius: var(--kw-radius-md);
}
.kw-nav-links .kw-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22,137,191,0.4);
}

/* Mobile Toggle */
.kw-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.kw-hamburger span {
  width: 26px; height: 3px; background: var(--kw-white);
  border-radius: 3px; transition: var(--kw-transition-fast);
}
.kw-nav.scrolled .kw-hamburger span { background: var(--kw-ink); }
.kw-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.kw-hamburger.active span:nth-child(2) { opacity: 0; }
.kw-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.kw-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.4); z-index: 998;
}
.kw-overlay.open { display: block; }

/* ============================================
   HERO SECTION
   ============================================ */
.kw-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--kw-gradient-hero); overflow: hidden;
  padding: 130px 0 100px;
}

/* Islamic geometric subtle pattern overlay */
.kw-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}

/* Animated water drops */
.kw-hero-drops { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.kw-drop {
  position: absolute; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  animation: kwDropRise linear infinite;
}
.kw-drop:nth-child(1) { width: 22px; height: 28px; bottom: -30px; left: 8%;  animation-duration: 10s; }
.kw-drop:nth-child(2) { width: 16px; height: 20px; bottom: -24px; left: 20%; animation-duration: 13s; animation-delay: 2s; }
.kw-drop:nth-child(3) { width: 30px; height: 38px; bottom: -40px; left: 35%; animation-duration: 16s; animation-delay: 4s; }
.kw-drop:nth-child(4) { width: 14px; height: 18px; bottom: -20px; left: 50%; animation-duration: 9s;  animation-delay: 1s; }
.kw-drop:nth-child(5) { width: 24px; height: 30px; bottom: -34px; left: 65%; animation-duration: 14s; animation-delay: 3s; }
.kw-drop:nth-child(6) { width: 18px; height: 22px; bottom: -26px; left: 78%; animation-duration: 11s; animation-delay: 5s; }
.kw-drop:nth-child(7) { width: 12px; height: 15px; bottom: -18px; left: 90%; animation-duration: 12s; animation-delay: 7s; }
.kw-drop:nth-child(8) { width: 20px; height: 25px; bottom: -28px; left: 42%; animation-duration: 15s; animation-delay: 6s; }

@keyframes kwDropRise {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.8; }
  85%  { opacity: 0.4; }
  100% { transform: translateY(-110vh) rotate(20deg); opacity: 0; }
}

/* Hero wave bottom */
.kw-hero-wave {
  position: absolute; bottom: -2px; left: 0; width: 100%; line-height: 0; z-index: 2;
}
.kw-hero-wave svg { width: 100%; height: 90px; display: block; }

/* Hero layout */
.kw-hero-inner {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
}

.kw-hero-text { color: var(--kw-white); }

.kw-hero-text h1 {
  font-size: 48px; font-weight: 900; color: var(--kw-white);
  line-height: 1.25; margin-bottom: 20px;
}
.kw-hero-text h1 .kw-accent {
  display: block;
  background: linear-gradient(90deg, #a5f3fc, #6ee7b7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kw-hero-text > p {
  font-size: 19px; color: rgba(255,255,255,0.82);
  line-height: 1.9; margin-bottom: 36px; max-width: 520px;
}

.kw-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

/* App store badges */
.kw-store-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.kw-store-badge {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 12px 22px; border-radius: var(--kw-radius-md);
  color: var(--kw-white); transition: var(--kw-transition);
}
.kw-store-badge:hover {
  background: rgba(255,255,255,0.2); transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.kw-store-badge svg { width: 28px; height: 28px; fill: var(--kw-white); flex-shrink: 0; }
.kw-store-badge .kw-store-text { text-align: right; }
.kw-store-badge .kw-store-text small { font-size: 11px; opacity: 0.7; display: block; font-weight: 500; }
.kw-store-badge .kw-store-text strong { font-size: 15px; font-weight: 800; }

/* Hero phone mockup */
.kw-hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}

.kw-phone-mockup {
  width: 280px; border-radius: 36px; padding: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
  animation: kwPhoneFloat 5s ease-in-out infinite;
}
.kw-phone-mockup img {
  width: 100%; border-radius: 26px;
}

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

/* Floating decorative elements around phone */
.kw-float-badge {
  position: absolute; background: var(--kw-white);
  border-radius: var(--kw-radius-md);
  padding: 12px 18px; box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 14px; color: var(--kw-ink);
  animation: kwBadgeFloat 4s ease-in-out infinite;
  white-space: nowrap;
}
.kw-float-badge .kw-badge-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.kw-float-badge-1 { top: 15%; left: -20px; animation-delay: 0s; }
.kw-float-badge-1 .kw-badge-icon { background: var(--kw-aqua); }

.kw-float-badge-2 { bottom: 20%; right: -30px; animation-delay: 1.5s; }
.kw-float-badge-2 .kw-badge-icon { background: var(--kw-green-light); }

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

/* ============================================
   SERVICES SECTION
   ============================================ */
.kw-services { padding: 100px 0; background: var(--kw-off-white); }

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

.kw-svc-card {
  background: var(--kw-white); border-radius: var(--kw-radius-lg);
  padding: 36px 28px; text-align: center;
  border: 1px solid rgba(22,137,191,0.06);
  transition: var(--kw-transition); position: relative; overflow: hidden;
}
.kw-svc-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--kw-gradient-btn);
  transform: scaleX(0); transition: transform 0.4s var(--kw-ease);
}
.kw-svc-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--kw-shadow-lg);
}
.kw-svc-card:hover::before { transform: scaleX(1); }

.kw-svc-icon {
  width: 72px; height: 72px; margin: 0 auto 20px;
  border-radius: var(--kw-radius-md); display: flex;
  align-items: center; justify-content: center;
  font-size: 34px; transition: var(--kw-transition);
}

.kw-svc-card:nth-child(1) .kw-svc-icon { background: #e8f4fd; }
.kw-svc-card:nth-child(2) .kw-svc-icon { background: #fef4e8; }
.kw-svc-card:nth-child(3) .kw-svc-icon { background: #f0e8fe; }
.kw-svc-card:nth-child(4) .kw-svc-icon { background: #e8fee8; }

.kw-svc-card:hover .kw-svc-icon { transform: scale(1.12) rotate(-5deg); }

.kw-svc-card h3 {
  font-size: 19px; font-weight: 800; margin-bottom: 10px;
  color: var(--kw-ink);
}
.kw-svc-card p {
  font-size: 14px; color: var(--kw-muted); line-height: 1.8;
}

/* ============================================
   GIFT SECTION
   ============================================ */
.kw-gift {
  padding: 100px 0;
  background: var(--kw-gradient-gift);
  position: relative; overflow: hidden;
}

.kw-gift::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(240,165,0,0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 30%, rgba(22,137,191,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.kw-gift-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 64px;
}

.kw-gift-text .kw-pill {
  background: var(--kw-gold-light); color: #b8860b;
  border-color: rgba(240,165,0,0.15);
}

.kw-gift-text h2 {
  font-size: 38px; font-weight: 900; margin-bottom: 18px;
}
.kw-gift-text h2 span { color: var(--kw-gold); }

.kw-gift-text > p {
  font-size: 18px; color: var(--kw-muted); line-height: 1.9;
  margin-bottom: 32px; max-width: 480px;
}

.kw-gift-features {
  display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px;
}
.kw-gift-feat {
  display: flex; align-items: flex-start; gap: 14px;
}
.kw-gift-feat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--kw-white); box-shadow: var(--kw-shadow-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.kw-gift-feat-text h4 { font-size: 16px; font-weight: 800; margin-bottom: 2px; }
.kw-gift-feat-text p { font-size: 14px; color: var(--kw-muted); }

/* Gift card visual */
.kw-gift-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}

.kw-gift-card-mockup {
  width: 360px; padding: 32px;
  background: var(--kw-white);
  border-radius: var(--kw-radius-lg);
  box-shadow: var(--kw-shadow-xl);
  border: 1px solid rgba(22,137,191,0.06);
  text-align: center;
  transform: rotate(-2deg);
  transition: var(--kw-transition);
  position: relative; overflow: hidden;
}
.kw-gift-card-mockup:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 30px 70px rgba(17,107,151,0.22);
}

.kw-gift-card-header {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 20px;
}
.kw-gift-card-header .kw-gc-logo {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--kw-aqua); display: flex;
  align-items: center; justify-content: center; font-size: 22px;
}
.kw-gift-card-header span { font-size: 18px; font-weight: 900; color: var(--kw-primary); }

.kw-gc-recipient {
  font-size: 22px; font-weight: 900; color: var(--kw-primary-dark);
  margin-bottom: 8px;
}
.kw-gc-message {
  font-size: 15px; color: var(--kw-muted); line-height: 1.8;
  margin-bottom: 20px; padding: 0 10px;
}
.kw-gc-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--kw-aqua); color: var(--kw-primary);
  padding: 10px 22px; border-radius: var(--kw-radius-full);
  font-weight: 800; font-size: 15px; margin-bottom: 20px;
}
.kw-gc-illustration {
  height: 120px;
  background: linear-gradient(135deg, #dff5ff, #e8f8ff);
  border-radius: var(--kw-radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 50px; gap: 8px;
  position: relative; overflow: hidden;
}
.kw-gc-illustration::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 30px;
  background: rgba(22,137,191,0.08);
  border-radius: 50% 50% 0 0;
  animation: kwGcWave 3s ease-in-out infinite;
}
@keyframes kwGcWave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Sparkle decorations */
.kw-sparkle {
  position: absolute; font-size: 24px;
  animation: kwSparkle 2s ease-in-out infinite;
}
.kw-sparkle-1 { top: -10px; right: -10px; animation-delay: 0s; }
.kw-sparkle-2 { bottom: 10px; left: -12px; animation-delay: 0.8s; }
.kw-sparkle-3 { top: 30%; right: -16px; animation-delay: 1.5s; }

@keyframes kwSparkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.1) rotate(15deg); }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.kw-how { padding: 100px 0; background: var(--kw-white); }

.kw-steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  position: relative;
}

/* Connecting line */
.kw-steps-grid::before {
  content: ''; position: absolute;
  top: 52px; right: 16.66%; left: 16.66%;
  height: 3px;
  background: linear-gradient(90deg, var(--kw-primary-light), var(--kw-primary), var(--kw-green));
  border-radius: 3px; z-index: 0;
}

.kw-step {
  text-align: center; position: relative; z-index: 1;
  padding: 0 20px;
}

.kw-step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--kw-white); border: 3px solid var(--kw-primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 24px; font-weight: 900;
  color: var(--kw-primary); transition: var(--kw-transition);
  box-shadow: 0 0 0 8px var(--kw-white), var(--kw-shadow-sm);
}
.kw-step:hover .kw-step-num {
  background: var(--kw-primary); color: var(--kw-white);
  transform: scale(1.15);
  box-shadow: 0 0 0 8px var(--kw-white), var(--kw-shadow-glow);
}

.kw-step-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--kw-aqua); margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}

.kw-step h4 {
  font-size: 18px; font-weight: 800; margin-bottom: 8px;
}
.kw-step p {
  font-size: 14px; color: var(--kw-muted); line-height: 1.8;
  max-width: 280px; margin: 0 auto;
}

/* ============================================
   STATS SECTION
   ============================================ */
.kw-stats {
  padding: 80px 0; position: relative; overflow: hidden;
  background: var(--kw-gradient-hero);
}

.kw-stats-drops {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.kw-stats-drops .kw-drop { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.06); }

.kw-stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  position: relative; z-index: 2;
}

.kw-stat {
  text-align: center; padding: 36px 20px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--kw-radius-lg); backdrop-filter: blur(10px);
  transition: var(--kw-transition);
}
.kw-stat:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-6px);
}

.kw-stat-icon {
  width: 60px; height: 60px; margin: 0 auto 16px;
  border-radius: var(--kw-radius-md);
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}

.kw-stat-val {
  font-size: 46px; font-weight: 900; color: var(--kw-white);
  margin-bottom: 4px; direction: ltr; display: inline-block;
}

.kw-stat-label {
  font-size: 16px; color: rgba(255,255,255,0.7); font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.kw-footer {
  background: var(--kw-gradient-footer); color: rgba(255,255,255,0.65);
  padding-top: 80px;
}

.kw-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.kw-footer-about .kw-flogo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.kw-footer-about .kw-flogo img { height: 38px; }
.kw-footer-about .kw-flogo span {
  font-size: 22px; font-weight: 900; color: var(--kw-white);
}
.kw-footer-about > p {
  font-size: 14px; line-height: 1.9; color: rgba(255,255,255,0.5);
  margin-bottom: 24px; max-width: 340px;
}

.kw-footer-social { display: flex; gap: 10px; }
.kw-footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.07); display: flex;
  align-items: center; justify-content: center;
  transition: var(--kw-transition);
}
.kw-footer-social a:hover {
  background: var(--kw-primary); transform: translateY(-3px);
}
.kw-footer-social a svg { width: 17px; height: 17px; fill: rgba(255,255,255,0.7); }
.kw-footer-social a:hover svg { fill: var(--kw-white); }

.kw-fcol h4 {
  font-size: 16px; font-weight: 800; color: var(--kw-white);
  margin-bottom: 22px; position: relative;
}
.kw-fcol h4::after {
  content: ''; position: absolute; bottom: -6px; right: 0;
  width: 28px; height: 3px; background: var(--kw-primary);
  border-radius: 3px;
}
.kw-fcol ul { display: flex; flex-direction: column; gap: 12px; }
.kw-fcol ul li a {
  font-size: 14px; color: rgba(255,255,255,0.5);
}
.kw-fcol ul li a:hover { color: var(--kw-primary-light); padding-right: 6px; }

.kw-footer-stores { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.kw-footer-store-btn {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 16px; border-radius: var(--kw-radius-sm);
  color: var(--kw-white); transition: var(--kw-transition);
}
.kw-footer-store-btn:hover {
  background: rgba(255,255,255,0.12); transform: translateY(-2px);
}
.kw-footer-store-btn svg { width: 22px; height: 22px; fill: var(--kw-white); flex-shrink: 0; }
.kw-footer-store-btn small { font-size: 10px; opacity: 0.6; display: block; }
.kw-footer-store-btn strong { font-size: 13px; font-weight: 700; }

.kw-footer-bottom {
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.kw-footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.kw-footer-bottom a { color: var(--kw-primary-light); }
.kw-footer-bottom a:hover { color: var(--kw-white); }

/* Go top */
.kw-go-top {
  position: fixed; bottom: 28px; left: 28px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--kw-gradient-btn); color: var(--kw-white);
  border: none; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--kw-shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: var(--kw-transition);
}
.kw-go-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.kw-go-top:hover { transform: translateY(-4px); box-shadow: var(--kw-shadow-glow); }
.kw-go-top svg { width: 20px; height: 20px; fill: var(--kw-white); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .kw-hero-inner { grid-template-columns: 1fr; text-align: center; gap: 50px; }
  .kw-hero-text > p { margin: 0 auto 36px; }
  .kw-hero-btns, .kw-store-badges { justify-content: center; }
  .kw-services-grid { grid-template-columns: repeat(2, 1fr); }
  .kw-gift-inner { grid-template-columns: 1fr; text-align: center; }
  .kw-gift-text > p { margin: 0 auto 32px; }
  .kw-gift-features { align-items: center; }
  .kw-gift-feat { text-align: right; }
  .kw-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .kw-section-header h2 { font-size: 34px; }
  .kw-hero-text h1 { font-size: 38px; }
}

@media (max-width: 768px) {
  .kw-nav-links {
    position: fixed; top: 0; right: -300px; width: 280px; height: 100vh;
    background: var(--kw-white); flex-direction: column;
    padding: 100px 28px 40px; align-items: flex-start; gap: 4px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.12);
    transition: right 0.4s var(--kw-ease); z-index: 999;
  }
  .kw-nav-links.open { right: 0; }
  .kw-nav-links a {
    color: var(--kw-gray-600) !important; font-size: 16px;
    padding: 14px 16px; width: 100%; border-radius: var(--kw-radius-sm);
  }
  .kw-nav-links a:hover { background: var(--kw-aqua) !important; color: var(--kw-primary) !important; }
  .kw-nav-links .kw-nav-cta { margin-top: 12px; width: 100%; justify-content: center; }
  .kw-hamburger { display: flex; }

  .kw-hero { padding: 130px 0 80px; min-height: auto; }
  .kw-hero-text h1 { font-size: 30px; }
  .kw-hero-text > p { font-size: 16px; }
  .kw-hero-visual { display: none; }

  .kw-services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .kw-svc-card { padding: 28px 20px; }

  .kw-gift-card-mockup { width: 300px; padding: 24px; }

  .kw-steps-grid { grid-template-columns: 1fr; gap: 36px; }
  .kw-steps-grid::before { display: none; }

  .kw-stats-grid { grid-template-columns: 1fr; gap: 20px; }

  .kw-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .kw-footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .kw-section { padding: 70px 0; }
  .kw-section-header h2 { font-size: 28px; }
  .kw-section-header p { font-size: 15px; }
  .kw-section-header { margin-bottom: 48px; }
}

@media (max-width: 480px) {
  .kw-hero-text h1 { font-size: 26px; }
  .kw-hero-btns { flex-direction: column; align-items: center; }
  .kw-store-badges { flex-direction: column; align-items: center; }
  .kw-store-badge { width: 100%; max-width: 240px; }
  .kw-btn { width: 100%; max-width: 280px; padding: 14px 28px; font-size: 15px; }
  .kw-services-grid { grid-template-columns: 1fr; }
  .kw-section-header h2 { font-size: 24px; }
  .kw-gift-text h2 { font-size: 26px; }
  .kw-gift-card-mockup { width: 100%; max-width: 320px; }
  .kw-stat-val { font-size: 36px; }
}

/* Hide old template */
.kw-landing .page_wrapper > header,
.kw-landing .page_wrapper > footer,
.kw-landing #preloader { display: none !important; }
