/**
 * WISANGGENI CORE • DESIGN SYSTEM (NUSANTARA TECH HERITAGE)
 * https://wisanggenicore.my.id/
 */

:root {
  /* Obsidian Charcoal & Midnight Canvas */
  --bg-primary: #0b0f19;
  --bg-surface: #111827;
  --bg-surface-elevated: #1a2234;
  --bg-card: rgba(17, 24, 39, 0.78);
  --bg-glass: rgba(26, 34, 52, 0.65);
  
  /* Wisanggeni Fire Amber, Imperial Gold & Crimson Embers */
  --ember-gold: #fbbf24;
  --fire-amber: #f59e0b;
  --fire-amber-dark: #d97706;
  --fire-crimson: #ef4444;
  --flame-gradient: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  
  /* Modern High-Tech Accents */
  --tech-cyan: #06b6d4;
  --tech-emerald: #10b981;
  --tech-purple: #8b5cf6;
  --tech-blue: #3b82f6;

  /* Typography Colors */
  --text-white: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  /* Borders & Glows */
  --border-glass: rgba(245, 158, 11, 0.16);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --glow-amber: 0 0 24px -4px rgba(245, 158, 11, 0.35);
  --glow-crimson: 0 0 24px -4px rgba(239, 68, 68, 0.35);
  --glow-box: 0 10px 30px -10px rgba(0, 0, 0, 0.5);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(245, 158, 11, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(239, 68, 68, 0.05) 0%, transparent 45%);
  color: var(--text-white);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.wg-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Header & Sticky Navbar */
.wg-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  padding: 14px 0;
}

.wg-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.wg-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.wg-brand-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--flame-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--glow-amber);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.wg-brand-text h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #ffffff 0%, var(--ember-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.wg-brand-text p {
  font-size: 11px;
  color: var(--ember-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wg-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.wg-nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: color 0.2s, transform 0.2s;
}

.wg-nav-link:hover {
  color: var(--ember-gold);
}

.wg-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--flame-gradient);
  color: #0b0f19;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: var(--glow-amber);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.wg-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(245, 158, 11, 0.55);
}

/* Status Pill in Navbar */
.wg-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #34d399;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.wg-pulse-dot {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  animation: wg-pulse 2s infinite;
}

@keyframes wg-pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Hero Section */
.wg-hero {
  padding: 70px 0 50px;
  text-align: center;
  position: relative;
}

.wg-badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--border-glass);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--ember-gold);
  margin-bottom: 24px;
}

.wg-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.wg-hero h1 span.glow-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wg-hero-lead {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  max-width: 820px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.wg-hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.wg-btn-primary {
  background: var(--flame-gradient);
  color: #0b0f19;
  font-weight: 800;
  font-size: 14.5px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--glow-amber);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
}

.wg-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 32px rgba(245, 158, 11, 0.6);
}

.wg-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-subtle);
  transition: all 0.2s;
  cursor: pointer;
}

.wg-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-glass);
  transform: translateY(-2px);
}

/* Stat Counters */
.wg-stats-bar {
  margin: 45px auto 0;
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.wg-stat-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.wg-stat-item:hover {
  border-color: var(--border-glass);
  transform: translateY(-2px);
}

.wg-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--ember-gold);
  line-height: 1.2;
}

.wg-stat-label {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
}

/* Section Jasa Pembuatan Aplikasi Murah */
.wg-jasa-section {
  margin: 70px 0;
  background: linear-gradient(135deg, rgba(26, 34, 52, 0.9) 0%, rgba(17, 24, 39, 0.95) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 46px 40px;
  box-shadow: var(--glow-box);
  position: relative;
  overflow: hidden;
}

.wg-jasa-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.wg-jasa-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.wg-jasa-badge {
  display: inline-block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.wg-jasa-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.wg-jasa-content p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.wg-jasa-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.wg-jasa-feat-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-white);
}

.wg-jasa-feat-item span.icon {
  color: var(--ember-gold);
  font-size: 16px;
}

.wg-jasa-cta-box {
  background: rgba(11, 15, 25, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

.wg-jasa-price-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--ember-gold);
  margin-bottom: 6px;
}

.wg-jasa-price-sub {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Filter & Search Bar */
.wg-filter-section {
  margin: 50px 0 28px;
}

.wg-search-wrap {
  position: relative;
  max-width: 680px;
  margin: 0 auto 24px;
}

.wg-search-input {
  width: 100%;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 15px 24px 15px 52px;
  font-size: 15px;
  color: var(--text-white);
  outline: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.25s;
}

.wg-search-input:focus {
  border-color: var(--fire-amber);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2), 0 4px 20px rgba(0, 0, 0, 0.4);
}

.wg-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--text-dim);
}

.wg-cluster-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.wg-cluster-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.wg-cluster-btn:hover {
  color: var(--text-white);
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.08);
}

.wg-cluster-btn.active {
  background: var(--flame-gradient);
  color: #0b0f19;
  border-color: transparent;
  box-shadow: var(--glow-amber);
}

/* 50 Verticals Grid */
.wg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 22px;
  margin-bottom: 70px;
}

.wg-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.wg-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.wg-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glass);
  box-shadow: var(--glow-amber);
}

.wg-card:hover::before {
  opacity: 1;
}

.wg-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.wg-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.wg-card-badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.12);
  color: var(--ember-gold);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.wg-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 4px;
  line-height: 1.3;
}

.wg-card-brand {
  font-size: 12px;
  color: var(--ember-gold);
  font-weight: 700;
  margin-bottom: 10px;
}

.wg-card-tagline {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.wg-card-problem {
  background: rgba(0, 0, 0, 0.25);
  border-left: 3px solid var(--fire-amber);
  padding: 8px 12px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 11.5px;
  color: #cbd5e1;
  margin-bottom: 18px;
  line-height: 1.45;
}

/* Card Action Buttons */
.wg-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.wg-card-main-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.wg-btn-web-view {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
  border: 1px solid rgba(56, 189, 248, 0.35);
  white-space: nowrap;
}

.wg-btn-web-view:hover {
  background: linear-gradient(135deg, #0369a1 0%, #1d4ed8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.45);
  border-color: #38bdf8;
  color: white;
}

.wg-btn-download-apk {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
  border: 1px solid rgba(52, 211, 153, 0.35);
  white-space: nowrap;
}

.wg-btn-download-apk:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
  border-color: #34d399;
}

.wg-card-btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.wg-btn-detail {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
}

.wg-btn-detail:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-glass);
}

.wg-btn-wa-card {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
}

.wg-btn-wa-card:hover {
  background: rgba(37, 211, 102, 0.22);
}

/* Detail Modal */
.wg-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.wg-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.wg-modal {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 32px;
  position: relative;
}

.wg-modal-overlay.open .wg-modal {
  transform: translateY(0) scale(1);
}

.wg-modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
}

.wg-modal-close:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.wg-modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.wg-modal-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--flame-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: var(--glow-amber);
}

.wg-modal-title h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-white);
}

.wg-modal-title p {
  font-size: 13.5px;
  color: var(--ember-gold);
  font-weight: 700;
}

/* Modal Navigation Tabs */
.wg-modal-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
  padding-bottom: 10px;
}

.wg-tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}

.wg-tab-btn.active {
  background: rgba(245, 158, 11, 0.15);
  color: var(--ember-gold);
}

/* Simulator Phone 9:16 Frame */
.wg-phone-frame {
  max-width: 320px;
  margin: 0 auto;
  background: #000;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 0 0 3px #334155, 0 20px 40px rgba(0,0,0,0.8);
  border: 4px solid #1e293b;
}

.wg-phone-notch {
  width: 120px;
  height: 18px;
  background: #0f172a;
  margin: 0 auto 10px;
  border-radius: 0 0 14px 14px;
}

.wg-phone-screen {
  background: #0f172a;
  border-radius: 24px;
  padding: 16px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Floating WhatsApp Button */
.wg-floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: white;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  font-weight: 800;
  font-size: 13.5px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.wg-floating-wa:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.wg-floating-wa .icon-wa {
  font-size: 20px;
}

/* Footer */
.wg-footer {
  border-top: 1px solid var(--border-subtle);
  background: rgba(11, 15, 25, 0.95);
  padding: 50px 0 30px;
  margin-top: 80px;
}

.wg-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.wg-footer-links {
  display: flex;
  gap: 20px;
}

.wg-footer-link {
  color: var(--text-dim);
  font-size: 12.5px;
  text-decoration: none;
  transition: color 0.2s;
}

.wg-footer-link:hover {
  color: var(--ember-gold);
}

/* Responsive Rules */
@media (max-width: 900px) {
  .wg-jasa-grid {
    grid-template-columns: 1fr;
  }
  .wg-nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .wg-grid {
    grid-template-columns: 1fr;
  }
  .wg-hero {
    padding: 40px 0 30px;
  }
  .wg-floating-wa span.text {
    display: none;
  }
  .wg-floating-wa {
    padding: 14px;
    border-radius: 50%;
  }
}
