:root {
  --wgp-white: #FFFFFF;
  --wgp-soft-pink: #FFEAF2;
  --wgp-light-rose: #FFF3F7;
  --wgp-hot-pink: #F0065C;
  --wgp-rose-pink: #FF3D7F;
  --wgp-deep-navy: #071126;
  --wgp-black: #111111;
  --wgp-gray: #666666;
  --wgp-light-border: #F3D9E3;
  --wgp-soft-shadow: rgba(240, 6, 92, 0.12);

  --white: #FFFFFF;
  --soft-pink: #FFEAF2;
  --light-rose: #FFF3F7;
  --primary: #F0065C;
  --primary-dark: #D90550;
  --primary-light: #FF3D7F;
  --secondary: #FF3D7F;
  --accent: #F0065C;
  --dark: #071126;
  --dark-2: #101A33;
  --dark-3: #1A2540;
  --gray: #666666;
  --gray-light: #999999;
  --gray-lighter: #F3D9E3;
  --gray-lightest: #FFF3F7;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --info: #3B82F6;
  --gradient-1: linear-gradient(135deg, #F0065C 0%, #FF3D7F 100%);
  --gradient-2: linear-gradient(135deg, #FF3D7F 0%, #F0065C 100%);
  --gradient-3: linear-gradient(135deg, #F0065C 0%, #FF6B9D 100%);
  --gradient-soft: linear-gradient(135deg, #FFFFFF 0%, #FFF3F7 50%, #FFEAF2 100%);
  --shadow-sm: 0 2px 8px rgba(240, 6, 92, 0.06);
  --shadow: 0 4px 12px rgba(240, 6, 92, 0.08);
  --shadow-md: 0 8px 24px rgba(240, 6, 92, 0.10);
  --shadow-lg: 0 14px 35px rgba(240, 6, 92, 0.12);
  --shadow-xl: 0 25px 50px rgba(240, 6, 92, 0.18);
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --light-border: #F3D9E3;
  --z-dropdown: 100;
  --z-sticky: 1000;
  --z-toast: 10000;
  --z-popup: 11000;
  --z-stt: 9999;

}

[data-theme="dark"] {
  --bg-color: #12121e;
  --text-color: #c8c8d4;
  --text-dark: #e0e0f0;
  --card-bg: #1a1a2e;
  --section-bg: #12121e;
  --white: #1a1a2e;
  --dark: #e0e0f0;
  --dark-2: #c8c8d4;
  --dark-3: #aaaabc;
  --color-body: #c8c8d4;
  --color-heading: #e0e0f0;
  --light-border: #2a2a40;
  --soft-pink: #1a1a2e;
  --light-rose: #1a1a2e;
  --gray: #999;
  --gray-light: #888;
  --gray-lighter: #2a2a40;
  --gray-lightest: #1e1e30;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 14px 35px rgba(0,0,0,0.6);
  --shadow-xl: 0 25px 50px rgba(0,0,0,0.7);
  --gradient-soft: linear-gradient(135deg, #12121e 0%, #1a1a2e 50%, #1a1a2e 100%);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark, #071126);
  background: var(--bg-color, #ffffff);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul, ol { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 40px 0; }
.section-lg { padding: 120px 0; }
.section-soft { background: var(--gradient-soft); }

.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.5rem; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.section-title p { font-size: 1.125rem; color: var(--gray); max-width: 600px; margin: 0 auto; }
.section-title .gradient-text { background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gradient-text { background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 12px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: none; transition: all 0.3s ease; white-space: nowrap;
}
.btn-primary { background: var(--gradient-1); color: white; box-shadow: 0 4px 15px rgba(240, 6, 92, 0.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(240, 6, 92, 0.35); }
.btn-secondary { background: var(--white); color: var(--primary); border: 1px solid var(--light-border); }
.btn-secondary:hover { background: var(--light-rose); border-color: var(--primary); }
.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); }
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-sm { padding: 8px 20px; font-size: 0.875rem; border-radius: 10px; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: 14px; }

.card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow); transition: all 0.3s ease;
  border: 1px solid var(--light-border);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.glass {
  background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15); border-radius: var(--radius-lg);
}

.badge {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
}
.badge-primary { background: var(--soft-pink); color: var(--primary); }
.badge-success { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.badge-warning { background: rgba(245, 158, 11, 0.1); color: var(--warning); }
.badge-danger { background: rgba(239, 68, 68, 0.1); color: var(--danger); }
.badge-popular { background: var(--gradient-1); color: white; position: absolute; top: -12px; right: 20px; padding: 6px 16px; box-shadow: 0 4px 12px rgba(240, 6, 92, 0.3); }

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

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

input, textarea, select {
  width: 100%; padding: 12px 16px; border: 1px solid var(--light-border);
  border-radius: var(--radius); font-size: 0.95rem; font-family: inherit;
  transition: all 0.3s ease; background: var(--white);
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(240, 6, 92, 0.16);
}
input::placeholder, textarea::placeholder { color: #999999; }
textarea { resize: vertical; min-height: 120px; }

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

.toast {
  position: fixed; top: 20px; right: 20px; padding: 16px 24px; border-radius: var(--radius);
  color: white; font-weight: 500; z-index: var(--z-toast); animation: slideIn 0.3s ease;
}
.toast-success { background: var(--success); }
.toast-error { background: var(--danger); }
.toast-info { background: var(--info); }
.spinner { display:inline-block; border-radius:50%; animation:spin 0.8s linear infinite; }
@keyframes spin { to { transform:rotate(360deg); } }

@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.animate-in { animation: fadeIn 0.6s ease forwards; }

.text-center { text-align: center; }
.text-gradient { background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--light-border); transition: all 0.3s ease;
  min-height: 0;
}
[data-theme="dark"] .header { background: rgba(15, 15, 26, 0.95); border-bottom-color: #2a2a40; }
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 7px 20px; max-width: 1200px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.logo-img { height: 40px; max-width: 180px; width: auto; object-fit: contain; display: block; }
.brand-monogram {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, #FF0F5B, #FF2D73);
  color: white; font-size: 1.3rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; letter-spacing: -0.5px;
  flex-shrink: 0;
}
.brand-divider {
  width: 1.5px; height: 32px; background: #D0D0D0; flex-shrink: 0;
}
[data-theme="dark"] .brand-divider { background: #2a2a40; }
.brand-text-group {
  display: flex; flex-direction: column; justify-content: center;
  line-height: 1.15;
}
.brand-wordmark {
  display: flex; align-items: baseline; gap: 0;
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 1.25rem; white-space: nowrap;
}
.brand-web, .brand-prime { color: #0F172A; }
[data-theme="dark"] .brand-web, [data-theme="dark"] .brand-prime { color: #e0e0f0; }
.brand-grow { color: #FF0F5B; }
.brand-in { color: #FF0F5B; font-size: 1rem; font-weight: 700; }
.brand-tagline {
  font-family: 'Inter', sans-serif; font-size: 0.65rem;
  font-weight: 500; color: #888; letter-spacing: 0.4px;
  white-space: nowrap; margin-top: 1px;
}
[data-theme="dark"] .brand-tagline { color: #999; }
.nav-links { display: flex; gap: 6px; align-items: center; }

/* --- Nav Link (menu items) --- */
.nav-link {
  position: relative;
  font-weight: 500;
  color: #374151;
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.25s ease, background 0.25s ease;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FF0058, #EC0D5A);
  border-radius: 2px;
  transition: width 0.25s ease, left 0.25s ease;
  opacity: 0;
}
.nav-link:hover {
  color: #FF0058;
  background: rgba(255, 0, 88, 0.05);
}
.nav-link:hover::after {
  width: 60%;
  left: 20%;
  opacity: 1;
}
.nav-link.active {
  color: #FF0058;
  font-weight: 600;
}
.nav-link.active::after {
  width: 60%;
  left: 20%;
  opacity: 1;
  background: linear-gradient(90deg, #FF0058, #EC0D5A);
}

/* --- CTA Button (Start Project) --- */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 22px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #FF0058 0%, #EC0D5A 50%, #D90550 100%);
  background-size: 200% 200%;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 15px rgba(255, 0, 88, 0.3), 0 1px 3px rgba(255, 0, 88, 0.15);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 88, 0.4), 0 2px 6px rgba(255, 0, 88, 0.2);
  background-position: 100% 0;
  color: #fff;
}
.nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 0, 88, 0.25);
}
.nav-cta svg {
  flex-shrink: 0;
  opacity: 0.9;
}
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; position: relative; z-index: 100001;
  border-radius: 12px; transition: all 0.3s ease; padding: 0;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.mobile-toggle:hover { background: rgba(255,0,88,0.04); }
.mobile-toggle span {
  display: block; width: 22px; height: 2.5px; background: var(--dark);
  border-radius: 2px; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.mobile-toggle span:nth-child(1) { transform: translate(-50%, -8px); }
.mobile-toggle span:nth-child(2) { transform: translate(-50%, 0); }
.mobile-toggle span:nth-child(3) { transform: translate(-50%, 8px); }

.mobile-toggle.open span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); width: 24px; }
.mobile-toggle.open span:nth-child(2) { transform: translate(-50%, 0) scaleX(0); opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translate(-50%, 0) rotate(-45deg); width: 24px; }

/* Theme Toggle - Advanced */
.theme-toggle {
  background: none; border: none; cursor: pointer; padding: 0; border-radius: 20px;
  color: #666; display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.3s; margin-left: 8px; width: 48px; height: 28px;
  position: relative; background: #e8e8ef; border-radius: 20px;
  flex-shrink: 0;
}
.theme-toggle::before {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1;
}
.theme-toggle:hover { background: #dddde8; }
.theme-toggle:active::before { transform: scale(0.92); }
.theme-icon-sun,
.theme-icon-moon {
  position: relative; z-index: 2; width: 14px; height: 14px;
  transition: all 0.3s;
  pointer-events: none;
}
.theme-icon-sun { color: #f59e0b; margin-right: auto; margin-left: 4px; }
.theme-icon-moon { color: #6366f1; margin-left: auto; margin-right: 4px; display: none; }
[data-theme="dark"] .theme-toggle { background: #2a2a40; }
[data-theme="dark"] .theme-toggle:hover { background: #333350; }
[data-theme="dark"] .theme-toggle::before {
  transform: translateX(20px);
  background: #1a1a2e;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
[data-theme="dark"] .theme-icon-sun { display: none; }
[data-theme="dark"] .theme-icon-moon { display: block; color: #a78bfa; }

/* Smooth theme transition */
html {
  transition: background-color 0.3s ease;
}
body {
  transition: background-color 0.3s ease, color 0.3s ease;
}
.header, .section, .footer, .card, .btn, .badge, .nav-link, .announcement-bar {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.hero-banner-container { width: 100%; line-height: 0; display: block; padding-top: 55px; }
.hero-banner-img { width: 100%; height: auto; display: block; max-width: 100%; }

/* ============================================
   ANNOUNCEMENT SLIDER - ADVANCED
   ============================================ */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  height: 48px;
  background: linear-gradient(135deg, #050B1F 0%, #0A0F2A 50%, #050B1F 100%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.announcement-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 50px at 20% 50%, var(--accent, rgba(255,0,88,0.06)) 0%, transparent 70%),
    radial-gradient(ellipse 600px 40px at 80% 50%, rgba(139,92,246,0.05) 0%, transparent 70%);
  pointer-events: none;
  animation: barBreath 4s ease-in-out infinite alternate;
}
@keyframes barBreath {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}
.announcement-bar-inner {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.announcement-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: announcementScroll 120s linear infinite;
  will-change: transform;
}
.announcement-track.paused {
  animation-play-state: paused;
}
@keyframes announcementScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.announcement-item-wrap {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.slider-dot {
  flex-shrink: 0;
  margin: 0 18px;
  opacity: 0.6;
  filter: drop-shadow(0 0 3px currentColor);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}
.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
  border-radius: 8px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  background: transparent;
  border: 1px solid transparent;
}
.announcement-item::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 9px;
  background: var(--accent, #FF0058);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
  filter: blur(4px);
}
.announcement-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--accent, rgba(255,0,88,0.2));
  transform: translateY(-1px) scale(1.02);
}
.announcement-item:hover::before {
  opacity: 0.15;
}
.announcement-item .item-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: transform 0.35s ease;
}
.announcement-item:hover .item-icon {
  transform: rotate(-5deg) scale(1.1);
}
.announcement-item svg {
  flex-shrink: 0;
  color: var(--accent, rgba(255,0,88,0.7));
  transition: all 0.35s ease;
  filter: drop-shadow(0 0 2px var(--glow, transparent));
}
.announcement-item:hover svg {
  color: var(--accent, #FF0058);
  filter: drop-shadow(0 0 6px var(--glow, rgba(255,0,88,0.4)));
}
.announcement-item .item-text {
  position: relative;
  transition: color 0.35s ease;
}
.announcement-item .item-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--accent, #FF0058);
  color: #fff;
  text-transform: uppercase;
  animation: badgePulse 1.5s ease-in-out infinite;
  margin-left: 4px;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--glow, rgba(255,0,88,0.4)); }
  50% { box-shadow: 0 0 0 4px transparent; }
}
.announcement-item.highlight {
  color: #fff;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--accent, rgba(255,0,88,0.25));
  box-shadow: 0 0 15px var(--glow, rgba(255,0,88,0.08)), inset 0 0 15px var(--glow, rgba(255,0,88,0.04));
}
.announcement-item.highlight:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  border-color: var(--accent, #FF0058);
  box-shadow: 0 0 25px var(--glow, rgba(255,0,88,0.2)), inset 0 0 20px var(--glow, rgba(255,0,88,0.06));
}

.announcement-glow-left,
.announcement-glow-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.announcement-glow-left {
  left: 0;
  background: linear-gradient(90deg, #050B1F 0%, transparent 100%);
}
.announcement-glow-right {
  right: 0;
  background: linear-gradient(270deg, #050B1F 0%, transparent 100%);
}

.announcement-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.announcement-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--accent, #FF0058);
  opacity: 0;
  animation: particleFloat 3s ease-out infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(0) scale(0); opacity: 0; }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { transform: translateY(-30px) scale(1); opacity: 0; }
}

/* Header offset for announcement bar */
.has-announcement .header {
  top: 48px;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
  .announcement-bar { height: 44px; }
  .announcement-item { font-size: 0.78rem; padding: 5px 12px; gap: 6px; }
  .slider-dot { margin: 0 12px; }
  .announcement-glow-left,
  .announcement-glow-right { width: 40px; }
  .has-announcement .header { top: 44px; }
  .announcement-item .item-badge { font-size: 0.5rem; padding: 1px 5px; }
}

/* Responsive: Mobile */
@media (max-width: 640px) {
  .announcement-bar { height: 42px; }
  .announcement-item { font-size: 0.72rem; padding: 4px 10px; gap: 5px; }
  .slider-dot { margin: 0 8px; }
  .has-announcement .header { top: 42px; }
  .announcement-track { animation-duration: 70s; }
  .announcement-glow-left,
  .announcement-glow-right { width: 25px; }
  .announcement-item .item-badge { display: none; }
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.wgp-why-section { background: linear-gradient(180deg, #f8f9fe 0%, #fff 100%); }
@media (min-width: 768px) { .wgp-why-slider { display: none; } }
.wgp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.wgp-why-card {
  background: #fff;
  border: 1px solid #f0f0f5;
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.wgp-why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF0058, #EC0D5A, #8B5CF6);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wgp-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(240, 6, 92, 0.1);
  border-color: rgba(240, 6, 92, 0.12);
}
.wgp-why-card:hover::before { opacity: 1; }
.wgp-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 0, 88, 0.08), rgba(139, 92, 246, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
  transition: all 0.3s ease;
}
.wgp-why-card:hover .wgp-why-icon {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.wgp-why-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #071126;
  margin-bottom: 8px;
  line-height: 1.3;
}
.wgp-why-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.65;
}
@media (max-width: 767px) { .wgp-why-grid { display: none; } }

/* WhyChoose Slider (mobile) */
.wgp-why-slider {
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
  touch-action: pan-x pinch-zoom;
  user-select: none;
  cursor: grab;
}
.wgp-why-slider:active { cursor: grabbing; }
.wgp-why-track-wrap { overflow: hidden; }
.wgp-why-track {
  display: flex;
  will-change: transform;
}
.wgp-why-card-wrap {
  flex: 0 0 100%;
  padding: 0 12px;
  box-sizing: border-box;
}
.wgp-why-card-wrap .wgp-why-card {
  margin: 0;
  height: 100%;
}
.wgp-why-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.wgp-why-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.wgp-why-dot.active {
  width: 24px;
  border-radius: 4px;
}
.wgp-why-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.wgp-why-progress-bar {
  width: 120px;
  height: 3px;
  background: #e8e8ef;
  border-radius: 3px;
  overflow: hidden;
}
.wgp-why-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #FF0058, #8B5CF6);
  border-radius: 3px;
  transition: width 0.3s ease;
}
.wgp-why-progress-text {
  font-size: 0.8rem;
  color: #999;
  font-weight: 600;
}

/* Trust Bar */
.wgp-trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, #071126, #101A33);
  border-radius: 16px;
  padding: 28px 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.wgp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 28px;
  position: relative;
}
.wgp-trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
}
.wgp-trust-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #FF0058;
  line-height: 1.2;
}
.wgp-trust-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  margin-top: 2px;
}

/* Mini Testimonial */
.wgp-mini-testimonial {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid #f0f0f5;
  border-left: 3px solid #FF0058;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.wgp-mini-testimonial p {
  font-size: 0.92rem;
  color: #555;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

/* CTA */
.wgp-why-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Portfolio Strip */
.wgp-portfolio-strip { overflow: hidden; }
.wgp-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.wgp-strip-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 61, 127, 0.6);
  color: #fff;
  transform: translateX(3px);
}
.wgp-strip-btn svg {
  transition: transform 0.25s ease;
}
.wgp-strip-btn:hover svg {
  transform: translateX(4px);
}

/* Why Choose Responsive */
@media (max-width: 1024px) {
  .wgp-why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .wgp-why-card { padding: 28px 22px; }
  .wgp-why-icon { width: 50px; height: 50px; border-radius: 12px; }
  .wgp-why-icon svg { width: 24px; height: 24px; }
  .wgp-why-title { font-size: 1rem; }
  .wgp-why-desc { font-size: 0.85rem; }
  .wgp-trust-item { padding: 8px 20px; }
  .wgp-trust-num { font-size: 1.3rem; }
  .wgp-trust-label { font-size: 0.72rem; }
  .wgp-mini-testimonial { padding: 18px 20px; }
  .wgp-mini-testimonial p { font-size: 0.88rem; }
}
@media (max-width: 640px) {
  .wgp-why-section { padding: 50px 0; }
  .wgp-why-section .section-title { margin-bottom: 28px; }
  .wgp-why-section .section-title h2 { font-size: 1.6rem; font-weight: 800; }
  .wgp-why-section .section-title p { font-size: 0.88rem; line-height: 1.6; }
  .wgp-why-slider { margin-bottom: 20px; }
  .wgp-why-card-wrap { padding: 0 6px; }
  .wgp-why-card-wrap .wgp-why-card {
    padding: 24px 20px;
    border-radius: 16px;
  }
  .wgp-why-card-wrap .wgp-why-card::before { display: none; }
  .wgp-why-icon { width: 50px; height: 50px; border-radius: 12px; margin-bottom: 14px; }
  .wgp-why-icon svg { width: 24px; height: 24px; }
  .wgp-why-title { font-size: 1rem; margin-bottom: 6px; }
  .wgp-why-desc { font-size: 0.84rem; line-height: 1.55; }
  .wgp-why-dot { width: 6px; height: 6px; }
  .wgp-why-dot.active { width: 20px; }
  .wgp-why-progress-bar { width: 100px; }
  .wgp-why-progress-text { font-size: 0.75rem; }

  /* Trust Bar Mobile */
  .wgp-trust-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 20px 12px;
    border-radius: 14px;
  }
  .wgp-trust-item {
    flex-direction: column;
    align-items: center;
    padding: 12px 4px;
    gap: 2px;
  }
  .wgp-trust-item::after { display: none; }
  .wgp-trust-item:not(:nth-child(3n)) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  .wgp-trust-item:not(:nth-last-child(-n+3)) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .wgp-trust-num { font-size: 1.2rem; }
  .wgp-trust-label { font-size: 0.68rem; }

  /* Mini Testimonial Mobile */
  .wgp-mini-testimonial {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 28px;
  }
  .wgp-mini-testimonial svg { width: 18px; height: 18px; margin-top: 2px; }
  .wgp-mini-testimonial p { font-size: 0.82rem; line-height: 1.6; }

  /* CTA Mobile */
  .wgp-why-cta {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .wgp-why-cta .btn { width: 100%; justify-content: center; padding: 14px 20px; }

  /* Portfolio Strip Mobile */
  .wgp-portfolio-strip .container > div:first-child {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .wgp-strip-btn { width: 100%; justify-content: center; }
}

/* ============================================
   PRICING SECTION
   ============================================ */
.wgp-pricing-hero-svg {
  width: 60%;
  height: auto;
  margin: 0 auto 16px;
  display: block;
}
.wgp-pricing-section {
  background: linear-gradient(180deg, #f8f9fc 0%, #f0f2f8 100%);
}

/* Grid */
.wgp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

/* Card */
.wgp-pricing-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #f0f2f8;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Ribbon */
.wgp-pricing-ribbon {
  position: absolute;
  top: 16px;
  right: -10px;
  z-index: 5;
  padding: 6px 18px 6px 14px;
  background: linear-gradient(135deg, #FF0058, #EC0D5A);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px 0 0 6px;
  box-shadow: 0 4px 14px rgba(255,0,88,0.35);
}

/* Card Top - Gradient Header */
.wgp-card-top {
  padding: 32px 28px 28px;
  text-align: center;
  background: linear-gradient(135deg, var(--cg1), var(--cg2));
}

.wgp-card-icon-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.wgp-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.wgp-card-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Price Pill */
.wgp-price-pill {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.95);
  border-radius: 50px;
  padding: 12px 28px 10px;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  max-width: 100%;
}

.wgp-pill-currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  line-height: 1;
}

.wgp-pill-amount {
  font-size: 2rem;
  font-weight: 900;
  color: #111;
  line-height: 1;
  letter-spacing: -0.5px;
}

.wgp-pill-label {
  display: block;
  width: 100%;
  font-size: 0.7rem;
  color: #6b7280;
  font-weight: 500;
  text-align: center;
  margin-top: 2px;
}

/* Card Mid - Features */
.wgp-card-mid {
  padding: 24px 28px;
  flex: 1;
}

.wgp-card-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: #374151;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
}

.wgp-card-feat:last-child { border-bottom: none; }

.wgp-card-feat-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cg1), var(--cg2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.wgp-card-feat-icon svg { width: 11px; height: 11px; display: block; }

/* Card Bottom - Buttons */
.wgp-card-bot {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wgp-card-btn-start {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  background: #fff;
  color: var(--cg1);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.wgp-card-btn-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.wgp-card-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: all 0.3s;
  cursor: pointer;
  box-sizing: border-box;
}

.wgp-card-btn-wa:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

.wgp-card-btn-wa svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Compare Button */
.wgp-compare-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b7280;
  border: 1px solid #e5e7eb;
  background: #fff;
  text-decoration: none;
  transition: all 0.3s;
}
.wgp-compare-btn:hover {
  border-color: #FF0058;
  color: #FF0058;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 88, 0.1);
}

/* Feature Highlights */
.wgp-feature-highlights {
  margin-top: 56px;
  background: linear-gradient(135deg, #050B1F, #0B1220);
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}
.wgp-feature-highlights::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 0, 88, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.wgp-highlights-header {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}
.wgp-highlights-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 0, 88, 0.12);
  border: 1px solid rgba(255, 0, 88, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 16px;
  color: #FF4D8D;
  font-size: 0.8rem;
  font-weight: 600;
}
.wgp-highlights-badge svg { color: #FF4D8D; }
.wgp-highlights-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.wgp-highlights-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}
.wgp-highlights-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.wgp-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  padding: 14px 14px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.wgp-highlight-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.wgp-highlight-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.wgp-highlight-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wgp-highlight-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.wgp-highlight-desc {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.3;
}

/* Pricing Responsive */
@media (max-width: 1024px) {
  .wgp-pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .wgp-pricing-card { padding: 28px 22px 24px; }
  .wgp-price-pill { padding: 10px 22px 8px; }
  .wgp-pill-amount { font-size: 1.7rem; }
  .wgp-card-top { padding: 24px 22px 22px; }
  .wgp-card-mid { padding: 18px 22px; }
  .wgp-card-bot { padding: 18px 22px 22px; }
  .wgp-card-title { font-size: 1.05rem; }
  .wgp-card-feat { font-size: 0.82rem; padding: 7px 0; }
  .wgp-highlights-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .wgp-highlight-item { padding: 12px 10px; }
  .wgp-highlight-icon { width: 36px; height: 36px; min-width: 36px; }
  .wgp-highlight-label { font-size: 0.8rem; }
  .wgp-highlight-desc { font-size: 0.7rem; }
  .wgp-feature-highlights { padding: 32px 24px; }
  .wgp-highlights-title { font-size: 1.3rem; }
  .wgp-compare-btn { width: 100%; justify-content: center; }
}
@media (max-width: 640px) {
  .wgp-pricing-section { padding: 50px 0; }
  .wgp-pricing-section .section-title { margin-bottom: 32px; }
  .wgp-pricing-section .section-title h2 { font-size: 1.7rem; }
  .wgp-pricing-section .section-title p { font-size: 0.88rem; line-height: 1.6; }
  .wgp-pricing-hero-svg { width: 80%; margin-bottom: 10px; }
  .wgp-pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .wgp-pricing-card { border-radius: 18px; }
  .wgp-pricing-card:hover { transform: none; }
  .wgp-pricing-ribbon {
    top: 14px;
    right: -4px;
    font-size: 0.65rem;
    padding: 4px 12px 4px 9px;
    letter-spacing: 0.2px;
  }
  .wgp-card-top { padding: 22px 18px 20px; }
  .wgp-card-icon-wrap { width: 48px; height: 48px; margin-bottom: 10px; }
  .wgp-card-icon-wrap svg { width: 22px; height: 22px; }
  .wgp-card-title { font-size: 1rem; }
  .wgp-card-sub { font-size: 0.8rem; margin-bottom: 16px; }
  .wgp-price-pill { padding: 10px 20px 8px; }
  .wgp-pill-currency { font-size: 0.95rem; }
  .wgp-pill-amount { font-size: 1.6rem; }
  .wgp-pill-label { font-size: 0.65rem; }
  .wgp-card-mid { padding: 16px 18px; }
  .wgp-card-feat { font-size: 0.82rem; gap: 8px; padding: 6px 0; }
  .wgp-card-feat-icon { width: 18px; height: 18px; min-width: 18px; }
  .wgp-card-feat-icon svg { width: 10px; height: 10px; }
  .wgp-card-bot { padding: 16px 18px 20px; gap: 8px; }
  .wgp-card-btn-start { padding: 11px 16px; font-size: 0.85rem; border-radius: 10px; }
  .wgp-card-btn-wa { padding: 10px 16px; font-size: 0.8rem; border-radius: 10px; }
  .wgp-compare-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  .wgp-highlights-grid { grid-template-columns: 1fr; gap: 8px; }
  .wgp-highlight-item { padding: 12px; gap: 10px; }
  .wgp-highlight-icon { width: 36px; height: 36px; min-width: 36px; border-radius: 8px; }
  .wgp-highlight-icon svg { width: 18px; height: 18px; }
  .wgp-highlight-label { font-size: 0.82rem; }
  .wgp-highlight-desc { font-size: 0.7rem; }
  .wgp-feature-highlights { padding: 24px 16px; border-radius: 14px; margin-top: 40px; }
  .wgp-highlights-title { font-size: 1.15rem; margin-bottom: 6px; }
  .wgp-highlights-subtitle { font-size: 0.82rem; }
  .wgp-highlights-badge { padding: 5px 12px; font-size: 0.72rem; margin-bottom: 12px; }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.wgp-faq-section { background: linear-gradient(180deg, #f8f9fe 0%, #fff 100%); }

/* Search */
.wgp-faq-search {
  max-width: 520px;
  margin: 0 auto 28px;
  position: relative;
  display: flex;
  align-items: center;
}
.wgp-faq-search svg {
  position: absolute;
  left: 16px;
  color: #999;
  pointer-events: none;
}
.wgp-faq-search input {
  width: 100%;
  padding: 14px 44px 14px 46px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #fff;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.wgp-faq-search input::placeholder { color: #aaa; }
.wgp-faq-search input:focus {
  border-color: #FF0058;
  box-shadow: 0 0 0 3px rgba(255, 0, 88, 0.08);
}
.wgp-faq-clear {
  position: absolute;
  right: 12px;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666;
  transition: background 0.2s;
}
.wgp-faq-clear:hover { background: #e5e7eb; }

/* Categories */
.wgp-faq-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}
.wgp-faq-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.25s;
  white-space: nowrap;
}
.wgp-faq-cat-btn:hover {
  border-color: #FF0058;
  color: #FF0058;
  background: rgba(255, 0, 88, 0.03);
}
.wgp-faq-cat-btn.active {
  background: linear-gradient(135deg, #FF0058, #EC0D5A);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(255, 0, 88, 0.25);
}

/* FAQ List */
.wgp-faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Empty State */
.wgp-faq-empty {
  text-align: center;
  padding: 48px 20px;
  color: #999;
}
.wgp-faq-empty svg { margin-bottom: 12px; }
.wgp-faq-empty p { font-size: 0.92rem; }

/* FAQ Item */
.wgp-faq-item {
  background: #fff;
  border: 1px solid #f0f0f5;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.wgp-faq-item:hover {
  border-color: rgba(255, 0, 88, 0.12);
}
.wgp-faq-item.active {
  border-color: rgba(255, 0, 88, 0.2);
  box-shadow: 0 4px 16px rgba(255, 0, 88, 0.06);
}

/* Question Button */
.wgp-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
}
.wgp-faq-q-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.5;
}
.wgp-faq-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s;
}
.wgp-faq-item.active .wgp-faq-arrow {
  background: linear-gradient(135deg, #FF0058, #EC0D5A);
  color: #fff;
  transform: rotate(180deg);
  box-shadow: 0 4px 10px rgba(255, 0, 88, 0.3);
}

/* Answer */
.wgp-faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.wgp-faq-item.active .wgp-faq-answer-wrap {
  max-height: 300px;
}
.wgp-faq-answer {
  padding: 0 20px 18px;
}
.wgp-faq-answer p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Count */
.wgp-faq-count {
  text-align: center;
  font-size: 0.82rem;
  color: #999;
  margin-top: 24px;
}

/* FAQ Responsive */
@media (max-width: 768px) {
  .wgp-faq-categories { gap: 6px; }
  .wgp-faq-cat-btn { padding: 7px 12px; font-size: 0.78rem; }
  .wgp-faq-question { padding: 16px 16px; }
  .wgp-faq-q-text { font-size: 0.9rem; }
  .wgp-faq-answer { padding: 0 16px 16px; }
  .wgp-faq-answer p { font-size: 0.85rem; }
  .wgp-faq-item { border-radius: 10px; }
}
@media (max-width: 480px) {
  .wgp-faq-section .section-title h2 { font-size: 1.6rem; }
  .wgp-faq-section .section-title p { font-size: 0.88rem; }
  .wgp-faq-search input { padding: 12px 40px 12px 42px; font-size: 0.88rem; }
  .wgp-faq-categories { gap: 5px; }
  .wgp-faq-cat-btn { padding: 6px 10px; font-size: 0.74rem; gap: 4px; }
  .wgp-faq-cat-btn svg { width: 12px; height: 12px; }
  .wgp-faq-question { padding: 14px 14px; gap: 12px; }
  .wgp-faq-q-text { font-size: 0.85rem; }
  .wgp-faq-arrow { width: 28px; height: 28px; }
  .wgp-faq-arrow svg { width: 16px; height: 16px; }
  .wgp-faq-answer { padding: 0 14px 14px; }
  .wgp-faq-answer p { font-size: 0.82rem; line-height: 1.65; }
  .wgp-faq-list { gap: 8px; }
}

/* Hero */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #071126 0%, #101A33 50%, #071126 100%);
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(240, 6, 92, 0.25) 0%, transparent 70%);
  border-radius: 50%; animation: pulse 8s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 61, 127, 0.15) 0%, transparent 70%);
  border-radius: 50%; animation: pulse 10s ease-in-out infinite;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-content h1 { font-size: 3.5rem; font-weight: 900; color: white; line-height: 1.1; margin-bottom: 24px; }
.hero-content h1 span { background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-content p { font-size: 1.2rem; color: rgba(255,255,255,0.7); margin-bottom: 40px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 60px; }
.hero-stat h3 { font-size: 2.5rem; font-weight: 800; color: white; }
.hero-stat p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* Footer */
/* ============================================
   FOOTER
   ============================================ */
.wgp-footer {
  background: linear-gradient(180deg, #071126 0%, #050B1F 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 0 0 0;
  position: relative;
}
.wgp-footer-gradient-border {
  height: 2px;
  background: linear-gradient(90deg, transparent, #FF0058, #8B5CF6, #FF0058, transparent);
}

/* Main Grid */
.wgp-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  padding: 56px 0 40px;
}

/* Brand */
.wgp-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 14px;
}
.wgp-footer-monogram {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FF0F5B, #FF2D73);
  color: white;
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}
.wgp-footer-divider {
  width: 1.5px;
  height: 26px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
.wgp-footer-wordmark {
  display: flex;
  align-items: baseline;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}
.wgp-footer-web, .wgp-footer-prime { color: #fff; }
.wgp-footer-grow { color: #FF3D7F; }
.wgp-footer-in { color: #FF3D7F; font-size: 0.85rem; font-weight: 700; }
.wgp-footer-tagline {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}
.wgp-footer-social {
  display: flex;
  gap: 8px;
}
.wgp-footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  transition: all 0.25s;
}
.wgp-footer-social a:hover {
  background: rgba(255, 0, 88, 0.15);
  border-color: rgba(255, 0, 88, 0.3);
  color: #FF3D7F;
}

/* Columns */
.wgp-footer-heading {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wgp-footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, #FF0058, #EC0D5A);
  border-radius: 2px;
}
.wgp-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wgp-footer-links a {
  display: block;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.84rem;
  transition: color 0.25s, padding-left 0.25s;
}
.wgp-footer-links a:hover {
  color: #FF3D7F;
  padding-left: 4px;
}

/* Contact */
.wgp-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.wgp-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
}
.wgp-footer-contact-item a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.25s;
}
.wgp-footer-contact-item a:hover { color: #FF3D7F; }
.wgp-footer-contact-item span {
  color: rgba(255, 255, 255, 0.55);
}
.wgp-footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: #25D366;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  margin-top: 4px;
}
.wgp-footer-wa-btn:hover {
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.4);
}

/* Bottom */
.wgp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  text-align: center;
}
.wgp-footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

/* Legal Links */
.wgp-footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 0 20px;
}
.wgp-footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
}
.wgp-footer-legal-links a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.74rem;
  text-decoration: none;
  transition: color 0.25s;
}
.wgp-footer-legal-links a:hover { color: #FF3D7F; }

/* ============================================
   FOOTER RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .wgp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .wgp-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .wgp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding: 36px 0 28px;
  }
  .wgp-footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }
  .wgp-footer-logo { justify-content: center; }
  .wgp-footer-tagline { font-size: 0.78rem; max-width: 300px; margin-left: auto; margin-right: auto; }
  .wgp-footer-social { justify-content: center; }

  .wgp-footer-col {
    text-align: left;
  }
  .wgp-footer-heading {
    font-size: 0.78rem;
    margin-bottom: 10px;
    text-align: left;
  }
  .wgp-footer-heading::after { left: 0; transform: none; }
  .wgp-footer-links { gap: 0; }
  .wgp-footer-links a {
    font-size: 0.78rem;
    padding: 4px 0;
  }
  .wgp-footer-links a:hover { padding-left: 3px; }

  .wgp-footer-contact-col {
    grid-column: 1 / -1;
  }
  .wgp-footer-contact {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }
  .wgp-footer-contact-item { font-size: 0.78rem; }
  .wgp-footer-wa-btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 0.85rem;
  }

  .wgp-footer-bottom { padding: 14px 0; }
  .wgp-footer-bottom p { font-size: 0.72rem; }

  .wgp-footer-legal { padding: 10px 0 16px; }
  .wgp-footer-legal-links { gap: 5px 10px; }
  .wgp-footer-legal-links a {
    font-size: 0.68rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  .wgp-footer-legal-links a:hover {
    background: rgba(255, 0, 88, 0.1);
    border-color: rgba(255, 0, 88, 0.2);
  }
}

@media (max-width: 380px) {
  .wgp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }
  .wgp-footer-contact {
    flex-direction: column;
    gap: 8px;
  }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.wgp-legal-hero {
  background: linear-gradient(135deg, #071126, #101A33);
  padding: 140px 0 48px;
  text-align: center;
}
.wgp-legal-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.82rem;
}
.wgp-legal-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.25s;
}
.wgp-legal-breadcrumb a:hover { color: #FF3D7F; }
.wgp-legal-breadcrumb svg { color: rgba(255, 255, 255, 0.3); }
.wgp-legal-breadcrumb span { color: rgba(255, 255, 255, 0.8); font-weight: 500; }
.wgp-legal-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.wgp-legal-updated {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}
.wgp-legal-section { padding: 60px 0 80px; }
.wgp-legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.wgp-legal-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #071126;
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0f0f5;
}
.wgp-legal-content h2:first-child { margin-top: 0; }
.wgp-legal-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}
.wgp-legal-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.wgp-legal-content ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 6px;
}
.wgp-legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF0058;
}
.wgp-legal-content strong { color: #1f2937; }

/* Trust Box */
.wgp-legal-trust {
  max-width: 800px;
  margin: 48px auto 0;
  background: linear-gradient(135deg, #071126, #101A33);
  border-radius: 16px;
  padding: 32px;
}
.wgp-legal-trust h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
.wgp-legal-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.wgp-legal-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}
.wgp-legal-trust-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: rgba(255, 0, 88, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF0058;
}

/* Legal Responsive */
@media (max-width: 768px) {
  .wgp-legal-hero { padding: 120px 0 36px; }
  .wgp-legal-title { font-size: 1.8rem; }
  .wgp-legal-content h2 { font-size: 1.1rem; }
  .wgp-legal-content p, .wgp-legal-content ul li { font-size: 0.9rem; }
  .wgp-legal-trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .wgp-legal-hero { padding: 110px 0 28px; }
  .wgp-legal-title { font-size: 1.5rem; }
  .wgp-legal-section { padding: 40px 0 60px; }
  .wgp-legal-content { padding: 0 4px; }
  .wgp-legal-content h2 { font-size: 1rem; margin: 24px 0 10px; }
  .wgp-legal-content p { font-size: 0.86rem; }
  .wgp-legal-content ul li { font-size: 0.85rem; }
  .wgp-legal-trust { padding: 24px 18px; }
  .wgp-legal-trust-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PREMIUM PRICING & SERVICES
   ============================================ */

/* Hero */
.wgp-pricing-hero {
  background: #050B1F;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 620px;
  display: flex;
  align-items: center;
}

/* Animated Gradient Orbs */
.wgp-pricing-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: wgpOrbFloat 8s ease-in-out infinite;
}
.wgp-pricing-hero-orb.orb-1 {
  width: 500px;
  height: 500px;
  top: -20%;
  right: -10%;
  background: radial-gradient(circle, rgba(255,0,88,0.12) 0%, transparent 70%);
  animation-delay: 0s;
}
.wgp-pricing-hero-orb.orb-2 {
  width: 400px;
  height: 400px;
  bottom: -15%;
  left: -5%;
  background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
  animation-delay: -3s;
}
.wgp-pricing-hero-orb.orb-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 30%;
  background: radial-gradient(circle, rgba(16,217,208,0.05) 0%, transparent 70%);
  animation-delay: -5s;
}

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

/* Grid overlay */
.wgp-pricing-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Large Decorative Illustration */
.wgp-pricing-hero-illustration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  animation: wgpIllusPulse 6s ease-in-out infinite;
}
.wgp-pricing-hero-illustration svg {
  width: 100%;
  height: 100%;
}
@keyframes wgpIllusPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.03); }
}

/* Right Side Illustration */
.wgp-pricing-hero-right-svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  animation: wgpRightSvgFloat 5s ease-in-out infinite;
}
.wgp-pricing-hero-right-svg svg {
  width: 100%;
  height: auto;
}
@keyframes wgpRightSvgFloat {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(-6px); }
}

/* Floating decorative cards */
.wgp-pricing-float-card {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  animation: wgpFloatCard 7s ease-in-out infinite;
}
.wgp-pricing-float-card svg {
  width: 100%;
  height: 100%;
}
.wgp-pricing-float-card.card-left {
  bottom: 15%;
  left: 5%;
  width: 120px;
  height: 80px;
  animation-delay: 0s;
}
.wgp-pricing-float-card.card-right {
  top: 20%;
  right: 5%;
  width: 120px;
  height: 80px;
  animation-delay: -2s;
}
.wgp-pricing-float-card.card-top {
  top: 12%;
  left: 15%;
  width: 60px;
  height: 28px;
  animation-delay: -4s;
}

@keyframes wgpFloatCard {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(-2deg); }
  75% { transform: translateY(6px) rotate(2deg); }
}

.wgp-pricing-hero > .container { position: relative; z-index: 1; }

/* Hero Badge */
.wgp-pricing-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50px;
  padding: 7px 18px 7px 14px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.3px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.wgp-pricing-hero-badge svg {
  color: #10D9D0;
}

.wgp-pricing-hero-title {
  color: #fff;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.wgp-pricing-hero-title-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.wgp-pricing-hero-title-line:first-child {
  margin-bottom: 2px;
}
.wgp-pricing-hero-title-simple {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 1.6rem;
}
.wgp-pricing-hero-title-comma {
  color: #FF0058;
  font-weight: 900;
  font-size: 2rem;
  margin-left: -2px;
}
.wgp-pricing-hero-title-diamond {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: rgba(16,217,208,0.3);
  animation: wgpTitleSpin 8s linear infinite;
  margin-left: 4px;
}
.wgp-pricing-hero-title-diamond svg {
  width: 100%;
  height: 100%;
}
@keyframes wgpTitleSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.wgp-pricing-hero-title-accent {
  background: linear-gradient(135deg, #FF0058, #FF6B9D, #8B5CF6, #C86DD7);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  font-size: 3.8rem;
  font-weight: 900;
  letter-spacing: -1px;
  animation: wgpTitleGradient 4s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(255,0,88,0.15));
}
@keyframes wgpTitleGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.wgp-pricing-hero-title-spark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: rgba(255,107,157,0.25);
  animation: wgpSparkPulse 2s ease-in-out infinite;
}
.wgp-pricing-hero-title-spark svg {
  width: 100%;
  height: 100%;
}
@keyframes wgpSparkPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.3); opacity: 0.8; }
}
.wgp-pricing-hero-title-pricing {
  color: #fff;
  font-weight: 700;
  font-size: 2.8rem;
  letter-spacing: 3px;
  position: relative;
}
.wgp-pricing-hero-title-underline {
  position: absolute;
  bottom: -4px;
  left: -10%;
  right: -10%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,0,88,0.4), rgba(139,92,246,0.4), transparent);
  animation: wgpUnderlinePulse 3s ease-in-out infinite;
}
@keyframes wgpUnderlinePulse {
  0%, 100% { opacity: 0.4; transform: scaleX(0.95); }
  50% { opacity: 1; transform: scaleX(1); }
}
.wgp-pricing-hero-sub {
  color: rgba(255,255,255,0.55);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* CTA Buttons */
.wgp-pricing-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.wgp-pricing-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  background: linear-gradient(135deg, #FF0058, #8B5CF6);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(255,0,88,0.2);
}
.wgp-pricing-hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,0,88,0.3);
}
.wgp-pricing-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.wgp-pricing-hero-btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.wgp-pricing-hero-btn-secondary svg {
  width: 16px;
  height: 16px;
  color: #10D9D0;
}

/* Stats Cards (Glassmorphism) */
.wgp-pricing-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.wgp-pricing-stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  min-width: 150px;
}
.wgp-pricing-stat-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.wgp-pricing-stat-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,0,88,0.08), rgba(139,92,246,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.03);
}
.wgp-pricing-stat-card-icon svg {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.7);
}
.wgp-pricing-stat-card-content {
  display: flex;
  flex-direction: column;
}
.wgp-pricing-stat-card-content strong {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}
.wgp-pricing-stat-card-content span {
  color: rgba(255,255,255,0.35);
  font-size: 0.72rem;
  line-height: 1.2;
  white-space: nowrap;
}

/* Bottom fade */
.wgp-pricing-hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, #050B1F, transparent);
  pointer-events: none;
  z-index: 0;
}

/* Loading */
.wgp-pricing-loading {
  text-align: center;
  padding: 80px 0;
  color: rgba(255,255,255,0.5);
}
.wgp-pricing-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: #FF0058;
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: wgpSpin 0.8s linear infinite;
}
@keyframes wgpSpin { to { transform: rotate(360deg); } }

/* Premium Pricing Container */
.wgp-premium-pricing {
  background: #f8f9fc;
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

/* Offers Slider Section */
.wgp-offers-slider {
  background: #f8f9fc;
  padding: 30px 0 10px;
  position: relative;
  z-index: 2;
}
.wgp-offers-slider .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.wgp-offers-track {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 100px;
}
.wgp-offers-inner {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.wgp-offer-slide {
  min-width: 100%;
  padding: 0;
  box-sizing: border-box;
}
.wgp-offer-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 36px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0B1220, #1A2540);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  min-height: 100px;
}
.wgp-offer-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,0,88,0.06), transparent 70%);
  pointer-events: none;
}
.wgp-offer-card::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.04), transparent 70%);
  pointer-events: none;
}
.wgp-offer-icon-wrap {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,0,88,0.1), rgba(139,92,246,0.1));
  border: 1px solid rgba(255,255,255,0.04);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.wgp-offer-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: #fff;
}
.wgp-offer-content {
  flex: 1;
  position: relative;
  z-index: 1;
}
.wgp-offer-content h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.wgp-offer-content p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}
.wgp-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 16px;
  border-radius: 50px;
  background: linear-gradient(135deg, #FF0058, #8B5CF6);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(255,0,88,0.2);
}
.wgp-offer-badge svg {
  width: 14px;
  height: 14px;
}
.wgp-offer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.wgp-offer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.12);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.wgp-offer-dot.active {
  width: 28px;
  border-radius: 4px;
  background: linear-gradient(90deg, #FF0058, #8B5CF6);
}
.wgp-offer-dot:hover {
  background: rgba(255,0,88,0.3);
}

/* Category Section */
.wgp-category-section {
  padding: 60px 0;
}
.wgp-category-section + .wgp-category-section {
  border-top: 1px solid #e5e7eb;
}
.wgp-category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(135deg, #0B1220, #111833);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.wgp-category-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.wgp-category-text { flex: 1; }
.wgp-category-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.wgp-category-tagline {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Plans Grid */
.wgp-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Plan Card - redesigned matching homepage cards */
.wgp-plan-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #f0f2f8;
  position: relative;
  display: flex;
  flex-direction: column;
}

.wgp-plan-card .wgp-card-top { padding: 28px 24px 24px; }
.wgp-plan-card .wgp-card-mid { padding: 20px 24px; }
.wgp-plan-card .wgp-card-bot { padding: 20px 24px 24px; }

.wgp-plan-featured {
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

/* highlighted feature in PremiumPricing */
.wgp-card-feat.highlighted {
  font-weight: 600;
}

/* Trust Bar - Premium Pricing */
.wgp-trust-bar-pricing {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 0;
  background: linear-gradient(135deg, #050B1F, #0D1530);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  overflow: hidden;
}
.wgp-trust-bar-pricing .wgp-trust-item {
  text-align: center;
  padding: 32px 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: background 0.3s;
}
.wgp-trust-bar-pricing .wgp-trust-item:hover {
  background: rgba(255,0,88,0.04);
}
.wgp-trust-bar-pricing .wgp-trust-item:last-child { border-right: none; }
.wgp-trust-bar-pricing .wgp-trust-icon {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}
.wgp-trust-bar-pricing .wgp-trust-icon svg {
  stroke: #FF3D7F;
  filter: drop-shadow(0 0 8px rgba(255,0,88,0.3));
}
.wgp-trust-bar-pricing .wgp-trust-value {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #FF0058, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wgp-trust-bar-pricing .wgp-trust-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* CTA Section */
.wgp-pricing-cta-section {
  background: linear-gradient(135deg, #050B1F, #0B1220);
  padding: 80px 0;
}
.wgp-pricing-cta-section h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.wgp-pricing-cta-section p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.wgp-pricing-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.wgp-pricing-cta-buttons .wgp-cta-primary {
  padding: 16px 32px;
  font-size: 1rem;
}
.wgp-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.15);
  transition: all 0.3s;
}
.wgp-cta-outline:hover {
  border-color: #FF0058;
  color: #FF0058;
  background: rgba(255,0,88,0.05);
}

/* ============================================
   PREMIUM PRICING RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .wgp-pricing-hero-right-svg { width: 240px; opacity: 0.4; }
  .wgp-pricing-hero-illustration { width: 480px; height: 480px; }
}

@media (max-width: 1024px) {
  .wgp-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wgp-trust-bar {
    grid-template-columns: repeat(3, 1fr);
  }
  .wgp-trust-item:nth-child(3) { border-right: none; }
  .wgp-pricing-hero-right-svg { width: 180px; opacity: 0.3; }
  .wgp-pricing-hero-illustration { width: 380px; height: 380px; opacity: 0.35; }
  .wgp-pricing-float-card.card-left { left: 1%; width: 80px; height: 54px; }
  .wgp-pricing-float-card.card-right { right: 1%; width: 80px; height: 54px; }
}

@media (max-width: 768px) {
  .wgp-pricing-hero { padding: 130px 0 50px; min-height: auto; }
  .wgp-pricing-hero-title { font-size: 2.2rem; gap: 0; }
  .wgp-pricing-hero-title-simple { font-size: 1.2rem; }
  .wgp-pricing-hero-title-comma { font-size: 1.5rem; }
  .wgp-pricing-hero-title-accent { font-size: 2.6rem; }
  .wgp-pricing-hero-title-pricing { font-size: 2rem; letter-spacing: 2px; }
  .wgp-pricing-hero-sub { font-size: 1rem; }
  .wgp-pricing-hero-actions { gap: 12px; margin-top: 26px; }
  .wgp-pricing-hero-btn-primary,
  .wgp-pricing-hero-btn-secondary { padding: 12px 24px; font-size: 0.88rem; }
  .wgp-pricing-hero-stats { gap: 8px; margin-top: 30px; }
  .wgp-pricing-stat-card { padding: 12px 16px; min-width: 130px; }
  .wgp-pricing-stat-card-icon { width: 34px; height: 34px; }
  .wgp-pricing-stat-card-icon svg { width: 16px; height: 16px; }
  .wgp-pricing-stat-card-content strong { font-size: 0.85rem; }
  .wgp-pricing-stat-card-content span { font-size: 0.68rem; }
  .wgp-pricing-hero-illustration { width: 400px; height: 400px; opacity: 0.4; }
  .wgp-pricing-hero-right-svg { width: 200px; right: 0; opacity: 0.4; }
  .wgp-pricing-float-card.card-left { left: 2%; width: 90px; height: 60px; }
  .wgp-pricing-float-card.card-right { right: 2%; width: 90px; height: 60px; }
  .wgp-pricing-float-card.card-top { left: 10%; }
  .wgp-pricing-hero-grid { background-size: 40px 40px; }
  .wgp-pricing-hero-title-diamond { width: 18px; height: 18px; }
  .wgp-pricing-hero-title-spark { width: 16px; height: 16px; }
  .wgp-offer-card { padding: 24px 28px; gap: 18px; }
  .wgp-offer-icon-wrap { width: 52px; height: 52px; min-width: 52px; }

  .wgp-category-header {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 14px;
  }
  .wgp-category-title { font-size: 1.3rem; }
  .wgp-category-tagline { font-size: 0.88rem; }
  .wgp-category-section { padding: 40px 0; }
  .wgp-plans-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .wgp-trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .wgp-trust-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.06); }
  .wgp-trust-item:nth-child(2), .wgp-trust-item:nth-child(4) { border-right: none; }
  .wgp-pricing-cta-section h2 { font-size: 1.6rem; }
  .wgp-pricing-cta-section p { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .wgp-pricing-hero { padding: 100px 0 36px; min-height: auto; }
  .wgp-pricing-hero-title { font-size: 1.8rem; gap: 0; }
  .wgp-pricing-hero-title-simple { font-size: 1rem; letter-spacing: 0.5px; }
  .wgp-pricing-hero-title-comma { font-size: 1.2rem; }
  .wgp-pricing-hero-title-diamond { width: 16px; height: 16px; }
  .wgp-pricing-hero-title-accent { font-size: 2rem; letter-spacing: -0.5px; }
  .wgp-pricing-hero-title-spark { width: 14px; height: 14px; }
  .wgp-pricing-hero-title-pricing { font-size: 1.6rem; letter-spacing: 2px; }
  .wgp-pricing-hero-title-underline { height: 3px; bottom: -2px; }
  .wgp-pricing-hero-sub { font-size: 0.85rem; max-width: 100%; padding: 0 10px; }
  .wgp-pricing-hero-actions { flex-direction: column; gap: 10px; margin-top: 22px; }
  .wgp-pricing-hero-btn-primary,
  .wgp-pricing-hero-btn-secondary { padding: 13px 28px; font-size: 0.9rem; width: 100%; max-width: 320px; justify-content: center; }
  .wgp-pricing-hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; max-width: 340px; margin-left: auto; margin-right: auto; }
  .wgp-pricing-stat-card { width: 100%; padding: 14px 12px; min-width: 0; flex-direction: column; text-align: center; gap: 8px; border-radius: 14px; }
  .wgp-pricing-stat-card-icon { width: 36px; height: 36px; }
  .wgp-pricing-stat-card-icon svg { width: 16px; height: 16px; }
  .wgp-pricing-stat-card-content { align-items: center; }
  .wgp-pricing-stat-card-content strong { font-size: 0.9rem; }
  .wgp-pricing-stat-card-content span { font-size: 0.68rem; }
  .wgp-pricing-hero-illustration { width: 280px; height: 280px; opacity: 0.2; display: block; }
  .wgp-pricing-hero-right-svg { display: none; }
  .wgp-pricing-float-card.card-left { display: none; }
  .wgp-pricing-float-card.card-right { display: none; }
  .wgp-pricing-float-card.card-top { display: none; }
  .wgp-pricing-hero-grid { background-size: 24px 24px; }
  .wgp-pricing-hero-badge { font-size: 0.7rem; padding: 5px 14px 5px 10px; margin-bottom: 14px; }
  .wgp-pricing-hero-orb.orb-1 { width: 300px; height: 300px; }
  .wgp-pricing-hero-orb.orb-2 { width: 250px; height: 250px; }
  .wgp-pricing-hero-orb.orb-3 { display: none; }
  .wgp-offers-slider { padding: 20px 0 0; }
  .wgp-offer-card { flex-direction: column; text-align: center; padding: 24px 20px; gap: 14px; min-height: auto; }
  .wgp-offer-icon-wrap { width: 48px; height: 48px; min-width: 48px; }
  .wgp-offer-icon-wrap svg { width: 22px; height: 22px; }
  .wgp-offer-content h4 { font-size: 1rem; }
  .wgp-offer-content p { font-size: 0.8rem; }
  .wgp-offer-badge { font-size: 0.75rem; padding: 5px 14px; }



  .wgp-plan-card { padding: 0; }
  .wgp-pill-amount { font-size: 1.6rem; }
  .wgp-price-pill { padding: 10px 18px 8px; }
  .wgp-card-top { padding: 22px 18px 20px; }
  .wgp-card-mid { padding: 16px 18px; }
  .wgp-card-bot { padding: 16px 18px 20px; }
  .wgp-card-title { font-size: 1rem; }
  .wgp-card-feat { font-size: 0.8rem; padding: 6px 0; }
  .wgp-card-icon-wrap { width: 48px; height: 48px; }
  .wgp-card-btn-start { font-size: 0.85rem; padding: 11px 16px; }
  .wgp-card-btn-wa { font-size: 0.8rem; padding: 10px 16px; }
  .wgp-trust-bar { grid-template-columns: repeat(2, 1fr); }
  .wgp-trust-item { padding: 16px 12px; }
  .wgp-trust-value { font-size: 1.2rem; }
  .wgp-pricing-cta-buttons { flex-direction: column; align-items: center; }
  .wgp-pricing-cta-buttons .wgp-cta-primary,
  .wgp-cta-outline { width: 100%; max-width: 280px; justify-content: center; }
}

/* Service Card */
.service-card { text-align: center; padding: 40px 28px; position: relative; overflow: hidden; }
.service-card .icon-box {
  width: 72px; height: 72px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  background: var(--soft-pink); margin: 0 auto 20px; color: var(--primary);
}
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.service-card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 16px; }

/* Pricing Card */
.pricing-card { text-align: center; padding: 40px 32px; position: relative; border: 1px solid var(--light-border); }
.pricing-card.popular { border-color: var(--primary); transform: scale(1.05); box-shadow: var(--shadow-xl); }
.pricing-card .plan-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.pricing-card .price { font-size: 2.8rem; font-weight: 900; color: var(--primary); margin: 16px 0; }
.pricing-card .price small { font-size: 1rem; color: var(--gray); font-weight: 400; }
.pricing-card .features { text-align: left; margin: 24px 0; }
.pricing-card .features li { padding: 8px 0; display: flex; align-items: center; gap: 10px; color: var(--dark-3); font-size: 0.95rem; }
.pricing-card .features li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; background: var(--soft-pink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23F0065C' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

/* Portfolio Card */
.portfolio-card { overflow: hidden; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); transition: all 0.3s; border: 1px solid var(--light-border); }
.portfolio-card:hover { box-shadow: var(--shadow); }
.portfolio-card .image { position: relative; min-height: 200px; overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #f8f9fc, #eef1f8); }
.portfolio-card .image img { width: 100%; height: auto; object-fit: contain; }
.portfolio-card .content { padding: 24px; }
.portfolio-card .content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.portfolio-card .content p { color: var(--gray); font-size: 0.9rem; margin-bottom: 12px; }
.portfolio-card .tech-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.portfolio-card .tech-tags span { background: var(--soft-pink); color: var(--primary); padding: 4px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 500; }
.portfolio-btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #FF3D7F, #FF6B9D); color: white;
  padding: 8px 16px; border-radius: 8px; font-size: 0.85rem; font-weight: 600;
  text-decoration: none; transition: all 0.3s ease; flex: 1; justify-content: center;
}
.portfolio-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255,61,127,0.4); }
.portfolio-btn-whatsapp {
  display: inline-flex; align-items: center; gap: 6px;
  background: #25D366; color: white;
  padding: 8px 16px; border-radius: 8px; font-size: 0.85rem; font-weight: 600;
  text-decoration: none; transition: all 0.3s ease; flex: 1; justify-content: center;
}
.portfolio-btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37,211,102,0.4); }

/* Testimonial Card */
.testimonial-card { padding: 32px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--light-border); }
.testimonial-card .stars { color: var(--primary); margin-bottom: 16px; font-size: 1.1rem; }
.testimonial-card .review { color: var(--dark-3); font-size: 0.95rem; line-height: 1.8; margin-bottom: 14px; font-style: italic; }
.testimonial-card .client { display: flex; align-items: center; gap: 12px; }
.testimonial-card .avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--gradient-1); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; }
.testimonial-card .client-info h4 { font-weight: 600; font-size: 0.95rem; color: var(--dark); }
.testimonial-card .client-info p { color: var(--gray); font-size: 0.85rem; }

/* Process */
.process-step { text-align: center; position: relative; }
.process-step .step-number {
  width: 64px; height: 64px; border-radius: 50%; background: var(--gradient-1); color: white;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800;
  margin: 0 auto 16px; position: relative; z-index: 2;
  box-shadow: 0 4px 15px rgba(240, 6, 92, 0.3);
}
.process-step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.process-step p { color: var(--gray); font-size: 0.9rem; }

/* FAQ */
.faq-item { border: 1px solid var(--light-border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-item .question {
  padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; color: var(--dark); transition: background 0.3s;
}
.faq-item .question:hover { background: var(--soft-pink); }
.faq-item .answer { padding: 0 24px 20px; color: var(--gray); line-height: 1.8; }
.faq-item.active .answer { display: block; }
.faq-item .answer { display: none; }
.faq-item.active .question .arrow { transform: rotate(180deg); }

/* Contact */
.contact-info-card { padding: 28px; background: var(--soft-pink); border-radius: var(--radius-lg); margin-bottom: 14px; display: flex; align-items: center; gap: 16px; border: 1px solid var(--light-border); }

/* Admin Layout */
.admin-layout { display: flex; min-height: 100vh; }
.admin-main {
  margin-left: 260px; flex: 1; background: #f5f6fa; min-height: 100vh;
  transition: margin-left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.admin-sidebar-collapsed + .admin-main { margin-left: 68px; }
.admin-topbar {
  background: white; padding: 16px 32px; display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid #f0f0f5; position: sticky; top: 0; z-index: 50;
}
.admin-content { padding: 32px; }
.admin-card { background: white; border-radius: 16px; padding: 24px; box-shadow: 0 1px 4px rgba(0,0,0,0.04); border: 1px solid #f0f0f5; }
.admin-spin { animation: adminSpin 1s linear infinite; }
@keyframes adminSpin { to { transform: rotate(360deg); } }
.admin-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.admin-tab { padding: 8px 16px; border-radius: 8px; border: 1px solid #e5e7eb; background: #fff; color: #666; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.2s ease; }
.admin-tab:hover { background: #f8f9fc; color: #050B1F; }
.admin-tab.active { background: linear-gradient(135deg, #FF0058, #8B5CF6); color: #fff; border-color: transparent; }
.stat-card { padding: 24px; border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-sm); border: 1px solid var(--light-border); }
.stat-card .stat-icon { width: 48px; height: 48px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.stat-card .stat-value { font-size: 2rem; font-weight: 800; color: var(--dark); }
.stat-card .stat-label { color: var(--gray); font-size: 0.85rem; margin-top: 4px; }

/* Data Table */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { text-align: left; padding: 12px 16px; background: var(--soft-pink); font-weight: 600; font-size: 0.85rem; color: var(--dark); text-transform: uppercase; letter-spacing: 0.5px; }
.data-table td { padding: 14px 16px; border-bottom: 1px solid var(--light-border); font-size: 0.9rem; }
.data-table tr:hover td { background: var(--soft-pink); }
.status-badge { padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.status-new { background: rgba(59, 130, 246, 0.1); color: var(--info); }
.status-contacted { background: rgba(245, 158, 11, 0.1); color: var(--warning); }
.status-in_progress { background: rgba(240, 6, 92, 0.1); color: var(--primary); }
.status-converted { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.status-lost { background: rgba(239, 68, 68, 0.1); color: var(--danger); }
.status-read { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.status-active { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.status-inactive { background: rgba(239, 68, 68, 0.1); color: var(--danger); }
.status-new::before, .status-contacted::before, .status-in_progress::before, .status-converted::before, .status-lost::before,
.status-read::before, .status-active::before, .status-inactive::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-right: 6px; vertical-align: middle; }
.status-new::before { background: var(--info); }
.status-contacted::before { background: var(--warning); }
.status-in_progress::before { background: var(--primary); }
.status-converted::before { background: var(--success); }
.status-lost::before { background: var(--danger); }
.status-read::before { background: var(--success); }
.status-active::before { background: var(--success); }
.status-inactive::before { background: var(--danger); }

/* Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(7, 17, 38, 0.6); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; z-index: 2000; }
.modal-overlay.show,
.modal-overlay.active { display: flex; }
.modal { background: white; border-radius: var(--radius-xl); padding: 32px; max-width: 600px; width: 90%; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-xl); }
.modal-lg { max-width: 800px; }
.modal h2 { margin-bottom: 24px; font-size: 1.3rem; color: var(--dark); }
.modal-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 24px; }

/* Login */
.login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #f5f6fa, #e8ecf5); }
.login-card { background: white; border-radius: var(--radius-xl); padding: 48px; width: 100%; max-width: 420px; box-shadow: 0 25px 60px rgba(240, 6, 92, 0.15); border: 1px solid var(--light-border); }
.login-card h1 { text-align: center; margin-bottom: 8px; }
.login-card .subtitle { text-align: center; color: var(--gray); margin-bottom: 32px; }

/* ================================================================
   MEGA DROPDOWN — Ultra-Premium Resources Panel
   ================================================================ */

/* --- Trigger Button --- */
.nav-item-dropdown { position: relative; }
.nav-dropdown-trigger {
  position: relative;
  font-weight: 500;
  color: #374151;
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.25s ease, background 0.25s ease;
  text-decoration: none;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  font-family: inherit;
  line-height: 1.4;
}
.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FF0058, #EC0D5A);
  border-radius: 2px;
  transition: width 0.25s ease, left 0.25s ease;
  opacity: 0;
}
.nav-dropdown-trigger .dropdown-chevron {
  width: 14px; height: 14px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}
.nav-item-dropdown:hover > .nav-dropdown-trigger,
.nav-item-dropdown.is-open > .nav-dropdown-trigger {
  color: #FF0058;
  background: rgba(255, 0, 88, 0.05);
}
.nav-item-dropdown:hover > .nav-dropdown-trigger::after,
.nav-item-dropdown.is-open > .nav-dropdown-trigger::after {
  width: 60%; left: 20%; opacity: 1;
}
.nav-item-dropdown.is-open > .nav-dropdown-trigger .dropdown-chevron {
  transform: rotate(180deg);
}

/* --- Mega Panel Container --- */
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px) scale(0.96);
  width: 580px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0.3s ease;
  z-index: 200;
}
.nav-item-dropdown:hover > .nav-dropdown-panel,
.nav-item-dropdown.is-open > .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* Animated gradient border glow */
.nav-dropdown-glow {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: conic-gradient(from 0deg, #FF0058, #3B82F6, #8B5CF6, #10B981, #F59E0B, #EC4899, #FF0058);
  opacity: 0.35;
  filter: blur(1px);
  z-index: -1;
}

/* Inner glass panel */
.nav-dropdown-inner {
  display: flex;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(30px) saturate(1.6);
  -webkit-backdrop-filter: blur(30px) saturate(1.6);
  border-radius: 20px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Two-column layout */
.nav-dropdown-left,
.nav-dropdown-right {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-dropdown-divider-v {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.06) 20%, rgba(0,0,0,0.06) 80%, transparent);
  margin: 10px 0;
  flex-shrink: 0;
}

/* --- Brand Header --- */
.nav-dropdown-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  margin-bottom: 2px;
}
.nav-dropdown-brand-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,0,88,0.08), rgba(255,0,88,0.04));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,0,88,0.1);
}
.nav-dropdown-brand-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #071126;
  line-height: 1.2;
  display: block;
}
.nav-dropdown-brand-sub {
  font-size: 0.68rem;
  color: #999;
  font-weight: 400;
  display: block;
}

/* --- Divider --- */
.nav-dropdown-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.05) 70%, transparent);
  margin: 4px 10px;
}

/* --- Dropdown Items --- */
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

/* Left accent bar */
.nav-dropdown-item::before {
  content: '';
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 3px;
  background: var(--item-color, #FF0058);
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transform: scaleY(0);
  transition: opacity 0.22s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hover glow background */
.nav-dropdown-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: radial-gradient(ellipse at 20% 50%, var(--item-color, #FF0058)08, transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.nav-dropdown-item:hover {
  background: rgba(255, 0, 88, 0.03);
  transform: translateX(3px);
}
.nav-dropdown-item:hover::before {
  opacity: 1;
  transform: scaleY(1);
}
.nav-dropdown-item:hover::after {
  opacity: 1;
}
.nav-dropdown-item.active {
  background: rgba(255, 0, 88, 0.05);
}
.nav-dropdown-item.active::before {
  opacity: 1;
  transform: scaleY(1);
}

/* --- Icon Badge with Glow Ring --- */
.nav-dropdown-item-icon {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: var(--icon-bg, rgba(255,0,88,0.08));
  color: var(--icon-color, #FF0058);
  position: relative;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease;
}
/* Glow ring on hover */
.nav-dropdown-item-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 14px;
  background: var(--icon-glow, rgba(255,0,88,0.2));
  opacity: 0;
  filter: blur(6px);
  transition: opacity 0.3s ease;
  z-index: -1;
}
.nav-dropdown-item:hover .nav-dropdown-item-icon {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 4px 12px var(--icon-glow, rgba(255,0,88,0.2));
}
.nav-dropdown-item:hover .nav-dropdown-item-icon::after {
  opacity: 0.6;
}

/* --- Item Text --- */
.nav-dropdown-item-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.nav-dropdown-item-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #071126;
  line-height: 1.3;
  transition: color 0.2s ease;
}
.nav-dropdown-item:hover .nav-dropdown-item-label {
  color: var(--item-color, #FF0058);
}
.nav-dropdown-item-desc {
  font-size: 0.72rem;
  color: #999;
  font-weight: 400;
  line-height: 1.3;
}

/* --- Item Arrow --- */
.nav-dropdown-item-arrow {
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: #ccc;
}
.nav-dropdown-item:hover .nav-dropdown-item-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--item-color, #FF0058);
}

/* --- CTA Item (Start a Project) --- */
.nav-dropdown-cta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 14px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,0,88,0.06), rgba(236,13,90,0.06));
  border: 1px solid rgba(255,0,88,0.1);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  margin-top: 4px;
}
.nav-dropdown-cta-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,0,88,0.08), rgba(236,13,90,0.08));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 14px;
}
.nav-dropdown-cta-item:hover .nav-dropdown-cta-glow { opacity: 1; }
.nav-dropdown-cta-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,0,88,0.15);
  border-color: rgba(255,0,88,0.2);
}
.nav-dropdown-cta-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FF0058, #EC0D5A);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255,0,88,0.3);
  position: relative;
  z-index: 1;
}
.nav-dropdown-cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  position: relative;
  z-index: 1;
}
.nav-dropdown-cta-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FF0058;
  line-height: 1.3;
}
.nav-dropdown-cta-sub {
  font-size: 0.68rem;
  color: #999;
  line-height: 1.3;
}
.nav-dropdown-cta-arrow {
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: #FF0058;
  position: relative;
  z-index: 1;
}
.nav-dropdown-cta-item:hover .nav-dropdown-cta-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* --- Staggered Item Reveal Animation --- */
.nav-item-dropdown.is-open .nav-dropdown-item,
.nav-item-dropdown.is-open .nav-dropdown-brand,
.nav-item-dropdown.is-open .nav-dropdown-cta-item {
  animation: megaItemIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.nav-item-dropdown.is-open .nav-dropdown-brand { animation-delay: 0.02s; }
.nav-item-dropdown.is-open .nav-dropdown-left .nav-dropdown-item:nth-child(1) { animation-delay: 0.04s; }
.nav-item-dropdown.is-open .nav-dropdown-left .nav-dropdown-item:nth-child(2) { animation-delay: 0.07s; }
.nav-item-dropdown.is-open .nav-dropdown-left .nav-dropdown-item:nth-child(3) { animation-delay: 0.10s; }
.nav-item-dropdown.is-open .nav-dropdown-right .nav-dropdown-item:nth-child(1) { animation-delay: 0.06s; }
.nav-item-dropdown.is-open .nav-dropdown-right .nav-dropdown-item:nth-child(2) { animation-delay: 0.09s; }
.nav-item-dropdown.is-open .nav-dropdown-right .nav-dropdown-item:nth-child(3) { animation-delay: 0.12s; }
.nav-item-dropdown.is-open .nav-dropdown-cta-item { animation-delay: 0.14s; }
@keyframes megaItemIn {
  from { opacity: 0; transform: translateY(6px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .header-inner { padding: 10px 20px; }
  .brand-monogram { width: 36px; height: 36px; font-size: 1.15rem; }
  .brand-divider { height: 28px; }
  .brand-wordmark { font-size: 1.1rem; }
  .brand-in { font-size: 0.9rem; }
  .brand-tagline { font-size: 0.6rem; }
  .hero-banner-container { padding-top: 56px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  body.mobile-menu-open .floating-contact,
  body.mobile-menu-open .wgp-chat { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-color, #ffffff); padding: 20px; box-shadow: var(--shadow-lg); gap: 4px;
    border-bottom: 1px solid var(--light-border); border-radius: 0 0 16px 16px;
    max-height: calc(100vh - 100px); overflow-y: auto; overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    z-index: 100000;
  }
  .nav-link { padding: 12px 16px; font-size: 0.95rem; border-radius: 10px; text-align: left; }
  .nav-link::after { display: none; }
  .nav-link:hover { background: rgba(255, 0, 88, 0.06); }
  .nav-link.active { background: rgba(255, 0, 88, 0.08); }
  .nav-item-dropdown { display: none; }
  .nav-dropdown-trigger { width: 100%; justify-content: space-between; padding: 12px 16px; font-size: 0.95rem; border-radius: 10px; text-align: left; }
  .nav-dropdown-trigger::after { display: none; }
  .nav-dropdown-panel {
    position: static; transform: none; width: 100%;
    visibility: visible; pointer-events: auto;
    display: none; opacity: 1; max-height: none; overflow: visible;
  }
  .nav-item-dropdown.is-open > .nav-dropdown-panel {
    display: block;
  }
  .nav-dropdown-glow { display: none; }
  .nav-dropdown-inner {
    flex-direction: column;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    overflow: visible;
  }
  .nav-dropdown-divider-v { width: auto; height: 1px; margin: 0 10px; }
  .nav-dropdown-brand { padding: 6px 10px; }
  .nav-dropdown-divider { margin: 2px 10px; }
  .nav-dropdown-item { padding: 10px 12px; border-radius: 10px; gap: 10px; }
  .nav-dropdown-item-icon { width: 34px; height: 34px; border-radius: 9px; }
  .nav-dropdown-item-icon svg { width: 16px; height: 16px; }
  .nav-dropdown-item-arrow { display: none; }
  .nav-dropdown-item-desc { display: none; }
  .nav-dropdown-item-label { font-size: 0.9rem; }
  .nav-dropdown-cta-item { margin: 4px 0 0; }
  .nav-dropdown-cta-arrow { display: none; }
  .nav-dropdown-cta-icon { width: 32px; height: 32px; }
  .nav-dropdown-cta-icon svg { width: 14px; height: 14px; }
  .nav-cta { width: 100%; justify-content: center; padding: 12px 20px; margin-top: 8px; }
  .mobile-toggle { display: block; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: scale(1); }
  .admin-sidebar { transform: translateX(-100%); width: 260px !important; transition: transform 0.3s ease; }
  .admin-sidebar.admin-sidebar-open { transform: translateX(0); }
  .admin-sidebar + .admin-main,
  .admin-sidebar-collapsed + .admin-main { margin-left: 0; }
  .section-title h2 { font-size: 1.8rem; }
  .hero-content h1 { font-size: 2rem; }
  .section { padding: 60px 0; }
  .sca-section { padding: 40px 0; }
  .header-inner { padding: 12px 20px; }
  .brand-monogram { width: 32px; height: 32px; font-size: 1rem; border-radius: 8px; }
  .brand-divider { height: 24px; }
  .brand-wordmark { font-size: 0.95rem; }
  .brand-in { font-size: 0.8rem; }
  .brand-tagline { font-size: 0.55rem; }
  .hero-banner-container { padding-top: 56px; }
}
/* Advanced Service Card */
.sca-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-card-adv {
  background: white; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.4s ease;
  border: 1px solid #f0f0f5; display: flex; flex-direction: column;
}
.sca-image {
  position: relative; min-height: 200px; overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f8f9fc, #eef1f8);
}
.sca-image img { width: 100%; height: auto; object-fit: contain; transition: all 0.5s ease; }
.sca-image-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.15); opacity: 0; transition: opacity 0.4s ease;
}
.sca-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.sca-title { font-size: 1.25rem; font-weight: 800; color: #071126; margin-bottom: 6px; }
.sca-desc { color: #666; font-size: 0.9rem; line-height: 1.6; margin-bottom: 18px; }
.sca-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin-bottom: 14px; flex: 1; }
.sca-benefit {
  display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #333;
  padding: 5px 0; border-bottom: 1px solid #f5f5f8;
}
.sca-benefit-icon {
  width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; background: linear-gradient(135deg, #FFF3F7, #FFEAF2); color: #F0065C;
}
.sca-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 16px; border-top: 1px solid #f0f0f5; }
.sca-btn-primary, .sca-btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 12px; font-weight: 600; font-size: 0.85rem;
  cursor: pointer; border: none; text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative; overflow: hidden; flex: 1; justify-content: center;
  letter-spacing: 0.3px;
}
.sca-btn-primary {
  background: linear-gradient(135deg, #F0065C, #FF3D7F);
  color: white; box-shadow: 0 4px 18px rgba(240, 6, 92, 0.3);
}
.sca-btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #FF3D7F, #F0065C);
  opacity: 0; transition: opacity 0.4s ease; border-radius: 12px;
}
.sca-btn-primary:hover {
  transform: translateY(-3px); box-shadow: 0 8px 30px rgba(240, 6, 92, 0.45);
}
.sca-btn-primary:hover::before { opacity: 1; }
.sca-btn-primary span, .sca-btn-primary svg { position: relative; z-index: 2; }
.sca-btn-primary svg:last-child { transition: transform 0.3s ease; }
.sca-btn-primary:hover svg:last-child { transform: translateX(4px); }
.sca-btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; box-shadow: 0 4px 18px rgba(37, 211, 102, 0.3);
}
.sca-btn-whatsapp::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #128C7E, #075E54);
  opacity: 0; transition: opacity 0.4s ease; border-radius: 12px;
}
.sca-btn-whatsapp:hover {
  transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}
.sca-btn-whatsapp:hover::before { opacity: 1; }
.sca-btn-whatsapp span, .sca-btn-whatsapp svg { position: relative; z-index: 2; }

@media (max-width: 992px) {
  .sca-grid { grid-template-columns: 1fr; gap: 20px; }
  .sca-benefits { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-banner-v2 { min-height: auto; padding: 80px 0 40px; }
  .hero-banner-v2-inner { flex-direction: column; padding: 24px 20px; gap: 36px; }
  .hero-banner-v2-left { flex: 0 0 100%; max-width: 100%; }
  .hero-banner-v2-right { flex: 0 0 100%; max-width: 100%; }
  .hero-banner-v2-headline { font-size: 2.2rem; }
  .hero-banner-v2-typing { font-size: 0.95rem; min-height: 28px; }
  .hero-banner-v2-desc { font-size: 0.85rem; }
  .hero-banner-v2-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-banner-v2-cta { flex-direction: column; }
  .hero-banner-v2-btn { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-banner-v2 { padding: 72px 0 32px; }
  .hero-banner-v2-headline { font-size: 1.8rem; }
  .hero-banner-v2-badge { font-size: 0.7rem; padding: 4px 14px 4px 8px; }
  .hero-banner-v2-typing { font-size: 0.85rem; }
  .hero-banner-v2-desc { font-size: 0.82rem; }
  .hero-banner-v2-cards { grid-template-columns: 1fr; }
  .hero-banner-v2-card { padding: 12px 14px; }
}

/* ===== SIMPLE HERO BANNER ===== */
.hero-banner-simple {
  width: 100%;
  line-height: 0;
  padding-top: 100px;
}

.hero-banner-simple-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .hero-banner-simple { padding-top: 98px; }
}

@media (max-width: 768px) {
  .hero-banner-simple { padding-top: 98px; }
}

@media (max-width: 480px) {
  .hero-banner-simple { padding-top: 106px; }
}

@media (max-width: 768px) {
  .sca-body { padding: 18px 20px 22px; }
  .sca-title { font-size: 1.1rem; }
  .sca-desc { font-size: 0.85rem; }
  .sca-benefit { font-size: 0.82rem; gap: 6px; }
  .sca-benefit-icon { width: 24px; height: 24px; }
  .sca-actions { flex-direction: column; }
  .sca-actions .btn { width: 100%; justify-content: center; }
  .sca-hero-title { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.7rem; }
  .hero-buttons { flex-direction: column; }
  .btn-lg { width: 100%; }
  .sca-body { padding: 14px 16px 18px; }
  .sca-title { font-size: 1rem; }
  .sca-desc { font-size: 0.82rem; margin-bottom: 14px; }
  .sca-benefit { font-size: 0.78rem; padding: 4px 0; }
  .sca-benefit-icon { width: 22px; height: 22px; }
  .sca-benefits { gap: 4px 12px; margin-bottom: 14px; }
  .service-card-adv { border-radius: 14px; }
  .sca-actions { padding-top: 12px; }
  .sca-actions .btn, .sca-btn-primary, .sca-btn-whatsapp { font-size: 0.82rem; padding: 10px 16px; }
  .sca-hero-title { font-size: 1.8rem; }
}

/* ============================================
   ABOUT PAGE - LEGACY (REMOVED - USE PREMIUM UPGRADE BLOCK)
   ============================================ */

/* ============================================
   TECH STACK - PREMIUM SECTION
   ============================================ */

.ts-section {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(180deg, #f8f9fc 0%, #fff 50%, #f8f9fc 100%);
  overflow: hidden;
}
.ts-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.ts-bg-shape-1 {
  top: -200px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,0,88,0.07), transparent 70%);
}
.ts-bg-shape-2 {
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.07), transparent 70%);
}
.ts-bg-shape-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,0,88,0.03), transparent 70%);
}

/* Header */
.ts-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 2;
}
.ts-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,0,88,0.1), rgba(139,92,246,0.1));
  color: #FF0058;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.ts-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #050B1F;
  margin-bottom: 14px;
  line-height: 1.2;
}
.ts-gradient-text {
  background: linear-gradient(135deg, #FF0058, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ts-subtitle {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Filter */
.ts-filter-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.ts-filter {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f5;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 100%;
}
.ts-filter::-webkit-scrollbar { display: none; }
.ts-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 12px;
  border: none;
  background: transparent;
  color: #666;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: inherit;
}
.ts-filter-btn:hover {
  color: #050B1F;
  background: #f8f9fc;
}
.ts-filter-btn.active {
  background: linear-gradient(135deg, #FF0058, #8B5CF6);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255,0,88,0.3);
}
.ts-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  background: rgba(0,0,0,0.08);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0 6px;
}
.ts-filter-btn.active .ts-filter-count {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

/* Grid */
.ts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
  z-index: 2;
}

/* Card */
.ts-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: transparent;
}
.ts-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(255,0,88,0.15), rgba(139,92,246,0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: all 0.4s ease;
}
.ts-card:hover::before {
  background: linear-gradient(135deg, #FF0058, #8B5CF6);
}
.ts-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,0,88,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.ts-card:hover .ts-card-glow {
  opacity: 1;
}
.ts-card:hover {
  transform: translateY(-8px);
}
.ts-card-inner {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ts-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.ts-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,0,88,0.08), rgba(139,92,246,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF0058;
  transition: all 0.3s ease;
}
.ts-card:hover .ts-card-icon {
  background: linear-gradient(135deg, #FF0058, #8B5CF6);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(255,0,88,0.25);
}
.ts-featured-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,0,88,0.1), rgba(139,92,246,0.1));
  color: #FF0058;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.ts-card-category {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  background: #f8f9fc;
  color: #888;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
  width: fit-content;
}
.ts-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #050B1F;
  margin-bottom: 8px;
}
.ts-card-desc {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.65;
  flex: 1;
}

/* Featured card */
.ts-card.featured .ts-card-inner {
  background: linear-gradient(135deg, #fff 0%, #fdf2f8 100%);
}
.ts-card.featured::before {
  background: linear-gradient(135deg, rgba(255,0,88,0.3), rgba(139,92,246,0.3));
}
.ts-card.featured:hover::before {
  background: linear-gradient(135deg, #FF0058, #8B5CF6);
}

/* Trust Bar */
.ts-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 56px;
  padding: 28px 40px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f5;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  position: relative;
  z-index: 2;
}
.ts-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #050B1F;
  font-size: 0.9rem;
  font-weight: 600;
}
.ts-trust-item svg {
  color: #FF0058;
  flex-shrink: 0;
}
.ts-trust-divider {
  width: 1px;
  height: 24px;
  background: #f0f0f5;
}

/* ============================================
   TECH STACK - RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
  .ts-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .ts-section { padding: 70px 0; }
  .ts-title { font-size: 2rem; }
  .ts-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .ts-trust { flex-wrap: wrap; gap: 20px; padding: 24px 28px; }
  .ts-trust-divider { display: none; }
}

@media (max-width: 768px) {
  .ts-section { padding: 60px 0; }
  .ts-title { font-size: 1.8rem; }
  .ts-filter-wrap { padding: 0 16px; }
  .ts-filter { gap: 4px; padding: 4px; }
  .ts-filter-btn { padding: 8px 14px; font-size: 0.8rem; }
  .ts-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ts-card-inner { padding: 22px 18px; }
  .ts-card-icon { width: 48px; height: 48px; border-radius: 12px; }
  .ts-card-name { font-size: 0.95rem; }
  .ts-card-desc { font-size: 0.8rem; }
  .ts-trust { gap: 14px; padding: 20px; }
  .ts-trust-item { font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .ts-section { padding: 48px 0; }
  .ts-title { font-size: 1.5rem; }
  .ts-subtitle { font-size: 0.92rem; }
  .ts-filter-btn span { display: none; }
  .ts-filter-btn { padding: 8px 12px; }
  .ts-filter-btn svg { width: 18px; height: 18px; }
  .ts-grid { grid-template-columns: 1fr; gap: 14px; }
  .ts-card-inner { padding: 20px 18px; flex-direction: row; align-items: center; gap: 16px; }
  .ts-card-top { margin-bottom: 0; flex-direction: column; align-items: center; gap: 6px; }
  .ts-card-category { display: none; }
  .ts-card-name { margin-bottom: 0; font-size: 0.95rem; }
  .ts-card-desc { font-size: 0.8rem; margin-top: 4px; }
  .ts-card-inner { flex-direction: column; align-items: flex-start; }
  .ts-trust { flex-direction: column; gap: 12px; }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.sr-element {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

/* Fade Up */
.sr-fade-up {
  transform: translateY(40px);
}
.sr-fade-up.sr-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade Down */
.sr-fade-down {
  transform: translateY(-40px);
}
.sr-fade-down.sr-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade Left */
.sr-fade-left {
  transform: translateX(-50px);
}
.sr-fade-left.sr-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade Right */
.sr-fade-right {
  transform: translateX(50px);
}
.sr-fade-right.sr-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Zoom In */
.sr-zoom-in {
  transform: scale(0.9);
}
.sr-zoom-in.sr-visible {
  opacity: 1;
  transform: scale(1);
}

/* Scale Up */
.sr-scale-up {
  transform: scale(0.85);
}
.sr-scale-up.sr-visible {
  opacity: 1;
  transform: scale(1);
}

/* Rotate In */
.sr-rotate-in {
  transform: rotate(-5deg) scale(0.95);
}
.sr-rotate-in.sr-visible {
  opacity: 1;
  transform: rotate(0) scale(1);
}

/* Flip Up */
.sr-flip-up {
  transform: perspective(800px) rotateX(15deg) translateY(30px);
}
.sr-flip-up.sr-visible {
  opacity: 1;
  transform: perspective(800px) rotateX(0) translateY(0);
}

/* Stagger Children */
.sr-stagger .sr-child {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
.sr-stagger .sr-child.sr-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .sr-element,
  .sr-stagger .sr-child {
    transition: opacity 0.3s ease;
    transform: none;
  }
  .sr-fade-up, .sr-fade-down, .sr-fade-left, .sr-fade-right,
  .sr-zoom-in, .sr-scale-up, .sr-rotate-in, .sr-flip-up {
    transform: none;
  }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.stt-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #FF0058, #EC0D5A);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: var(--z-stt);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px rgba(255,0,88,0.3);
}
.stt-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.stt-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255,0,88,0.45);
}
.stt-btn:active {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .stt-btn {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
}

/* =========================================
   FLOATING CONTACT BUTTONS — PREMIUM MOBILE
   ========================================= */

/* Container */
.floating-contact {
  position: fixed;
  left: 24px;
  bottom: 96px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  pointer-events: none;
}

/* Base button */
.floating-contact__btn {
  pointer-events: auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
  border: none;
  outline: none;
  text-decoration: none;
  box-shadow:
    0 6px 20px rgba(0,0,0,0.2),
    0 2px 6px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.25);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
  animation: wgpFloatVibrate 3s ease-in-out infinite;
  animation-play-state: running;
  overflow: visible;
  border: 1px solid rgba(255,255,255,0.18);
}

/* ===== Glass Highlight on Top ===== */
.floating-contact__shine {
  position: absolute;
  top: 2px;
  left: 8px;
  right: 8px;
  height: 45%;
  border-radius: 50% 50% 45% 45%;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.35) 0%,
    rgba(255,255,255,0.08) 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* ===== Layer A: Vibration (every 3s) ===== */
@keyframes wgpFloatVibrate {
  0%, 83% { transform: translateX(0); }
  85% { transform: translateX(-3px) rotate(-1deg); }
  87% { transform: translateX(3px) rotate(1deg); }
  89% { transform: translateX(-2px); }
  91% { transform: translateX(2px); }
  93% { transform: translateX(-1px); }
  95%, 100% { transform: translateX(0); }
}

/* ===== Layer B: Expanding pulse ring (::before) ===== */
.floating-contact__btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  animation: wgpPulseRing 2.5s ease-out infinite;
  pointer-events: none;
}

@keyframes wgpPulseRing {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.6;
  }
  60% {
    opacity: 0.2;
  }
  100% {
    width: 220%;
    height: 220%;
    opacity: 0;
  }
}

.floating-contact__btn--whatsapp::before {
  background: radial-gradient(circle, rgba(37,211,102,0.5), transparent 70%);
}

.floating-contact__btn--call::before {
  background: radial-gradient(circle, rgba(37,99,235,0.5), transparent 70%);
}

/* ===== Layer C: Soft glow breathe (::after) ===== */
.floating-contact__btn::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  z-index: -2;
  animation: wgpGlowBreathe 3s ease-in-out infinite;
  pointer-events: none;
  filter: blur(10px);
}

@keyframes wgpGlowBreathe {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.15); }
}

.floating-contact__btn--whatsapp::after {
  background: radial-gradient(circle, #25D366, transparent 70%);
}

.floating-contact__btn--call::after {
  background: radial-gradient(circle, #2563EB, transparent 70%);
}

/* ===== Button Gradients ===== */
.floating-contact__btn--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-contact__btn--call {
  background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
}

/* ===== Hover (Desktop) ===== */
.floating-contact:hover .floating-contact__btn {
  animation-play-state: paused;
  transform: translateY(-6px) scale(1.1);
  box-shadow:
    0 12px 32px rgba(0,0,0,0.3),
    0 4px 12px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

.floating-contact__btn--whatsapp:hover {
  background: linear-gradient(135deg, #1EBF5F 0%, #0D7D6E 100%);
}

.floating-contact__btn--call:hover {
  background: linear-gradient(135deg, #1D4ED8 0%, #1E3A8A 100%);
}

.floating-contact__btn:hover .floating-contact__icon {
  transform: scale(1.1);
}

/* ===== Active / Tap (Mobile) ===== */
.floating-contact__btn:active {
  transform: scale(0.92);
  transition: transform 0.1s ease;
}

/* ===== Focus Visible (Accessibility) ===== */
.floating-contact__btn:focus-visible {
  outline: 3px solid #FF0058;
  outline-offset: 3px;
}

/* ===== Icon ===== */
.floating-contact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 3;
}

.floating-contact__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== Hover Label (Desktop Only) ===== */
.floating-contact__label {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.4);
  color: #1a1a2e;
  z-index: 4;
}

.floating-contact__btn--whatsapp .floating-contact__label {
  color: #25D366;
}

.floating-contact__btn--call .floating-contact__label {
  color: #2563EB;
}

.floating-contact__btn:hover .floating-contact__label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  .floating-contact__btn {
    animation: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .floating-contact__btn::before,
  .floating-contact__btn::after {
    animation: none !important;
    opacity: 0 !important;
  }

  .floating-contact__btn:hover {
    transform: translateY(-3px) scale(1.05);
  }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .floating-contact {
    left: 18px;
    bottom: 88px;
    gap: 12px;
  }

  .floating-contact__btn {
    width: 54px;
    height: 54px;
  }

  .floating-contact__icon {
    width: 26px;
    height: 26px;
  }

  .floating-contact__label {
    display: none;
  }

  .floating-contact__btn:active {
    transform: scale(0.9);
  }
}

/* ===== Small Mobile ===== */
@media (max-width: 480px) {
  .floating-contact {
    left: 14px;
    bottom: 82px;
  }

  .floating-contact__btn {
    width: 50px;
    height: 50px;
  }

  .floating-contact__icon {
    width: 24px;
    height: 24px;
  }
}

/* =========================================
   ABOUT PAGE — PREMIUM UPGRADE
   ========================================= */

/* Page base */
.abt-page { background: #fff; }

/* Section base */
.abt-section { padding: 80px 0; }
.abt-section:nth-child(even) { background: #fafbff; }
.abt-section-badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
  color: #FF0058; background: rgba(255,0,88,0.08); padding: 6px 18px;
  border-radius: 50px; margin-bottom: 16px; text-transform: uppercase;
}
.abt-section-heading { font-size: 2.2rem; font-weight: 800; color: #071126; margin-bottom: 12px; text-align: center; }
.abt-section-desc { color: #666; font-size: 1.05rem; line-height: 1.7; text-align: center; max-width: 700px; margin: 0 auto 32px; }
.abt-bio-extended { max-width: 800px; }
.abt-bio-2col { display: grid; grid-template-columns: 1fr 1fr; }
.abt-stats-4 { display: grid; grid-template-columns: repeat(4, 1fr); }
.abt-stats-6 { display: grid; grid-template-columns: repeat(6, 1fr); }

/* ===== BUTTONS ===== */
.abt-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 12px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: all 0.3s ease; cursor: pointer;
}
.abt-btn-primary { background: #fff; color: #FF0058; border: none; }
.abt-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.abt-btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.abt-btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.abt-btn-whatsapp { background: #25D366; color: #fff; border: none; }
.abt-btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.3); }
.abt-btn-white { background: #fff; color: #FF0058; border: none; }
.abt-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,255,255,0.3); }

/* ===== HERO ===== */
.abt-hero { background: linear-gradient(135deg, #071126, #101A33); padding: 120px 0 80px; position: relative; overflow: hidden; }
.abt-hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.abt-hero-shape { position: absolute; border-radius: 50%; pointer-events: none; }
.abt-hero-shape-1 { top: -30%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%); }
.abt-hero-shape-2 { bottom: -20%; left: -5%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%); }
.abt-hero-shape-3 { top: 20%; left: 30%; width: 200px; height: 200px; background: radial-gradient(circle, rgba(255,0,88,0.06), transparent 70%); }
.abt-hero-shape-4 { bottom: 10%; right: 20%; width: 150px; height: 150px; background: radial-gradient(circle, rgba(139,92,246,0.06), transparent 70%); }
.abt-hero-inner { display: flex; align-items: center; gap: 60px; position: relative; z-index: 2; }
.abt-hero-content { flex: 1; }
.abt-hero-title { font-size: 3rem; font-weight: 900; color: #fff; margin-bottom: 12px; line-height: 1.15; }
.abt-hero-subtitle { font-size: 1.2rem; color: rgba(255,255,255,0.85); font-weight: 600; margin-bottom: 16px; }
.abt-hero-desc { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.8; max-width: 560px; margin-bottom: 32px; }
.abt-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.abt-hero-visual { flex: 0 0 300px; position: relative; display: flex; justify-content: center; align-items: center; }
.abt-hero-visual-inner { position: relative; width: 260px; height: 260px; }
.abt-hero-visual-box {
  position: absolute; display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px; padding: 20px; color: white;
}
.abt-hero-visual-box span { font-size: 0.8rem; font-weight: 600; }
.abt-hero-visual-box-1 { top: 0; left: 0; }
.abt-hero-visual-box-2 { top: 50%; right: 0; transform: translateY(-50%); }
.abt-hero-visual-box-3 { bottom: 0; left: 20px; }

/* ===== SERVICES HERO ===== */
.serv-page { overflow-x: hidden; }
.serv-hero { background: linear-gradient(135deg, #071126, #101A33); padding: 120px 0 80px; position: relative; overflow: hidden; }
.serv-hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.serv-hero-shape { position: absolute; border-radius: 50%; pointer-events: none; }
.serv-hero-shape-1 { top: -30%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(240,6,92,0.15), transparent 70%); }
.serv-hero-shape-2 { bottom: -20%; left: -5%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,61,127,0.1), transparent 70%); }
.serv-hero-shape-3 { top: 20%; left: 30%; width: 200px; height: 200px; background: radial-gradient(circle, rgba(255,0,88,0.06), transparent 70%); }
.serv-hero-shape-4 { bottom: 10%; right: 20%; width: 150px; height: 150px; background: radial-gradient(circle, rgba(139,92,246,0.06), transparent 70%); }
.serv-hero-inner { display: flex; align-items: center; gap: 60px; position: relative; z-index: 2; }
.serv-hero-content { flex: 1; }
.serv-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,61,127,0.12); border: 1px solid rgba(255,61,127,0.2);
  padding: 8px 20px; border-radius: 30px; margin-bottom: 16px;
  color: #FF3D7F; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px;
}
.serv-hero-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; display: inline-block; animation: pulse 2s infinite; }
.serv-hero-title { font-size: 3rem; font-weight: 900; color: #fff; margin-bottom: 12px; line-height: 1.15; position: relative; }
.serv-hero-title::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; height: 120%;
  background: radial-gradient(ellipse, rgba(139,92,246,0.07), transparent 70%);
  pointer-events: none; z-index: -1;
  opacity: 0; transition: opacity 1s ease 0.5s;
}
.serv-hero-title.visible::before { opacity: 1; }

/* Word reveal animation */
.serv-word {
  display: inline-block;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i) * 0.1s);
}
.serv-hero-title.visible .serv-word {
  opacity: 1; transform: translateY(0);
}

/* Animated gradient text */
.serv-gradient-text {
  background: linear-gradient(135deg, #FF0058, #EC0D5A, #8B5CF6, #FF0058, #EC0D5A, #8B5CF6);
  background-size: 300% 300%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: servGradientShift 6s ease infinite;
}
@keyframes servGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Underline animation */
.serv-underline-wrap {
  display: flex; justify-content: flex-start;
  margin-top: 4px; height: 3px;
}
.serv-underline {
  height: 100%; background: #FF0058; border-radius: 2px;
  width: 0;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.9s;
}
.serv-underline.visible { width: 100px; }
.serv-hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.9); font-weight: 600; margin-bottom: 12px; }
.serv-hero-desc { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.8; max-width: 540px; margin-bottom: 24px; }
.serv-hero-checks { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.serv-hero-check { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.serv-check-icon { color: #22c55e; font-weight: 900; font-size: 1rem; }
.serv-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.serv-btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px;
  font-size: 0.95rem; border-radius: 12px; font-weight: 600; text-decoration: none;
  transition: all 0.3s ease; cursor: pointer;
}
.serv-btn:hover { transform: translateY(-2px); }
.serv-btn-whatsapp { background: #25D366; color: #fff; border: none; }
.serv-btn-whatsapp:hover { background: #128C7E; box-shadow: 0 8px 25px rgba(37,211,102,0.3); }
.serv-btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.serv-btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.serv-hero-social {
  display: flex; align-items: center; gap: 12px; margin-top: 28px;
  padding: 14px 20px; background: rgba(255,255,255,0.05); border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7); font-size: 0.85rem;
}
.serv-hero-social strong { color: #fff; }
.serv-stars { display: flex; gap: 2px; flex-shrink: 0; }
.serv-hero-visual { flex: 0 0 300px; position: relative; display: flex; justify-content: center; align-items: center; }
.serv-hero-visual-inner { position: relative; width: 260px; height: 260px; }
.serv-hero-visual-inner img { width: 100%; height: auto; }
.serv-hero-badge-1 {
  position: absolute; top: -10px; right: -10px;
  background: linear-gradient(135deg, #FF3D7F, #FF8A5C); border-radius: 12px;
  padding: 10px 16px; color: #fff; text-align: center;
  box-shadow: 0 4px 20px rgba(255,61,127,0.3);
}
.serv-hero-badge-num { font-size: 1.2rem; font-weight: 900; }
.serv-hero-badge-lbl { font-size: 0.65rem; opacity: 0.9; }
.serv-hero-badge-2 {
  position: absolute; bottom: 20px; left: -15px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border-radius: 10px; padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.15); color: #fff; font-size: 0.75rem;
}

/* ===== PROCESS SLIDER ===== */
.process-section {
  padding: 80px 0; overflow: hidden; position: relative;
  background: linear-gradient(180deg, #071126 0%, #0d1b3a 50%, #071126 100%);
}
.process-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.process-bg-circle {
  position: absolute; border-radius: 50%; opacity: 0.06;
}
.process-bg-circle-1 { width: 500px; height: 500px; background: #FF3D7F; top: -200px; right: -100px; }
.process-bg-circle-2 { width: 400px; height: 400px; background: #8B5CF6; bottom: -150px; left: -100px; }
.process-bg-circle-3 { width: 300px; height: 300px; background: #3B82F6; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.process-header { text-align: center; margin-bottom: 48px; position: relative; z-index: 1; }
.process-badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px;
  background: linear-gradient(135deg, rgba(255,61,127,0.12), rgba(139,92,246,0.08));
  border: 1px solid rgba(255,61,127,0.2); border-radius: 50px;
  font-size: 0.72rem; font-weight: 600; color: #FF6B9D;
  margin-bottom: 18px; letter-spacing: 1px; text-transform: uppercase;
}
.process-title { font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.process-highlight {
  background: linear-gradient(135deg, #FF3D7F, #8B5CF6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.process-subtitle { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.process-slider { position: relative; z-index: 1; }
.process-track-wrap { overflow: hidden; border-radius: 20px; margin: 0 -12px; }
.process-track { display: flex; will-change: transform; }
.process-card { flex: 0 0 33.333%; padding: 12px; min-width: 0; box-sizing: border-box; }
.process-card-inner {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; overflow: hidden; height: 100%; display: flex; flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}
.process-card-inner:hover {
  border-color: rgba(255,255,255,0.15); transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.process-card-top {
  padding: 24px; display: flex; align-items: center; justify-content: space-between;
  position: relative; overflow: hidden;
}
.process-card-top::before {
  content: ''; position: absolute; inset: 0; opacity: 0.1;
  background: radial-gradient(circle at 80% 20%, white 0%, transparent 60%);
}
.process-card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: white; position: relative; z-index: 1;
}
.process-card-num {
  font-size: 2rem; font-weight: 900; color: rgba(255,255,255,0.3);
  position: relative; z-index: 1; line-height: 1;
}
.process-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.process-card-step {
  font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px;
}
.process-card-title {
  font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 4px; line-height: 1.3;
}
.process-card-subtitle {
  font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 12px; font-style: italic;
}
.process-card-desc {
  font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 16px; flex: 1;
}
.process-card-details { display: flex; flex-wrap: wrap; gap: 6px; }
.process-detail-tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 6px; font-size: 0.72rem; font-weight: 600;
  background: rgba(255,255,255,0.04); border: 1px solid;
}
.process-card-connector {
  padding: 12px 24px; text-align: center; opacity: 0;
  transition: opacity 0.3s ease;
}
.process-card-inner:hover .process-card-connector { opacity: 1; }
.process-dots {
  display: flex; justify-content: center; gap: 10px; margin-top: 32px;
  position: relative; z-index: 1;
}
.process-dot {
  width: 12px; height: 12px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.15); transition: all 0.3s ease;
  padding: 0;
}
.process-dot.active {
  width: 32px; border-radius: 6px;
}
.process-dot:hover { background: rgba(255,255,255,0.3); }
.process-progress {
  display: flex; align-items: center; gap: 12px; margin-top: 20px;
  max-width: 400px; margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}
.process-progress-bar {
  flex: 1; height: 4px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden;
}
.process-progress-fill {
  height: 100%; border-radius: 4px; transition: width 0.3s ease, background 0.3s ease;
}
.process-progress-text {
  font-size: 0.75rem; color: rgba(255,255,255,0.4); font-weight: 600; white-space: nowrap;
}
.process-cta {
  text-align: center; margin-top: 40px; position: relative; z-index: 1;
}
.process-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 12px; font-size: 0.95rem; font-weight: 700;
  background: linear-gradient(135deg, #FF3D7F, #8B5CF6); color: #fff;
  text-decoration: none; transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255,61,127,0.3);
}
.process-cta-btn:hover {
  transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,61,127,0.4);
}

/* ===== REVIEWS SLIDER ===== */
.rev-section {
  padding: 80px 0; overflow: hidden; position: relative;
  background: linear-gradient(180deg, #f8f9fe 0%, #fff 50%, #f8f9fe 100%);
}
.rev-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.rev-bg-shape { position: absolute; border-radius: 50%; opacity: 0.04; }
.rev-bg-1 { width: 600px; height: 600px; background: #FF3D7F; top: -250px; right: -200px; }
.rev-bg-2 { width: 500px; height: 500px; background: #8B5CF6; bottom: -200px; left: -150px; }
.rev-header { text-align: center; margin-bottom: 32px; position: relative; z-index: 1; }
.rev-badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px;
  background: linear-gradient(135deg, rgba(255,0,88,0.08), rgba(139,92,246,0.06));
  border: 1px solid rgba(255,0,88,0.12); border-radius: 50px;
  font-size: 0.72rem; font-weight: 600; color: #FF0058;
  margin-bottom: 18px; letter-spacing: 0.5px; text-transform: uppercase;
}
.rev-title { font-size: 2.2rem; font-weight: 800; color: #071126; margin-bottom: 12px; }
.rev-subtitle { font-size: 1rem; color: #666; max-width: 600px; margin: 0 auto; line-height: 1.7; }
.rev-stats-bar {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  margin-bottom: 40px; padding: 20px 32px; position: relative; z-index: 1;
  background: white; border-radius: 16px; max-width: 600px; margin-left: auto; margin-right: auto;
  border: 1px solid #f0f0f5; box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.rev-stat { text-align: center; flex: 1; }
.rev-stat-value { font-size: 1.5rem; font-weight: 800; color: #071126; }
.rev-stat-label { font-size: 0.72rem; color: #999; font-weight: 500; margin-top: 2px; }
.rev-stat-stars { display: flex; gap: 2px; justify-content: center; margin-top: 4px; }
.rev-stat-divider { width: 1px; height: 36px; background: #f0f0f5; }
.rev-slider { position: relative; z-index: 1; }
.rev-track-wrap { overflow: hidden; border-radius: 20px; margin: 0 -8px; }
.rev-track { display: flex; will-change: transform; }
.rev-card { flex: 0 0 33.333%; padding: 8px; min-width: 0; box-sizing: border-box; }
.rev-card-inner {
  background: white; border-radius: 16px; padding: 24px;
  border: 1px solid #f0f0f5; box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  height: 100%; display: flex; flex-direction: column; position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.rev-card-inner:hover {
  box-shadow: 0 12px 40px rgba(255,0,88,0.08); transform: translateY(-4px);
  border-color: rgba(255,0,88,0.1);
}
.rev-card-top { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; position: relative; }
.rev-quote { color: #FF0058; }
.rev-stars { display: flex; gap: 2px; }
.rev-text {
  font-size: 0.88rem; color: #555; line-height: 1.75; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 14px;
}
.rev-card-divider { height: 1px; background: linear-gradient(90deg, transparent, #f0f0f5, transparent); margin-bottom: 14px; }
.rev-client { display: flex; align-items: center; gap: 10px; }
.rev-avatar { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; overflow: hidden; }
.rev-avatar svg { display: block; }
.rev-client-info { flex: 1; min-width: 0; }
.rev-client-name { font-size: 0.88rem; font-weight: 700; color: #071126; margin: 0; }
.rev-client-type { font-size: 0.75rem; color: #888; margin: 1px 0 0; font-weight: 500; }
.rev-desig-badge {
  display: inline-block; font-size: 0.65rem; font-weight: 600;
  color: #FF3D7F; background: rgba(255,0,88,0.08);
  padding: 1px 8px; border-radius: 8px; margin-bottom: 2px;
}
.rev-client-business { font-size: 0.72rem; color: #777; margin: 0; font-weight: 500; }
.rev-project-tag {
  display: inline-block; font-size: 0.62rem; font-weight: 600;
  color: #8B5CF6; background: rgba(139,92,246,0.08);
  padding: 2px 10px; border-radius: 8px;
  align-self: flex-start;
}
.rev-client-loc {
  display: flex; align-items: center; gap: 3px;
  font-size: 0.68rem; color: #aaa; margin: 2px 0 0;
}
.rev-rating-badge {
  display: flex; align-items: center; gap: 3px;
  padding: 3px 8px; border-radius: 12px;
  color: white; font-size: 0.68rem; font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); flex-shrink: 0;
}
.rev-controls {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 28px; position: relative; z-index: 1;
}
.rev-dots { display: flex; gap: 6px; }
.rev-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none; cursor: pointer;
  background: #ddd; transition: all 0.3s ease; padding: 0;
}
.rev-dot.active {
  width: 24px; border-radius: 4px; background: #FF3D7F;
  box-shadow: 0 0 10px rgba(255,0,88,0.3);
}
.rev-dot:hover { background: #ccc; }
.rev-dot.active:hover { background: #FF3D7F; }
.rev-progress { display: flex; align-items: center; gap: 8px; }
.rev-progress-bar {
  width: 80px; height: 3px; background: #eee; border-radius: 3px; overflow: hidden;
}
.rev-progress-fill {
  height: 100%; background: linear-gradient(90deg, #FF3D7F, #8B5CF6);
  border-radius: 3px; transition: width 0.3s ease;
}
.rev-progress-text { font-size: 0.72rem; color: #aaa; font-weight: 600; }
.rev-cta { text-align: center; margin-top: 36px; position: relative; z-index: 1; }
.rev-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 12px;
  background: linear-gradient(135deg, #FF0058, #8B5CF6);
  color: white; font-size: 0.95rem; font-weight: 600;
  text-decoration: none; transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255,0,88,0.3);
}
.rev-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,0,88,0.4);
}

/* ===== CERTIFICATES SLIDER ===== */
.cert-section { padding: 80px 0; background: linear-gradient(180deg, #fff 0%, #f8f9fe 100%); overflow: hidden; }
.cert-header { text-align: center; margin-bottom: 48px; }
.cert-badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px;
  background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(255,0,88,0.06));
  border: 1px solid rgba(139,92,246,0.12); border-radius: 50px;
  font-size: 0.72rem; font-weight: 600; color: #8B5CF6;
  margin-bottom: 18px; letter-spacing: 0.5px; text-transform: uppercase;
}
.cert-title { font-size: 2.2rem; font-weight: 800; color: #071126; margin-bottom: 12px; }
.cert-subtitle { font-size: 1rem; color: #666; max-width: 600px; margin: 0 auto; line-height: 1.7; }
.cert-slider { position: relative; }
.cert-track-wrap { overflow: hidden; border-radius: 16px; }
.cert-track { display: flex; will-change: transform; }
.cert-card { flex: 0 0 33.333%; padding: 12px; min-width: 0; box-sizing: border-box; }
.cert-card-inner {
  background: white; border-radius: 16px;
  border: 1px solid #f0f0f5; box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  height: 100%; display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.cert-card-inner:hover { box-shadow: 0 8px 32px rgba(139,92,246,0.1); transform: translateY(-4px); }
.cert-card-inner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #FF0058, #8B5CF6);
  z-index: 1;
}
.cert-img-wrap {
  width: 100%; height: 200px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(139,92,246,0.04), rgba(255,0,88,0.02));
  flex-shrink: 0;
}
.cert-img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 20px; box-sizing: border-box;
  transition: transform 0.5s ease;
}
.cert-card-inner:hover .cert-img { transform: scale(1.06); }
.cert-img-fallback {
  width: 100%; height: 100%; display: flex;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(139,92,246,0.06), rgba(255,0,88,0.04));
}
.cert-card-body {
  padding: 24px 24px 28px; display: flex; flex-direction: column;
  flex: 1;
}
.cert-card-title { font-size: 1.1rem; font-weight: 700; color: #071126; margin-bottom: 4px; }
.cert-org { font-size: 0.85rem; color: #8B5CF6; font-weight: 500; margin-bottom: 10px; }
.cert-desc {
  font-size: 0.85rem; color: #666; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 14px; flex: 1;
}
.cert-meta-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.cert-year-badge {
  display: inline-block; padding: 4px 14px; border-radius: 20px;
  background: rgba(139,92,246,0.08); color: #8B5CF6;
  font-size: 0.75rem; font-weight: 600;
}
.cert-category-tag {
  display: inline-block; padding: 4px 14px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,0,88,0.06), rgba(139,92,246,0.06));
  color: #FF0058; font-size: 0.72rem; font-weight: 600;
}
.cert-cta { text-align: center; margin-top: 40px; }
.cert-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px; border-radius: 50px;
  background: linear-gradient(135deg, #8B5CF6, #FF0058);
  color: white; font-size: 1rem; font-weight: 600;
  text-decoration: none; transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(139,92,246,0.3);
}
.cert-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139,92,246,0.4);
}

/* ===== BIO / WHO WE ARE ===== */
.abt-bio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.abt-bio-card {
  background: white; border-radius: 16px; padding: 32px 24px; text-align: center;
  border: 1px solid #f0f0f5; transition: all 0.3s ease;
}
.abt-bio-card:hover { border-color: rgba(255,0,88,0.2); box-shadow: 0 8px 30px rgba(255,0,88,0.08); }
.abt-bio-icon {
  width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(255,0,88,0.08), rgba(139,92,246,0.08));
  margin: 0 auto 16px; color: #FF0058;
}
.abt-bio-card-title { font-size: 1rem; font-weight: 700; color: #071126; margin-bottom: 8px; }
.abt-bio-card-desc { font-size: 0.85rem; color: #666; line-height: 1.6; }

/* ===== TRUST STATS ===== */
.abt-trust-stats {
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
  margin-top: 40px; padding: 32px 0; border-top: 1px solid #f0f0f5;
}
.abt-trust-stat { text-align: center; min-width: 120px; }
.abt-trust-stat-value {
  display: block; font-size: 1.8rem; font-weight: 800;
  background: linear-gradient(135deg, #FF0058, #8B5CF6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.abt-trust-stat-label { display: block; font-size: 0.82rem; color: #888; margin-top: 4px; font-weight: 500; }

/* ===== SERVICES ===== */
.abt-services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.abt-services-grid-desktop { display: grid; }
.abt-what-slider { display: none; }
.abt-service-card {
  background: white; border-radius: 16px; padding: 28px; border: 1px solid #f0f0f5;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.abt-service-card:hover { border-color: rgba(255,0,88,0.15); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.abt-service-icon {
  width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(255,0,88,0.08), rgba(139,92,246,0.08));
  margin-bottom: 16px; color: #FF0058;
}
.abt-service-title { font-size: 1.05rem; font-weight: 700; color: #071126; margin-bottom: 8px; }
.abt-service-desc { font-size: 0.9rem; color: #666; line-height: 1.6; }

/* What We Do Slider (mobile) */
.abt-what-slider {
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
}
.abt-what-slider:active { cursor: grabbing; }
.abt-what-track-wrap { overflow: hidden; }
.abt-what-track {
  display: flex;
  will-change: transform;
}
.abt-what-card-wrap {
  flex: 0 0 100%;
  padding: 0 8px;
  box-sizing: border-box;
}
.abt-what-card-wrap .abt-service-card {
  margin: 0;
  height: 100%;
}
.abt-what-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.abt-what-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.abt-what-dot.active {
  width: 20px;
  border-radius: 4px;
}
.abt-what-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.abt-what-progress-bar {
  width: 100px;
  height: 3px;
  background: #e8e8ef;
  border-radius: 3px;
  overflow: hidden;
}
.abt-what-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #FF0058, #8B5CF6);
  border-radius: 3px;
  transition: width 0.3s ease;
}
.abt-what-progress-text {
  font-size: 0.75rem;
  color: #999;
  font-weight: 600;
}

/* ===== FOUNDER PROFILE ===== */
.abt-founder { background: linear-gradient(180deg, #fafbff 0%, #fff 100%); }
.abt-founder-card {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: center;
  background: linear-gradient(160deg, #ffffff 0%, #fafbff 50%, #f8f5ff 100%); border-radius: 28px; padding: 52px; border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 8px 40px rgba(0,0,0,0.05); position: relative; overflow: hidden;
}
.abt-founder-card::before {
  content: ''; position: absolute; top: -80px; right: -80px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,0,88,0.08) 0%, transparent 70%); border-radius: 50%;
}
.abt-founder-card::after {
  content: ''; position: absolute; bottom: -60px; left: -60px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%); border-radius: 50%;
}
.abt-founder-left { position: relative; z-index: 1; text-align: center; }
.abt-founder-avatar {
  width: 240px; height: 240px; border-radius: 50%; overflow: hidden; margin: 0 auto 24px;
  background: linear-gradient(135deg, #FFE6F0, #F3E8FF, #EDE9FE); display: flex; align-items: center; justify-content: center;
  position: relative; transition: all 0.5s cubic-bezier(.22,1,.36,1);
}
.abt-founder-avatar:hover { transform: scale(1.03); }
.abt-founder-avatar-ring {
  position: absolute; inset: -4px; border-radius: 50%;
  background: conic-gradient(from 0deg, #F0065C, #FF6B9D, #8B5CF6, #4F46E5, #F0065C);
  z-index: 0; animation: abtFounderRing 6s linear infinite;
}
@keyframes abtFounderRing { to { transform: rotate(360deg); } }
.abt-founder-avatar-inner {
  width: 240px; height: 240px; border-radius: 50%; overflow: hidden; position: relative; z-index: 1;
  background: linear-gradient(135deg, #FFE6F0, #F3E8FF, #EDE9FE); display: flex; align-items: center; justify-content: center;
  border: 4px solid white; box-shadow: 0 12px 40px rgba(255,0,88,0.15);
}
.abt-founder-avatar img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.abt-founder-avatar svg { color: #FF0058; }
.abt-founder-image { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.abt-founder-name {
  font-size: 1.8rem; font-weight: 900; color: #071126; margin-bottom: 8px;
  background: linear-gradient(135deg, #071126 30%, #4F46E5); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -0.5px; line-height: 1.2;
}
.abt-founder-role {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: #FF0058;
  background: linear-gradient(135deg, rgba(255,0,88,0.06), rgba(139,92,246,0.06)); padding: 6px 18px; border-radius: 50px; margin-bottom: 20px;
  border: 1px solid rgba(255,0,88,0.1);
}
.abt-founder-socials { display: flex; gap: 12px; justify-content: center; margin-top: 20px; }
.abt-founder-social {
  width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 1px solid #e2e8f0; color: #94a3b8; transition: all 0.3s cubic-bezier(.22,1,.36,1); background: white; text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.abt-founder-social:hover { background: linear-gradient(135deg, #4F46E5, #7C3AED); color: white; border-color: transparent; box-shadow: 0 6px 20px rgba(79,70,229,0.3); transform: translateY(-3px) scale(1.1); }
.abt-founder-right { position: relative; z-index: 1; }
.abt-founder-right h2, .abt-founder-name { font-size: 1.8rem; font-weight: 900; color: #071126; margin-bottom: 16px; }
.abt-founder-bio { color: #475569; line-height: 1.9; margin-bottom: 28px; font-size: 0.95rem; font-weight: 400; }
.abt-founder-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 28px;
}
.abt-founder-stat {
  text-align: center; padding: 14px 10px; border-radius: 14px; background: linear-gradient(135deg, rgba(255,0,88,0.04), rgba(139,92,246,0.04));
  border: 1px solid rgba(255,0,88,0.08); transition: all 0.3s ease;
}
.abt-founder-stat:hover { background: linear-gradient(135deg, rgba(255,0,88,0.08), rgba(139,92,246,0.08)); transform: translateY(-2px); }
.abt-founder-stat-value { font-size: 1.3rem; font-weight: 900; background: linear-gradient(135deg, #F0065C, #8B5CF6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.abt-founder-stat-label { font-size: 0.72rem; color: #94a3b8; font-weight: 600; margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.abt-founder-skills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.abt-founder-skill {
  font-size: 0.78rem; font-weight: 600; padding: 7px 16px; border-radius: 50px;
  background: linear-gradient(135deg, rgba(255,0,88,0.05), rgba(139,92,246,0.05));
  color: #475569; border: 1px solid rgba(255,0,88,0.1); transition: all 0.3s ease;
}
.abt-founder-skill:hover { background: linear-gradient(135deg, #F0065C, #8B5CF6); color: white; border-color: transparent; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(240,6,92,0.2); }

/* ===== TEAM ===== */
.abt-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.abt-team-card {
  background: linear-gradient(165deg, #ffffff 0%, #fafaff 50%, #f5f3ff 100%);
  border-radius: 24px; padding: 40px 20px 28px; text-align: center;
  border: 1px solid rgba(255,255,255,0.9); transition: all 0.5s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
  box-shadow: 0 4px 24px rgba(79,70,229,0.06), 0 1px 3px rgba(0,0,0,0.04);
}
.abt-team-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #4F46E5, #7C3AED, #F0065C, #3B82F6);
  background-size: 200% 100%; opacity: 0; transition: opacity 0.4s ease;
}
.abt-team-card::after {
  content: ''; position: absolute; top: -60%; left: -60%; width: 220%; height: 220%;
  background: radial-gradient(circle at center, rgba(79,70,229,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.5s; pointer-events: none;
}
.abt-team-card:hover::before { opacity: 1; animation: abtCardShimmer 2s linear infinite; }
.abt-team-card:hover::after { opacity: 1; }
.abt-team-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(79,70,229,0.14), 0 4px 12px rgba(0,0,0,0.05); border-color: rgba(79,70,229,0.18); }
@keyframes abtCardShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.abt-team-featured-badge {
  position: absolute; top: 14px; right: 14px; font-size: 0.68rem; font-weight: 700;
  background: linear-gradient(135deg, #FF0058, #EC0D5A); color: white;
  padding: 4px 12px; border-radius: 50px; letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(255,0,88,0.3); z-index: 2;
}
.abt-team-avatar {
  width: 100px; height: 100px; border-radius: 50%; overflow: hidden; margin: 0 auto 18px;
  background: linear-gradient(135deg, #f0f4ff, #ede9fe); display: flex; align-items: center; justify-content: center;
  border: 4px solid #fff; box-shadow: 0 4px 24px rgba(79,70,229,0.15); position: relative; z-index: 1;
  transition: all 0.4s cubic-bezier(.22,1,.36,1);
}
.abt-team-card:hover .abt-team-avatar {
  box-shadow: 0 6px 32px rgba(79,70,229,0.28); transform: scale(1.08);
  border-color: rgba(79,70,229,0.15);
}
.abt-team-photo { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; transition: transform 0.5s cubic-bezier(.22,1,.36,1); }
.abt-team-card:hover .abt-team-photo { transform: scale(1.05); }
.abt-team-photo-placeholder { color: #FF0058; }
.abt-team-name {
  font-size: 1.08rem; font-weight: 800; color: #071126; margin-bottom: 6px;
  letter-spacing: -0.3px; position: relative; z-index: 1;
}
.abt-team-role {
  display: inline-block; font-size: 0.75rem; font-weight: 600; padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(79,70,229,0.08), rgba(124,58,237,0.08));
  color: #4F46E5; border: 1px solid rgba(79,70,229,0.12); letter-spacing: 0.3px;
  position: relative; z-index: 1;
}
.abt-team-emp-id {
  display: inline-flex; align-items: center; gap: 5px; padding: 4px 12px;
  background: linear-gradient(135deg, rgba(79,70,229,0.06), rgba(124,58,237,0.06));
  border: 1px solid rgba(79,70,229,0.12); border-radius: 8px;
  font-size: .7rem; font-weight: 700; color: #4F46E5; letter-spacing: .5px;
  margin-bottom: 10px; position: relative; z-index: 1;
  font-family: 'Courier New', monospace;
}
.abt-team-bio { font-size: 0.84rem; color: #64748b; line-height: 1.7; margin-bottom: 16px; position: relative; z-index: 1; }
.abt-team-skills { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 18px; position: relative; z-index: 1; }
.abt-team-skill {
  font-size: 0.7rem; font-weight: 600; padding: 4px 12px; border-radius: 50px;
  background: linear-gradient(135deg, #f8f9fc, #f1f5f9); color: #475569; border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}
.abt-team-card:hover .abt-team-skill { background: linear-gradient(135deg, #eef2ff, #e8e0ff); color: #4F46E5; border-color: rgba(79,70,229,0.15); }
.abt-team-socials, .abt-team-social { display: flex; gap: 10px; justify-content: center; }
.abt-team-social {
  width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid #e2e8f0; color: #94a3b8; transition: all 0.3s ease; background: white; text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04); position: relative; z-index: 1;
}
.abt-team-social:hover { background: linear-gradient(135deg, #4F46E5, #7C3AED); color: white; border-color: transparent; box-shadow: 0 4px 16px rgba(79,70,229,0.3); transform: translateY(-3px); }
.abt-team-empty { text-align: center; padding: 60px 0; color: #999; font-size: 1rem; }

/* ===== WHY CHOOSE ===== */
.abt-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.abt-why-card {
  background: white; border-radius: 14px; padding: 24px; border: 1px solid #f0f0f5;
  display: flex; gap: 16px; align-items: flex-start; transition: all 0.3s ease;
}
.abt-why-card:hover { border-color: rgba(255,0,88,0.15); box-shadow: 0 6px 24px rgba(0,0,0,0.05); }
.abt-why-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(255,0,88,0.08), rgba(139,92,246,0.08)); color: #FF0058;
}
.abt-why-title { font-size: 0.95rem; font-weight: 700; color: #071126; margin-bottom: 4px; }
.abt-why-desc { font-size: 0.85rem; color: #666; line-height: 1.5; }
.abt-why-stat-icon { color: #10B981; }
.abt-why-testimonial {
  margin-top: 40px; padding: 28px; background: #fafbff; border-radius: 16px; border: 1px solid #f0f0f5;
}
.abt-why-testimonial-quote { font-size: 1.05rem; color: #555; line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.abt-why-testimonial-text { font-size: 1rem; color: #444; line-height: 1.7; font-style: italic; margin-bottom: 16px; border-left: 3px solid #FF0058; padding-left: 16px; }
.abt-why-testimonial-author { display: flex; align-items: center; gap: 12px; }
.abt-why-testimonial-name { font-weight: 700; color: #071126; font-size: 0.9rem; }

/* ===== MISSION ===== */
.abt-mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.abt-mission-card {
  background: white; border-radius: 16px; padding: 32px; text-align: center;
  border: 1px solid #f0f0f5; transition: all 0.3s ease;
}
.abt-mission-card:hover { border-color: rgba(255,0,88,0.15); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.abt-mission-icon {
  width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(255,0,88,0.08), rgba(139,92,246,0.08));
  margin: 0 auto 16px; color: #FF0058;
}
.abt-mission-title { font-size: 1.05rem; font-weight: 700; color: #071126; margin-bottom: 8px; }
.abt-mission-desc { font-size: 0.9rem; color: #666; line-height: 1.6; }

/* ===== FUTURE VISION ===== */
.abt-future-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.abt-future-card {
  background: white; border-radius: 14px; padding: 24px; border: 1px solid #f0f0f5;
  display: flex; gap: 16px; align-items: flex-start; transition: all 0.3s ease; position: relative;
}
.abt-future-card:hover { border-color: rgba(139,92,246,0.2); box-shadow: 0 6px 24px rgba(0,0,0,0.05); }
.abt-future-step {
  width: 36px; height: 36px; min-width: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #FF0058, #8B5CF6); color: white;
  font-size: 0.85rem; font-weight: 700;
}
.abt-roadmap-number { font-size: 0.85rem; font-weight: 700; color: white; }
.abt-future-icon {
  width: 40px; height: 40px; min-width: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: rgba(139,92,246,0.08); color: #8B5CF6;
}
.abt-future-title { font-size: 0.95rem; font-weight: 700; color: #071126; margin-bottom: 4px; }
.abt-future-desc { font-size: 0.85rem; color: #666; line-height: 1.5; }

/* ===== OUR ACHIEVEMENTS ===== */
.abt-ach-hero {
  position: relative; border-radius: 24px; overflow: hidden; padding: 48px;
  background: linear-gradient(135deg, #071126 0%, #101A33 50%, #0D1025 100%);
  border: 1px solid rgba(139,92,246,0.12); margin-bottom: 40px;
}
.abt-ach-hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.abt-ach-glow {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15;
}
.abt-ach-glow-1 { width: 300px; height: 300px; background: #FF3D7F; top: -100px; right: -50px; }
.abt-ach-glow-2 { width: 250px; height: 250px; background: #8B5CF6; bottom: -80px; left: -60px; }
.abt-ach-hero-inner { position: relative; z-index: 1; }
.abt-ach-header { text-align: center; margin-bottom: 36px; }
.abt-ach-heading { color: white; margin-bottom: 10px; }
.abt-ach-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.abt-ach-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.abt-ach-trophy { position: relative; animation: float 4s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.abt-ach-floating {
  position: absolute; animation: floatSlow 6s ease-in-out infinite;
}
.abt-ach-floating-1 { top: 10px; right: 30px; animation-delay: -2s; }
.abt-ach-floating-2 { bottom: 40px; left: 20px; animation-delay: -4s; }
@keyframes floatSlow { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-8px) rotate(3deg); } }

.abt-ach-certs { display: flex; flex-direction: column; gap: 14px; }
.abt-ach-cert-card {
  display: flex; align-items: center; gap: 16px; padding: 14px 18px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; transition: all 0.3s ease; cursor: default;
}
.abt-ach-cert-card:hover {
  background: rgba(255,255,255,0.07); border-color: rgba(139,92,246,0.2);
  transform: translateX(4px);
}
.abt-ach-cert-img {
  width: 56px; height: 56px; border-radius: 10px; overflow: hidden; flex-shrink: 0;
  background: rgba(139,92,246,0.1);
}
.abt-ach-cert-img img { width: 100%; height: 100%; object-fit: cover; }
.abt-ach-cert-info h4 { font-size: 0.9rem; font-weight: 700; color: white; margin-bottom: 2px; }
.abt-ach-cert-info p { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.abt-ach-cert-badge {
  display: inline-block; padding: 2px 10px; border-radius: 20px; font-size: 0.7rem; font-weight: 600;
  background: rgba(255,61,127,0.12); color: #FF3D7F; border: 1px solid rgba(255,61,127,0.2);
  --badge-clr: #FF3D7F;
}
.abt-ach-cert-badge { background: color-mix(in srgb, var(--badge-clr, #FF3D7F) 12%, transparent); color: var(--badge-clr, #FF3D7F); border-color: color-mix(in srgb, var(--badge-clr, #FF3D7F) 20%, transparent); }

.abt-achievements { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.abt-ach-card {
  background: white; border-radius: 16px; padding: 28px 20px; text-align: center;
  border: 1px solid #f0f0f5; transition: all 0.3s ease; position: relative; overflow: hidden;
}
.abt-ach-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--ach-color, #4F46E5);
}
.abt-ach-card:hover {
  transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  border-color: var(--ach-color, #4F46E5);
}
.abt-ach-icon {
  width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--ach-color, #4F46E5) 10%, transparent);
  color: var(--ach-color, #4F46E5); margin: 0 auto 12px;
}
.abt-ach-value { font-size: 2rem; font-weight: 900; color: var(--ach-color, #4F46E5); margin-bottom: 4px; line-height: 1.1; }
.abt-ach-label { font-size: 0.95rem; font-weight: 700; color: #071126; margin-bottom: 6px; }
.abt-ach-desc { font-size: 0.82rem; color: #888; line-height: 1.5; }

.abt-ach-badges { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.abt-ach-badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; color: #555;
  background: white; border: 1px solid #f0f0f5; transition: all 0.3s ease;
}
.abt-ach-badge:hover {
  border-color: var(--badge-color, #FF3D7F); color: var(--badge-color, #FF3D7F);
  box-shadow: 0 2px 12px color-mix(in srgb, var(--badge-color, #FF3D7F) 20%, transparent);
}
.abt-ach-badge svg { color: var(--badge-color, #FF3D7F); flex-shrink: 0; }

/* ===== COMMITMENT BADGES ===== */
.abt-commitment-grid {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 32px; border-top: 1px solid #f0f0f5;
}
.abt-commitment-badge {
  display: flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 50px;
  background: white; border: 1px solid #f0f0f5; font-size: 0.85rem; font-weight: 600; color: #555;
  transition: all 0.3s ease;
}
.abt-commitment-badge:hover { border-color: rgba(255,0,88,0.2); color: #FF0058; }
.abt-commitment-badge svg { color: #10B981; }

/* ===== STATS ===== */
.abt-stats { background: linear-gradient(135deg, #071126, #101A33); }
.abt-stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.abt-stat-card { text-align: center; padding: 24px 12px; }
.abt-stat-icon { color: rgba(255,255,255,0.6); margin-bottom: 12px; display: flex; justify-content: center; }
.abt-stat-value { display: block; font-size: 1.6rem; font-weight: 800; color: white; margin-bottom: 4px; }
.abt-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ===== CTA ===== */
.abt-cta { background: linear-gradient(135deg, #FF0058, #EC0D5A); }
.abt-cta-inner { padding: 0; }
.abt-cta-heading { color: white; font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.abt-cta-desc { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 28px; }
.abt-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .abt-founder-card { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .abt-founder-left { order: -1; }
  .abt-team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .abt-stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .abt-section { padding: 48px 0; }
  .abt-section-heading { font-size: 1.6rem; }
  .abt-hero-title { font-size: 2rem; }
  .abt-hero-inner { flex-direction: column; text-align: center; gap: 40px; }
  .abt-hero-desc { margin: 0 auto 32px; }
  .abt-hero-actions { justify-content: center; }
  .abt-hero-visual { display: flex; justify-content: center; flex: 0 0 auto; }
  .abt-hero-visual-inner { width: auto; height: auto; }
  .abt-bio-grid { grid-template-columns: 1fr; }
  .abt-services-grid { grid-template-columns: 1fr; }
  .abt-services-grid-desktop { display: none; }
  .abt-what-slider { display: block; }
  .abt-service-card { padding: 24px 20px; }
  .abt-service-icon { width: 44px; height: 44px; }
  .abt-service-title { font-size: 0.95rem; }
  .abt-service-desc { font-size: 0.84rem; }
  .abt-founder-card { padding: 24px; }
  .abt-founder-avatar { width: 140px; height: 140px; }
  .abt-why-grid { grid-template-columns: 1fr; }
  .abt-mission-grid { grid-template-columns: 1fr; }
  .abt-future-grid { grid-template-columns: 1fr; }
  .abt-achievements { grid-template-columns: repeat(2, 1fr); }
  .abt-ach-split { grid-template-columns: 1fr; gap: 28px; }
  .abt-ach-hero { padding: 32px 24px; }
  .abt-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .abt-trust-stats { gap: 20px; }
  .abt-hero-visual-inner img { max-width: 100%; height: auto; }
  .abt-bio-2col { grid-template-columns: 1fr; }
  .abt-stats-4 { grid-template-columns: repeat(2, 1fr); }
  .abt-stats-6 { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .abt-achievements { grid-template-columns: 1fr; }
  .abt-ach-hero { padding: 24px 16px; border-radius: 16px; }
  .abt-ach-split { grid-template-columns: 1fr; gap: 24px; }
  .abt-ach-trophy svg { width: 80px; height: 80px; }
  .abt-ach-value { font-size: 1.6rem; }
  .serv-hero { overflow: visible; padding-top: 140px; }
  .serv-hero-title { font-size: 2rem; }
  .serv-hero-inner { flex-direction: column; text-align: center; gap: 28px; }
  .process-card { flex: 0 0 50%; }
  .process-title { font-size: 1.8rem; }
  .process-section { padding: 60px 0; }
  .rev-card { flex: 0 0 50%; }
  .rev-stats-bar { gap: 16px; padding: 16px 20px; }
  .rev-stat-value { font-size: 1.2rem; }
  .rev-title { font-size: 1.8rem; }
  .rev-section { padding: 60px 0; }
  .rev-dots { gap: 5px; }
  .rev-dot.active { width: 20px; }
  .cert-card { flex: 0 0 50%; }
  .cert-section { padding: 60px 0; }
  .cert-title { font-size: 1.8rem; }
  .cert-img-wrap { height: 170px; }
  .cert-card-body { padding: 20px 20px 24px; }
  .serv-underline-wrap { justify-content: center; }
  .serv-hero-desc { margin: 0 auto 20px; max-width: 100%; }
  .serv-hero-checks { justify-content: center; flex-wrap: wrap; gap: 10px 18px; margin-bottom: 22px; }
  .serv-hero-actions { justify-content: center; }
  .serv-hero-social { justify-content: center; flex-wrap: wrap; }
  .serv-hero-visual { display: flex; justify-content: center; flex: 0 0 auto; margin-top: 10px; }
  .serv-hero-visual-inner { max-width: 320px; width: 100%; height: auto; overflow: visible; }
  .serv-hero-visual-inner img { max-width: 100%; height: auto; display: block; }
  .serv-hero-badge-1 { top: -5px; right: 0; padding: 8px 12px; }
  .serv-hero-badge-2 { bottom: 10px; left: 5px; padding: 8px 12px; }
}
@media (max-width: 767px) {
  .rev-card { flex: 0 0 100%; }
}
@media (max-width: 480px) {
  .abt-hero-title { font-size: 1.6rem; }
  .abt-hero-actions { flex-direction: column; }
  .abt-hero-actions .abt-btn { width: 100%; justify-content: center; }
  .abt-team-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .abt-stats-grid { grid-template-columns: 1fr 1fr; }
  .abt-founder-card { gap: 24px; }
  .abt-founder-avatar { width: 120px; height: 120px; }
  .serv-hero { padding: 130px 0 40px; overflow: visible; }
  .serv-hero-title { font-size: 1.5rem; }
  .serv-hero-subtitle { font-size: 1rem; margin-bottom: 8px; }
  .serv-hero-desc { font-size: 0.9rem; margin-bottom: 18px; }
  .serv-hero-actions { flex-direction: column; }
  .serv-hero-actions .serv-btn { width: 100%; justify-content: center; padding: 12px 20px; font-size: 0.9rem; }
  .serv-hero-checks { flex-direction: column; align-items: center; gap: 6px; margin-bottom: 18px; }
  .serv-hero-check { font-size: 0.85rem; }
  .serv-hero-badge { font-size: 0.65rem; padding: 6px 12px; white-space: normal; }
  .serv-hero-visual { margin-top: 16px; }
  .serv-hero-visual-inner { max-width: 260px; }
  .serv-hero-badge-1 { padding: 5px 8px; }
  .serv-hero-badge-num { font-size: 0.9rem; }
  .serv-hero-badge-lbl { font-size: 0.5rem; }
  .serv-hero-badge-2 { font-size: 0.6rem; padding: 5px 8px; left: 0; bottom: 5px; }
  .serv-hero-social { font-size: 0.75rem; padding: 10px 14px; gap: 8px; margin-top: 20px; }
  .process-card { flex: 0 0 100%; }
  .process-section { padding: 48px 0; }
  .process-title { font-size: 1.5rem; }
  .process-subtitle { font-size: 0.9rem; }
  .process-header { margin-bottom: 32px; }
  .process-card-inner { min-height: auto; }
  .process-card-top { padding: 20px; }
  .process-card-body { padding: 20px; }
  .process-card-icon { width: 48px; height: 48px; border-radius: 12px; }
  .process-card-icon svg { width: 24px; height: 24px; }
  .process-card-num { font-size: 1.5rem; }
  .process-card-title { font-size: 1.05rem; }
  .process-card-desc { font-size: 0.82rem; }
  .process-cta-btn { padding: 12px 24px; font-size: 0.88rem; }
  .rev-section { padding: 48px 0; }
  .rev-title { font-size: 1.5rem; }
  .rev-subtitle { font-size: 0.88rem; }
  .rev-header { margin-bottom: 24px; }
  .rev-stats-bar { flex-wrap: wrap; gap: 12px; padding: 14px 16px; margin-bottom: 28px; }
  .rev-stat { flex: 0 0 calc(50% - 6px); }
  .rev-stat-divider { display: none; }
  .rev-stat-value { font-size: 1.1rem; }
  .rev-card-inner { padding: 20px 16px; }
  .rev-text { font-size: 0.82rem; -webkit-line-clamp: 3; }
  .rev-controls { gap: 12px; margin-top: 20px; }
  .rev-dots { gap: 4px; }
  .rev-dot { width: 6px; height: 6px; }
  .rev-dot.active { width: 18px; height: 6px; }
  .rev-progress-bar { width: 60px; }
  .rev-cta-btn { padding: 12px 24px; font-size: 0.88rem; }
  .cert-card { flex: 0 0 100%; }
  .cert-section { padding: 48px 0; }
  .cert-title { font-size: 1.5rem; }
  .cert-subtitle { font-size: 0.9rem; }
  .cert-header { margin-bottom: 32px; }
  .cert-card-body { padding: 16px 16px 20px; }
  .cert-img-wrap { height: 160px; }
  .cert-cta-btn { padding: 12px 28px; font-size: 0.9rem; }
}
@media (max-width: 360px) {
  .serv-hero-title { font-size: 1.3rem; }
  .serv-hero-visual-inner { max-width: 200px; }
  .serv-hero-visual { margin-top: 12px; }
  .serv-hero-checks { font-size: 0.8rem; }
  .serv-hero-badge-1 { display: none; }
  .serv-hero-badge-2 { display: none; }
}

/* ============================================
   PREMIUM CODING BOX SECTION
   ============================================ */
.premium-coding-box-section {
  padding: 50px 0;
  background: linear-gradient(180deg, #fff 0%, #f8f9fe 100%);
  position: relative;
  overflow: hidden;
}

.premium-coding-box-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 0, 88, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.coding-section-title {
  margin-bottom: 40px;
}

.coding-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(255, 0, 88, 0.08), rgba(139, 92, 246, 0.06));
  border: 1px solid rgba(255, 0, 88, 0.12);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #FF0058;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.coding-badge:hover {
  background: linear-gradient(135deg, rgba(255, 0, 88, 0.12), rgba(139, 92, 246, 0.1));
  border-color: rgba(255, 0, 88, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 0, 88, 0.12);
}

.coding-badge svg {
  stroke: #FF0058;
  animation: codeIconPulse 2s ease-in-out infinite;
}

@keyframes codeIconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.coding-heading {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.coding-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.coding-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.coding-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.coding-stat:hover {
  background: #fff;
  border-color: rgba(255, 0, 88, 0.15);
  color: #FF0058;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.coding-stat svg {
  stroke: #FF0058;
}

.coding-stat-divider {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #d1d5db;
}

.coding-box-wrapper {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.coding-box-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(ellipse, rgba(255, 0, 88, 0.08) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.coding-box-container {
  background: #0d1117;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2), 0 8px 24px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

.editor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #161b22;
  border-bottom: 1px solid #21262d;
}

.editor-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.dot:hover { transform: scale(1.2); }
.dot.red { background: #ff5f57; box-shadow: 0 0 6px rgba(255, 95, 87, 0.4); }
.dot.yellow { background: #febc2e; box-shadow: 0 0 6px rgba(254, 188, 46, 0.4); }
.dot.green { background: #28c840; box-shadow: 0 0 6px rgba(40, 200, 64, 0.4); }

.editor-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.editor-title svg {
  stroke: rgba(255, 255, 255, 0.3);
}

.editor-tabs {
  display: flex;
  gap: 2px;
  overflow-x: auto;
}

.tab {
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.tab.active {
  background: rgba(255, 0, 88, 0.18);
  color: #FF3D7F;
  box-shadow: 0 0 12px rgba(255, 0, 88, 0.15);
}

.tab:hover:not(.active) {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
}

.code-editor-body {
  height: 145px;
  overflow-y: auto;
  padding: 14px 16px;
  background: #0d1117;
}

.code-editor-body::-webkit-scrollbar {
  width: 4px;
}

.code-editor-body::-webkit-scrollbar-track {
  background: #0d1117;
}

.code-editor-body::-webkit-scrollbar-thumb {
  background: #FF3D7F;
  border-radius: 2px;
}

.code-area {
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 0.78rem;
  line-height: 1.65;
}

.code-line {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 1px 0;
  border-radius: 3px;
}

.code-line:hover {
  background: rgba(255, 255, 255, 0.02);
}

.line-number {
  color: rgba(255, 255, 255, 0.18);
  min-width: 22px;
  margin-right: 14px;
  font-size: 0.7rem;
  user-select: none;
  text-align: right;
}

.code-line .kw { color: #ff7b72; }
.code-line .tg { color: #7ee787; }
.code-line .at { color: #79c0ff; }
.code-line .st { color: #a5d6ff; }
.code-line .fn { color: #d2a8ff; }
.code-line .nm { color: #79c0ff; }
.code-line .cl { color: #f0883e; }
.code-line .vr { color: #ffa657; }

.cursor {
  display: inline-block;
  width: 7px;
  height: 15px;
  background: #FF3D7F;
  animation: cursorBlink 1s step-end infinite;
  border-radius: 2px;
  vertical-align: middle;
  box-shadow: 0 0 8px rgba(255, 0, 88, 0.5);
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.editor-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 14px;
  background: #161b22;
  border-top: 1px solid #21262d;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-left, .footer-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #28c840;
  box-shadow: 0 0 6px rgba(40, 200, 64, 0.5);
}

.separator {
  color: rgba(255, 255, 255, 0.15);
}

.coding-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #161b22;
  border-top: 1px solid #21262d;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tech-icons {
  display: flex;
  gap: 4px;
}

.tech-icon {
  padding: 2px 6px;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.3px;
}

.html-icon { background: rgba(227, 76, 38, 0.15); color: #e34c26; }
.css-icon { background: rgba(38, 77, 228, 0.15); color: #264de4; }
.js-icon { background: rgba(240, 219, 79, 0.15); color: #f0db4f; }
.react-icon { background: rgba(97, 218, 251, 0.15); color: #61dafb; }

.no-drag-highlight {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.no-drag-highlight strong {
  background: linear-gradient(135deg, #FF0058, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.coding-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  font-size: 0.8rem;
}

/* Coding Box Responsive */
@media (max-width: 768px) {
  .premium-coding-box-section {
    padding: 40px 0;
  }

  .coding-heading {
    font-size: 2rem;
  }

  .coding-subtitle {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .coding-stats {
    gap: 10px;
  }

  .coding-stat {
    font-size: 0.78rem;
    padding: 5px 10px;
  }

  .coding-stat svg {
    width: 14px;
    height: 14px;
  }

  .coding-box-wrapper {
    width: 90%;
    max-width: 90%;
  }

  .code-editor-body {
    height: 160px;
    padding: 10px 12px;
  }

  .code-area {
    font-size: 0.72rem;
  }

  .editor-title {
    display: none;
  }

  .cta-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .no-drag-highlight {
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .premium-coding-box-section {
    padding: 32px 0;
  }

  .coding-badge {
    font-size: 0.68rem;
    padding: 5px 12px;
    margin-bottom: 14px;
  }

  .coding-heading {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .coding-subtitle {
    font-size: 0.85rem;
    padding: 0 8px;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .coding-stats {
    gap: 8px;
  }

  .coding-stat {
    font-size: 0.72rem;
    padding: 4px 8px;
    gap: 4px;
  }

  .coding-stat svg {
    width: 12px;
    height: 12px;
  }

  .coding-stat-divider {
    display: none;
  }

  .coding-box-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .code-editor-body {
    height: 150px;
    padding: 8px 10px;
  }

  .code-area {
    font-size: 0.68rem;
  }

  .line-number {
    min-width: 18px;
    margin-right: 10px;
    font-size: 0.66rem;
  }

  .coding-cta {
    flex-direction: column;
    gap: 10px;
    padding: 12px 14px;
  }

  .cta-left {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .tech-icons {
    flex-wrap: wrap;
  }

  .no-drag-highlight {
    font-size: 0.75rem;
    margin-bottom: 0;
  }

  .coding-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.78rem;
  }

  .editor-footer {
    flex-direction: column;
    gap: 4px;
    padding: 6px 12px;
  }
}

@keyframes portfolioGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.portfolio-animated-text {
  background: linear-gradient(270deg, #FF3D7F, #FF8A5C, #FF3D7F, #FFD93D, #FF3D7F);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: portfolioGradient 4s ease infinite;
}

@keyframes portfolioGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(255,61,127,0.3), 0 0 40px rgba(255,61,127,0.1); }
  50% { text-shadow: 0 0 30px rgba(255,61,127,0.6), 0 0 60px rgba(255,61,127,0.3); }
}

.portfolio-glow {
  animation: portfolioGlow 3s ease-in-out infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== CONTACT HERO ===== */
.cnt-hero {
  position: relative; overflow: hidden; padding: 100px 0 80px;
  background: linear-gradient(135deg, #071126 0%, #101A33 50%, #0D1025 100%);
}
.cnt-hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.cnt-hero-shape {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.12;
}
.cnt-hero-shape-1 { width: 400px; height: 400px; background: #FF3D7F; top: -100px; right: 10%; }
.cnt-hero-shape-2 { width: 300px; height: 300px; background: #8B5CF6; bottom: -50px; left: 5%; }
.cnt-hero-shape-3 { width: 200px; height: 200px; background: #22c55e; top: 30%; left: 50%; }
.cnt-hero-shape-4 { width: 150px; height: 150px; background: #F59E0B; bottom: 20%; right: 30%; }
.cnt-hero-inner { display: flex; align-items: center; gap: 60px; position: relative; z-index: 1; }
.cnt-hero-content { flex: 1; max-width: 600px; }
.cnt-hero-visual { flex: 0 0 45%; display: flex; justify-content: center; }
.cnt-hero-visual-inner { position: relative; width: 100%; max-width: 500px; height: auto; }
.cnt-hero-visual-inner img { width: 100%; height: auto; }
.cnt-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,61,127,0.12); border: 1px solid rgba(255,61,127,0.2);
  padding: 8px 20px; border-radius: 30px; margin-bottom: 16px;
}
.cnt-hero-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e; display: inline-block;
  animation: pulse 2s infinite;
}
.cnt-hero-badge span:last-child { color: #FF3D7F; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px; }
.cnt-hero-title { font-size: 3rem; font-weight: 900; color: white; margin-bottom: 8px; line-height: 1.15; }
.cnt-word { display: inline-block; opacity: 0; transform: translateY(20px); transition: none; }
.cnt-animated .cnt-word { animation: cntWordReveal 0.5s ease forwards; animation-delay: calc(var(--i) * 0.1s); }
@keyframes cntWordReveal { to { opacity: 1; transform: translateY(0); } }
.cnt-gradient-text { background: linear-gradient(135deg, #FF3D7F, #8B5CF6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cnt-underline-wrap { height: 4px; overflow: hidden; margin-bottom: 16px; }
.cnt-underline { height: 100%; width: 0; background: linear-gradient(90deg, #FF3D7F, #8B5CF6); border-radius: 2px; }
.cnt-animated .cnt-underline { animation: cntUnderlineGrow 0.6s ease 0.9s forwards; }
@keyframes cntUnderlineGrow { to { width: 180px; } }
.cnt-hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.9); font-weight: 600; margin-bottom: 12px; }
.cnt-hero-desc { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.8; max-width: 540px; margin-bottom: 24px; }
.cnt-hero-checks { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.cnt-hero-check { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500; }
.cnt-hero-check svg { flex-shrink: 0; }
.cnt-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.cnt-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 12px;
  font-size: 0.95rem; font-weight: 700; text-decoration: none; transition: all 0.3s ease; cursor: pointer;
}
.cnt-btn-whatsapp { background: #22c55e; color: white; }
.cnt-btn-whatsapp:hover { background: #16a34a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(34,197,94,0.3); }
.cnt-btn-outline { background: rgba(255,255,255,0.06); color: white; border: 1px solid rgba(255,255,255,0.15); }
.cnt-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); transform: translateY(-2px); }
.cnt-hero-social {
  display: flex; align-items: center; gap: 14px; padding: 14px 20px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; max-width: 400px;
}
.cnt-stars { display: flex; gap: 2px; }
.cnt-hero-social span { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.cnt-hero-social strong { color: white; }
.cnt-hero-badge-1, .cnt-hero-badge-2 {
  position: absolute; border-radius: 12px; padding: 10px 16px; color: white;
  font-size: 0.8rem; font-weight: 700;
}
.cnt-hero-badge-1 {
  top: -10px; right: -10px;
  background: linear-gradient(135deg, #FF3D7F, #FF8A5C);
  box-shadow: 0 4px 20px rgba(255,61,127,0.3);
}
.cnt-hero-badge-num { font-size: 1.2rem; font-weight: 900; }
.cnt-hero-badge-lbl { font-size: 0.65rem; opacity: 0.9; }
.cnt-hero-badge-2 {
  bottom: 20px; left: -15px;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
}
.cnt-hero-badge-2 span { color: white; font-size: 0.75rem; }

/* ===== CONTACT FORM SECTION ===== */
.cnt-form-section {
  position: relative; padding: 80px 0; background: #f8f9fe;
  overflow: hidden;
}
.cnt-form-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.cnt-form-glow {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.08;
}
.cnt-form-glow-1 { width: 400px; height: 400px; background: #FF3D7F; top: -100px; right: 10%; }
.cnt-form-glow-2 { width: 350px; height: 350px; background: #8B5CF6; bottom: -100px; left: 10%; }
.cnt-form-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; position: relative; z-index: 1; }
.cnt-form-card {
  background: white; border-radius: 20px; padding: 36px;
  border: 1px solid #f0f0f5; box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.cnt-form-card-header { margin-bottom: 28px; }
.cnt-form-badge {
  display: inline-block; padding: 4px 14px; border-radius: 20px;
  background: rgba(139,92,246,0.08); border: 1px solid rgba(139,92,246,0.15);
  color: #8B5CF6; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.cnt-form-title { font-size: 1.5rem; font-weight: 800; color: #071126; margin-bottom: 6px; }
.cnt-form-subtitle { font-size: 0.9rem; color: #888; line-height: 1.6; }

/* Form */
.cnt-form { display: flex; flex-direction: column; gap: 18px; }
.cnt-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cnt-field { position: relative; display: flex; align-items: center; }
.cnt-field-icon {
  position: absolute; left: 14px; top: 14px; z-index: 2;
  color: #aaa; transition: all 0.3s ease; pointer-events: none;
}
.cnt-field-focused .cnt-field-icon { color: #8B5CF6; }
.cnt-field-filled .cnt-field-icon { color: #8B5CF6; }
.cnt-field input, .cnt-field select, .cnt-field textarea {
  width: 100%; padding: 14px 16px 14px 42px; border: 2px solid #e8e8ef; border-radius: 12px;
  font-size: 0.9rem; color: #071126; background: #fafafe;
  transition: all 0.25s ease; outline: none; font-family: inherit;
  position: relative;
}
.cnt-field input:focus, .cnt-field select:focus, .cnt-field textarea:focus {
  border-color: #8B5CF6; background: white; box-shadow: 0 0 0 4px rgba(139,92,246,0.08);
}
.cnt-field input:hover, .cnt-field select:hover, .cnt-field textarea:hover {
  border-color: #c4b5f7;
}
.cnt-field label {
  position: absolute; top: 14px; left: 42px; font-size: 0.9rem; color: #999;
  pointer-events: none; transition: all 0.2s ease; background: #fafafe; padding: 0 4px;
  z-index: 1;
}
.cnt-field input:focus ~ label, .cnt-field input:not(:placeholder-shown) ~ label,
.cnt-field textarea:focus ~ label, .cnt-field textarea:not(:placeholder-shown) ~ label {
  top: -9px; left: 12px; font-size: 0.75rem; color: #8B5CF6; background: white; font-weight: 600;
}
.cnt-field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.cnt-field select ~ label { top: -9px; left: 12px; font-size: 0.75rem; color: #8B5CF6; background: white; font-weight: 600; }
.cnt-field textarea { min-height: 120px; resize: vertical; padding-top: 16px; }
.cnt-field textarea ~ label { top: 16px; }
.cnt-field textarea:focus ~ label, .cnt-field textarea:not(:placeholder-shown) ~ label { top: -9px; }
.cnt-field-full { grid-column: 1 / -1; }

/* Validation status icons */
.cnt-field-status { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); z-index: 2; display: flex; align-items: center; }
.cnt-field textarea ~ .cnt-field-status { top: 20px; transform: none; }
.cnt-field-status-error { color: #EF4444; }
.cnt-field-status-valid { color: #22c55e; }
.cnt-field-error input, .cnt-field-error textarea { border-color: #EF4444; background: #fff5f5; }
.cnt-field-error input:focus, .cnt-field-error textarea:focus { box-shadow: 0 0 0 4px rgba(239,68,68,0.08); }
.cnt-field-valid input, .cnt-field-valid textarea { border-color: #22c55e; }
.cnt-field-valid input:focus, .cnt-field-valid textarea:focus { box-shadow: 0 0 0 4px rgba(34,197,94,0.08); }

/* Character counter */
.cnt-field-counter {
  position: absolute; right: 14px; bottom: 8px; font-size: 0.7rem; color: #bbb; z-index: 2;
  pointer-events: none;
}

/* Submit button */
.cnt-submit-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 32px; border: none; border-radius: 12px; cursor: pointer; width: 100%;
  background: linear-gradient(135deg, #FF3D7F, #FF1A66); color: white;
  font-size: 1rem; font-weight: 700; transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.cnt-submit-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #FF1A66, #FF0058);
  opacity: 0; transition: opacity 0.4s ease;
}
.cnt-submit-btn:hover::before { opacity: 1; }
.cnt-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,61,127,0.3); }
.cnt-submit-btn:active { transform: translateY(0); }
.cnt-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.cnt-submit-btn > * { position: relative; z-index: 1; }
.cnt-submit-loading { pointer-events: none; }
.cnt-spin { animation: cntSpin 1s linear infinite; }
@keyframes cntSpin { to { transform: rotate(360deg); } }

/* Info column */
.cnt-info-col { position: sticky; top: 100px; }
.cnt-info-card-main {
  background: white; border-radius: 20px; padding: 36px;
  border: 1px solid #f0f0f5; box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.cnt-info-header { margin-bottom: 24px; }
.cnt-info-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.cnt-info-item {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  border-radius: 14px; border: 1px solid #f0f0f5; transition: all 0.3s ease;
}
.cnt-info-item:hover { border-color: #e0dff5; box-shadow: 0 2px 12px rgba(0,0,0,0.04); transform: translateX(4px); }
.cnt-info-icon {
  width: 44px; height: 44px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  transition: all 0.3s ease;
}
.cnt-info-item:hover .cnt-info-icon { transform: scale(1.08); }
.cnt-info-text h4 { font-size: 0.82rem; font-weight: 600; color: #888; margin-bottom: 2px; }
.cnt-info-text a, .cnt-info-text p { font-size: 0.9rem; color: #071126; font-weight: 600; text-decoration: none; }
.cnt-info-text a:hover { color: #8B5CF6; }

.cnt-info-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; border-radius: 12px; background: #22c55e; color: white;
  text-decoration: none; font-weight: 700; font-size: 0.95rem;
  transition: all 0.3s ease; margin-bottom: 16px;
}
.cnt-info-whatsapp:hover { background: #16a34a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(34,197,94,0.3); }

/* Service Area Card */
.cnt-info-area {
  margin-top: 20px; padding: 20px; border-radius: 14px;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 1px solid rgba(34,197,94,0.15);
}
.cnt-info-area-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.cnt-info-area-badge {
  display: inline-block; padding: 3px 10px; border-radius: 6px;
  background: rgba(34,197,94,0.1); color: #16a34a;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.5px;
}
.cnt-info-area-title { font-size: 1rem; font-weight: 700; color: #071126; margin-bottom: 4px; }
.cnt-info-area-desc { font-size: 0.8rem; color: #888; line-height: 1.5; margin-bottom: 14px; }
.cnt-info-area-cities { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.cnt-info-area-city {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 10px; border-radius: 8px; background: white;
  border: 1px solid #e8f5e9; font-size: 0.75rem; font-weight: 500; color: #333;
  transition: all 0.2s ease;
}
.cnt-info-area-city:hover { border-color: #22c55e; background: #f0fdf4; transform: translateY(-1px); }
.cnt-info-area-stats { display: flex; gap: 16px; padding-top: 14px; border-top: 1px solid rgba(34,197,94,0.12); }
.cnt-info-area-stat { flex: 1; text-align: center; }
.cnt-info-area-stat-num { display: block; font-size: 1.1rem; font-weight: 800; color: #16a34a; }
.cnt-info-area-stat-lbl { font-size: 0.65rem; color: #888; font-weight: 500; text-transform: uppercase; letter-spacing: 0.3px; }

/* Toast notifications */
.cnt-toast {
  position: fixed; top: 90px; right: 20px; z-index: var(--z-toast);
  border-radius: 12px; font-size: 0.9rem; font-weight: 600;
  animation: cntToastIn 0.3s ease; box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
}
.cnt-toast-success { background: #22c55e; color: white; }
.cnt-toast-error { background: #EF4444; color: white; }
.cnt-toast-progress {
  position: absolute; bottom: 0; left: 0; height: 3px;
  background: rgba(255,255,255,0.5); transition: width 0.03s linear;
}
.cnt-toast-content {
  display: flex; align-items: center; gap: 10px; padding: 14px 24px;
}
.cnt-toast-close {
  background: none; border: none; color: inherit; cursor: pointer;
  opacity: 0.7; padding: 0; display: flex; align-items: center;
  transition: opacity 0.2s;
}
.cnt-toast-close:hover { opacity: 1; }
@keyframes cntToastIn { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }

/* Responsive */
@media (max-width: 1024px) {
  .cnt-form-inner { grid-template-columns: 1fr; }
  .cnt-info-col { position: static; }
}
@media (max-width: 768px) {
  .cnt-form-section { padding: 48px 0; }
  .cnt-form-card, .cnt-info-card-main { padding: 24px; border-radius: 16px; }
  .cnt-form-row { grid-template-columns: 1fr; }
  .cnt-form-title { font-size: 1.2rem; }
}
@media (max-width: 480px) {
  .cnt-form-card, .cnt-info-card-main { padding: 20px; border-radius: 14px; }
  .cnt-submit-btn { padding: 14px 20px; font-size: 0.9rem; }
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

@media (max-width: 1024px) {
  .cnt-hero { padding: 100px 0 60px; }
  .cnt-hero-inner { flex-direction: column; text-align: center; gap: 40px; }
  .cnt-hero-content { max-width: 100%; }
  .cnt-hero-desc { margin: 0 auto 24px; }
  .cnt-hero-actions { justify-content: center; }
  .cnt-hero-checks { justify-content: center; }
  .cnt-hero-social { max-width: 100%; justify-content: center; }
  .cnt-hero-visual { flex: 0 0 auto; }
}
@media (max-width: 768px) {
  .cnt-hero { padding: 130px 0 50px; }
  .cnt-hero-title { font-size: 2rem; }
  .cnt-hero-subtitle { font-size: 1rem; }
  .cnt-hero-desc { font-size: 0.9rem; }
  .cnt-hero-visual-inner img { max-width: 100%; height: auto; }
}
@media (max-width: 480px) {
  .cnt-hero-title { font-size: 1.6rem; }
  .cnt-hero-checks { gap: 12px; }
  .cnt-hero-check { font-size: 0.82rem; }
  .cnt-hero-badge-1, .cnt-hero-badge-2 { display: none; }
}

/* ===== WHY CHOOSE US ===== */
.cnt-choose-section {
  position: relative; padding: 80px 0; background: #071126; overflow: hidden;
}
.cnt-choose-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.cnt-choose-glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.06; }
.cnt-choose-glow-1 { width: 500px; height: 500px; background: #FF3D7F; top: -150px; right: 5%; }
.cnt-choose-glow-2 { width: 400px; height: 400px; background: #8B5CF6; bottom: -100px; left: 10%; }
.cnt-choose-header { text-align: center; margin-bottom: 48px; }
.cnt-choose-title { font-size: 2rem; font-weight: 800; color: white; margin-bottom: 10px; }
.cnt-choose-subtitle { font-size: 0.95rem; color: rgba(255,255,255,0.55); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.cnt-choose-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cnt-choose-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 32px 24px; text-align: center;
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.cnt-choose-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,61,127,0.06), rgba(139,92,246,0.06));
  opacity: 0; transition: opacity 0.4s ease;
}
.cnt-choose-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.12); }
.cnt-choose-card:hover::before { opacity: 1; }
.cnt-choose-icon {
  width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #FF3D7F, #8B5CF6); color: white; margin: 0 auto 18px;
  transition: all 0.4s ease;
}
.cnt-choose-card:hover .cnt-choose-icon { transform: scale(1.08); box-shadow: 0 8px 24px rgba(255,61,127,0.3); }
.cnt-choose-card-title { font-size: 1.05rem; font-weight: 700; color: white; margin-bottom: 8px; }
.cnt-choose-card-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ===== MAP SECTION ===== */
.cnt-map-section {
  position: relative; padding: 80px 0; background: #f8f9fe;
}
.cnt-map-header { text-align: center; margin-bottom: 40px; }
.cnt-map-header .cnt-choose-title { color: #071126; }
.cnt-map-header .cnt-choose-subtitle { color: #888; }
.cnt-map-wrap { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.06); border: 1px solid #f0f0f5; }
.cnt-map-wrap iframe { display: block; }
.cnt-map-overlay {
  position: absolute; top: 20px; left: 20px; display: flex; align-items: center; gap: 8px;
  background: white; padding: 10px 18px; border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  font-size: 0.85rem; font-weight: 600; color: #071126;
}

/* ===== FAQ SECTION ===== */
.cnt-faq-section {
  position: relative; padding: 80px 0; background: white; overflow: hidden;
}
.cnt-faq-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.cnt-faq-glow { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.04; }
.cnt-faq-glow-1 { width: 400px; height: 400px; background: #8B5CF6; top: -100px; left: 10%; }
.cnt-faq-glow-2 { width: 350px; height: 350px; background: #FF3D7F; bottom: -100px; right: 10%; }
.cnt-faq-header { text-align: center; margin-bottom: 40px; }
.cnt-faq-header .cnt-choose-title { color: #071126; }
.cnt-faq-header .cnt-choose-subtitle { color: #888; }
.cnt-faq-item {
  border: 1px solid #f0f0f5; border-radius: 16px; margin-bottom: 12px; overflow: hidden;
  transition: border-color 0.3s ease;
}
.cnt-faq-item:hover { border-color: #e0dff5; }
.cnt-faq-open { border-color: rgba(139,92,246,0.2); }
.cnt-faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-size: 1rem; font-weight: 600; color: #071126; text-align: left;
  transition: all 0.3s ease; font-family: inherit;
}
.cnt-faq-question:hover { background: #fafafe; }
.cnt-faq-arrow { flex-shrink: 0; transition: transform 0.3s ease; color: #999; }
.cnt-faq-open .cnt-faq-arrow { transform: rotate(180deg); color: #8B5CF6; }
.cnt-faq-answer { overflow: hidden; transition: max-height 0.35s ease; }
.cnt-faq-answer p { padding: 0 24px 20px; color: #666; font-size: 0.9rem; line-height: 1.8; }

@media (max-width: 1024px) {
  .cnt-choose-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .cnt-choose-section { padding: 60px 0; }
  .cnt-choose-title { font-size: 1.5rem; }
  .cnt-choose-grid { gap: 16px; }
  .cnt-choose-card { padding: 24px 20px; }
  .cnt-map-section { padding: 48px 0; }
  .cnt-faq-section { padding: 48px 0; }
  .cnt-map-wrap iframe { height: 280px; }
  .cnt-faq-question { font-size: 0.9rem; padding: 16px 20px; }
  .cnt-faq-answer p { font-size: 0.85rem; padding: 0 20px 16px; }
}
@media (max-width: 480px) {
  .cnt-choose-grid { grid-template-columns: 1fr; }
  .cnt-choose-section { padding: 48px 0; }
  .cnt-choose-title { font-size: 1.3rem; }
}

/* ===== Admin: Status Pipeline ===== */
.status-proposal { background: rgba(139,92,246,0.1); color: #8B5CF6; }
.status-proposal::before { background: #8B5CF6; }
.status-closed { background: rgba(107,114,128,0.1); color: #6B7280; }
.status-closed::before { background: #6B7280; }

/* ===== Admin: Enquiry Stats Chips ===== */
.enq-stat-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 12px; background: white;
  border: 1px solid #f0f0f5; transition: all 0.2s ease;
}
.enq-stat-chip:hover { border-color: #e0dff5; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.enq-stat-num { font-size: 1.1rem; font-weight: 800; color: #F0065C; }
.enq-stat-lbl { font-size: 0.75rem; color: #888; font-weight: 500; }

/* ===== Success Popup ===== */
.popup-overlay {
  position: fixed; inset: 0; z-index: var(--z-popup);
  background: rgba(7,17,38,0.6); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; animation: popupOverlayIn 0.3s ease;
}
@keyframes popupOverlayIn { from { opacity: 0; } to { opacity: 1; } }
.popup-card {
  position: relative; background: white; border-radius: 24px;
  padding: 40px; max-width: 520px; width: 100%;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  animation: popupCardIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
@keyframes popupCardIn { from { opacity: 0; transform: scale(0.85) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.popup-glow {
  position: absolute; top: -80px; right: -80px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,6,92,0.08), transparent 70%);
  pointer-events: none;
}
.popup-icon-wrap {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex; align-items: center; justify-content: center;
  color: white; margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(34,197,94,0.25);
}
.popup-title { font-size: 1.25rem; font-weight: 800; color: #071126; text-align: center; margin-bottom: 8px; line-height: 1.3; }
.popup-msg { font-size: 0.88rem; color: #666; text-align: center; line-height: 1.7; margin-bottom: 24px; }
.popup-details {
  background: #f8f9fe; border-radius: 14px; padding: 16px 20px;
  margin-bottom: 16px; border: 1px solid #f0f0f5;
}
.popup-detail { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
.popup-detail:last-child { border-bottom: none; }
.popup-detail-label { font-size: 0.78rem; color: #888; font-weight: 500; }
.popup-detail-value { font-size: 0.88rem; color: #071126; font-weight: 600; }
.popup-ref { color: #8B5CF6; font-family: monospace; letter-spacing: 0.3px; }
.popup-trk { color: #666; font-family: monospace; font-size: 0.8rem; }
.popup-note {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: rgba(139,92,246,0.06);
  border-radius: 10px; margin-bottom: 24px;
  font-size: 0.82rem; color: #6B21A8; font-weight: 500;
}
.popup-actions { display: flex; gap: 12px; }
.popup-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 20px; border-radius: 12px; font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s ease; border: none; text-decoration: none;
}
.popup-btn-primary {
  background: linear-gradient(135deg, #F0065C, #FF3D7F); color: white;
  box-shadow: 0 4px 16px rgba(240,6,92,0.25);
}
.popup-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,6,92,0.35); }
.popup-btn-secondary {
  background: #f4f4f8; color: #555; border: 1px solid #e8e8ef;
}
.popup-btn-secondary:hover { background: #edecf2; transform: translateY(-2px); }

/* ===== Contact Form Error Messages ===== */
.cnt-field-errormsg {
  position: absolute; bottom: -18px; left: 12px;
  font-size: 0.7rem; color: #EF4444; font-weight: 500;
  white-space: nowrap;
}

/* Popup responsive */
@media (max-width: 480px) {
  .popup-card { padding: 28px 24px; }
  .popup-title { font-size: 1.1rem; }
  .popup-actions { flex-direction: column; }
  .popup-details { padding: 12px 14px; }
  .popup-detail { flex-direction: column; align-items: flex-start; gap: 2px; }
}

/* ============================================
   ADMIN PANEL — PREMIUM UPGRADE
   ============================================ */

/* ---- Premium Login Page ---- */
.login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #f0f2f8, #e8ecf5); position: relative; overflow: hidden; }
.login-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.login-shape { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.08; }
.login-shape-1 { width: 600px; height: 600px; background: #FF0058; top: -200px; right: -150px; }
.login-shape-2 { width: 500px; height: 500px; background: #8B5CF6; bottom: -200px; left: -150px; }
.login-shape-3 { width: 300px; height: 300px; background: #22c55e; top: 40%; left: 15%; opacity: 0.03; }
.login-shape-4 { width: 200px; height: 200px; background: #F59E0B; bottom: 20%; right: 25%; opacity: 0.04; }
.login-container { display: flex; background: white; backdrop-filter: blur(20px); border: 1px solid #f0f0f5; border-radius: 32px; overflow: hidden; max-width: 920px; width: 95%; min-height: 560px; position: relative; z-index: 1; box-shadow: 0 25px 60px rgba(0,0,0,0.08); }
.login-brand { flex: 1; padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(135deg, #f8f9fe, #fff3f7); }
.login-brand-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, #FF0058, #8B5CF6); display: flex; align-items: center; justify-content: center; color: white; margin-bottom: 20px; box-shadow: 0 4px 16px rgba(255,0,88,0.25); }
.login-brand-title { font-size: 1.8rem; font-weight: 900; color: #071126; margin-bottom: 4px; }
.login-brand-title span { color: #FF3D7F; }
.login-brand-sub { font-size: 0.85rem; color: #999; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.login-brand-desc { font-size: 0.92rem; color: #666; line-height: 1.7; margin-bottom: 28px; }
.login-brand-features { display: flex; flex-direction: column; gap: 12px; }
.login-brand-feature { display: flex; align-items: center; gap: 10px; color: #555; font-size: 0.88rem; }
.login-brand-feature svg { color: #22c55e; flex-shrink: 0; }
.login-form-wrapper { flex: 1; display: flex; align-items: center; justify-content: center; padding: 48px 40px; }
.login-card { background: white; border: 1px solid #f0f0f5; border-radius: 24px; padding: 36px; width: 100%; max-width: 380px; }
.login-card-header { margin-bottom: 24px; }
.login-card-header h2 { font-size: 1.5rem; font-weight: 800; color: #071126; margin-bottom: 6px; }
.login-card-header p { font-size: 0.9rem; color: #999; }
.login-error { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-radius: 12px; background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.12); color: #DC2626; font-size: 0.85rem; margin-bottom: 20px; }
.login-error svg { flex-shrink: 0; color: #EF4444; }
.login-field { margin-bottom: 18px; }
.login-field label { display: block; font-size: 0.82rem; font-weight: 600; color: #666; margin-bottom: 6px; letter-spacing: 0.3px; }
.login-input-wrap { position: relative; display: flex; align-items: center; }
.login-input-wrap svg { position: absolute; left: 14px; color: #bbb; pointer-events: none; z-index: 1; }
.login-input-wrap input { width: 100%; padding: 14px 16px 14px 42px; background: #f8f9fe; border: 1px solid #f0f0f5; border-radius: 12px; font-size: 0.9rem; color: #333; outline: none; transition: all 0.25s; font-family: inherit; }
.login-input-wrap input::placeholder { color: #bbb; }
.login-input-wrap input:focus { border-color: rgba(255,61,127,0.3); background: white; box-shadow: 0 0 0 3px rgba(255,61,127,0.06); }
.login-toggle-pw { position: absolute; right: 12px; background: none; border: none; cursor: pointer; color: #bbb; padding: 4px; display: flex; z-index: 1; transition: color 0.2s; }
.login-toggle-pw:hover { color: #666; }
.login-options { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.login-remember { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #666; cursor: pointer; }
.login-remember input { width: auto; accent-color: #FF0058; }
.login-forgot { font-size: 0.82rem; color: #999; cursor: pointer; transition: color 0.2s; }
.login-forgot:hover { color: #FF3D7F; }
.login-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px; border: none; border-radius: 12px; background: linear-gradient(135deg, #FF0058, #EC0D5A); color: white; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 16px rgba(255,0,88,0.3); }
.login-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,0,88,0.45); }
.login-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.login-spinner { animation: adminSpin 1s linear infinite; }
.login-footer { text-align: center; margin-top: 20px; font-size: 0.75rem; color: #bbb; }

/* ---- Premium Admin Topbar ---- */
.admin-topbar { background: white; padding: 12px 28px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #f0f0f5; position: sticky; top: 0; z-index: 50; min-height: 60px; }
.admin-topbar-left { display: flex; align-items: center; gap: 16px; }
.admin-topbar-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; border-radius: 8px; color: #666; transition: all 0.2s; }
.admin-topbar-hamburger:hover { background: #f5f5fa; color: #071126; }
.admin-breadcrumb { display: flex; align-items: center; gap: 6px; }
.admin-breadcrumb-home { display: flex; align-items: center; cursor: pointer; color: #999; transition: color 0.2s; padding: 4px; border-radius: 6px; }
.admin-breadcrumb-home:hover { color: #FF0058; background: rgba(255,0,88,0.04); }
.admin-breadcrumb-chevron { color: #ccc; }
.admin-breadcrumb-current { font-size: 0.92rem; font-weight: 600; color: #071126; }
.admin-topbar-right { display: flex; align-items: center; gap: 12px; }
.admin-topbar-icon-btn { position: relative; background: none; border: none; cursor: pointer; padding: 8px; border-radius: 10px; color: #888; transition: all 0.2s; display: flex; }
.admin-topbar-icon-btn:hover { background: #f5f5fa; color: #071126; }
.admin-topbar-badge { position: absolute; top: 2px; right: 2px; width: 18px; height: 18px; border-radius: 50%; background: #EF4444; color: white; font-size: 0.6rem; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid white; }
.admin-topbar-divider { width: 1px; height: 28px; background: #eee; }
.admin-topbar-user { position: relative; display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 4px 8px; border-radius: 10px; transition: all 0.2s; user-select: none; }
.admin-topbar-user:hover { background: #f5f5fa; }
.admin-topbar-user-btn { display: flex; align-items: center; gap: 8px; background: none; border: none; cursor: pointer; padding: 4px 8px; border-radius: 10px; transition: all 0.2s; }
.admin-topbar-user-btn:hover { background: #f5f5fa; }
.admin-topbar-avatar { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, #FF3D7F, #8B5CF6); display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 0.8rem; flex-shrink: 0; }
.admin-topbar-user-info { display: flex; flex-direction: column; align-items: flex-start; }
.admin-topbar-user-name { font-size: 0.82rem; font-weight: 700; color: #071126; line-height: 1.2; }
.admin-topbar-user-role { font-size: 0.6rem; color: #aaa; text-transform: uppercase; letter-spacing: 0.3px; }
.admin-topbar-chevron { color: #999; transition: transform 0.3s; }
.admin-topbar-chevron.open { transform: rotate(180deg); }
.admin-topbar-dropdown { display: none; position: absolute; top: calc(100% + 8px); right: 0; width: 240px; background: white; border-radius: 14px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); border: 1px solid #f0f0f5; z-index: 9999; overflow: hidden; animation: fadeIn 0.2s ease; }
.admin-topbar-dropdown.admin-topbar-dropdown-show { display: block; }
@media (max-width: 480px) {
  .admin-topbar-dropdown { right: -6px; width: 210px; border-radius: 10px; }
}
.admin-topbar-dropdown-header { display: flex; align-items: center; gap: 12px; padding: 16px 16px; background: #fafbfe; }
.admin-topbar-dropdown-avatar { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, #FF3D7F, #8B5CF6); display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 0.95rem; }
.admin-topbar-dropdown-name { font-weight: 700; color: #071126; font-size: 0.88rem; }
.admin-topbar-dropdown-email { font-size: 0.75rem; color: #999; }
.admin-topbar-dropdown-divider { height: 1px; background: #f0f0f5; }
.admin-topbar-dropdown-item { display: flex; align-items: center; gap: 10px; width: 100%; padding: 12px 16px; border: none; background: none; cursor: pointer; font-size: 0.85rem; color: #555; transition: all 0.15s; font-family: inherit; font-weight: 500; }
.admin-topbar-dropdown-item:hover { background: #f5f5fa; color: #071126; }
.admin-topbar-dropdown-danger { color: #EF4444; border-top: 1px solid #f0f0f5; }
.admin-topbar-dropdown-danger:hover { background: #fef2f2; }

/* ---- Premium Dashboard ---- */
.error-card { background: rgba(239,68,68,0.04); border: 1px solid rgba(239,68,68,0.1); border-radius: 16px; padding: 40px; text-align: center; max-width: 480px; margin: 60px auto; }
.error-card h3 { font-size: 1.1rem; font-weight: 700; color: #071126; margin-bottom: 8px; }
.error-card p { font-size: 0.88rem; color: #888; line-height: 1.7; margin-bottom: 20px; }
.admin-quick-actions { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.admin-quick-action { display: flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 12px; border: 1px solid #e8e8ef; background: white; cursor: pointer; font-size: 0.85rem; font-weight: 600; color: #555; transition: all 0.2s; font-family: inherit; }
.admin-quick-action:hover { border-color: #FF0058; color: #FF0058; background: #fff5f7; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255,0,88,0.08); }
.admin-quick-action svg { flex-shrink: 0; }
.admin-card { background: white; border-radius: 16px; padding: 24px; box-shadow: 0 1px 4px rgba(0,0,0,0.04); border: 1px solid #f0f0f5; transition: box-shadow 0.2s; }
.admin-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.admin-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.admin-card-header h3 { font-size: 1rem; font-weight: 700; color: #071126; }
.admin-card-badge { display: inline-block; padding: 3px 10px; border-radius: 20px; background: rgba(16,185,129,0.1); color: #10B981; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.3px; text-transform: uppercase; }
.admin-card-link { font-size: 0.82rem; color: #FF0058; font-weight: 600; text-decoration: none; transition: color 0.2s; }
.admin-card-link:hover { color: #D90550; }

/* ---- Stat Card with Trend ---- */
.stat-card { padding: 24px; border-radius: 16px; background: white; box-shadow: 0 1px 4px rgba(0,0,0,0.04); border: 1px solid #f0f0f5; transition: all 0.2s; }
.stat-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); transform: translateY(-2px); }
.stat-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.stat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-trend { display: inline-flex; align-items: center; gap: 2px; font-size: 0.72rem; font-weight: 700; color: #999; padding: 3px 8px; border-radius: 6px; background: #f5f5fa; }
.stat-trend-up { color: #10B981; background: rgba(16,185,129,0.08); }
.stat-value { font-size: 2rem; font-weight: 800; color: #071126; line-height: 1; margin-bottom: 4px; }
.stat-label { color: #888; font-size: 0.82rem; font-weight: 500; }

/* ---- Activity Feed ---- */
.activity-feed { display: flex; flex-direction: column; gap: 0; }
.activity-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid #f5f5fa; }
.activity-item:last-child { border-bottom: none; }
.activity-dot { width: 10px; height: 10px; border-radius: 50%; margin-top: 5px; flex-shrink: 0; }
.activity-dot-primary { background: #F0065C; box-shadow: 0 0 0 3px rgba(240,6,92,0.12); }
.activity-dot-success { background: #10B981; box-shadow: 0 0 0 3px rgba(16,185,129,0.12); }
.activity-dot-warning { background: #F59E0B; box-shadow: 0 0 0 3px rgba(245,158,11,0.12); }
.activity-dot-info { background: #3B82F6; box-shadow: 0 0 0 3px rgba(59,130,246,0.12); }
.activity-dot-danger { background: #EF4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.12); }
.activity-content { flex: 1; min-width: 0; }
.activity-text { font-size: 0.88rem; color: #555; line-height: 1.5; display: block; }
.activity-text strong { color: #071126; font-weight: 600; }
.activity-time { font-size: 0.72rem; color: #aaa; margin-top: 2px; display: block; }

/* ---- Chart Widget ---- */
.chart-widget { background: white; border-radius: 16px; padding: 20px; border: 1px solid #f0f0f5; }
.chart-widget-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.chart-widget-title { font-size: 0.88rem; font-weight: 700; color: #071126; }
.chart-widget-trend { display: inline-flex; align-items: center; gap: 3px; font-size: 0.72rem; font-weight: 600; color: #10B981; }
.chart-widget-svg { width: 100%; }
.chart-widget-labels { display: flex; justify-content: space-between; margin-top: 8px; }
.chart-widget-label { font-size: 0.65rem; color: #999; }

/* ---- Skeleton Loader ---- */
.skeleton-card { background: white; border-radius: 16px; border: 1px solid #f0f0f5; overflow: hidden; position: relative; }
.skeleton-shimmer { position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(0,0,0,0.03), transparent); animation: skeletonShimmer 1.5s infinite; }
@keyframes skeletonShimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.skeleton-table { background: white; border-radius: 16px; padding: 20px; border: 1px solid #f0f0f5; }
.skeleton-row { display: flex; gap: 16px; margin-bottom: 12px; }
.skeleton-cell { flex: 1; height: 16px; background: #f5f5fa; border-radius: 6px; overflow: hidden; position: relative; }
.skeleton-cell .skeleton-shimmer { position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent); animation: skeletonShimmer 1.5s infinite; }

/* ---- Confirm Dialog ---- */
.confirm-overlay { position: fixed; inset: 0; background: rgba(7,17,38,0.5); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; z-index: 5000; padding: 20px; animation: fadeIn 0.2s ease; }
.confirm-dialog { background: white; border-radius: 20px; padding: 32px; max-width: 400px; width: 100%; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.12); animation: popupCardIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.confirm-icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.confirm-icon.danger { background: rgba(239,68,68,0.08); color: #EF4444; }
.confirm-icon.warning { background: rgba(245,158,11,0.08); color: #F59E0B; }
.confirm-title { font-size: 1.1rem; font-weight: 700; color: #071126; margin-bottom: 8px; }
.confirm-message { font-size: 0.88rem; color: #666; line-height: 1.6; margin-bottom: 24px; }
.confirm-actions { display: flex; gap: 12px; }
.confirm-cancel, .confirm-confirm { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 20px; border-radius: 10px; font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: all 0.2s; border: none; font-family: inherit; }
.confirm-cancel { background: #f4f4f8; color: #555; }
.confirm-cancel:hover { background: #ececf2; }
.confirm-confirm { color: white; }
.confirm-danger { background: #EF4444; }
.confirm-danger:hover { background: #DC2626; }
.confirm-warning { background: #F59E0B; }
.confirm-warning:hover { background: #D97706; }
.confirm-spinner { animation: adminSpin 1s linear infinite; }
.confirm-confirm:disabled { opacity: 0.6; cursor: not-allowed; }

/* ============================================
   ADMIN RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .login-container { flex-direction: column; max-width: 500px; }
  .login-brand { padding: 32px 28px; }
  .login-form-wrapper { padding: 32px 28px; }
  .admin-content { padding: 24px; }
}
@media (max-width: 768px) {
  .login-container { max-width: 100%; border-radius: 24px; margin: 16px; }
  .login-brand { display: none; }
  .login-form-wrapper { padding: 32px 24px; }
  .login-card { background: none; border: none; padding: 0; max-width: 100%; }
  .admin-topbar { padding: 10px 16px; }
  .admin-topbar-hamburger { display: flex; }
  .admin-topbar-user-info { display: none; }
  .admin-content { padding: 16px; }
  .admin-quick-actions { gap: 8px; }
  .admin-quick-action { padding: 8px 14px; font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .login-page { padding: 16px; }
  .login-container { margin: 0; border-radius: 20px; }
  .login-form-wrapper { padding: 24px 20px; }
  .login-card-header h2 { font-size: 1.3rem; }
  .admin-topbar { padding: 8px 12px; }
  .admin-breadcrumb-current { font-size: 0.85rem; }
  .admin-content { padding: 12px; }
  .admin-quick-actions { flex-direction: column; }
  .admin-quick-action { width: 100%; justify-content: center; }
  .confirm-dialog { padding: 24px; }
  .confirm-actions { flex-direction: column; }
}

/* ===== ADMIN TOOLS ===== */
.tool-tabs { display: flex; gap: 0; margin-bottom: 20px; overflow-x: auto; flex-wrap: wrap; border-bottom: 1px solid #f0f0f5; }
.tool-tab { padding: 10px 20px; border: none; background: none; cursor: pointer; font-size: 0.82rem; font-weight: 500; color: #999; border-bottom: 2px solid transparent; transition: all 0.2s; margin-bottom: -1px; white-space: nowrap; }
.tool-tab:hover { color: var(--dark); }
.tool-tab-active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 600; }
.tool-input-bar { display: flex; gap: 10px; margin-bottom: 16px; align-items: center; flex-wrap: wrap; }
.tool-input { padding: 10px 14px; border: 1px solid #e2e8f0; border-radius: 8px; font-size: 0.88rem; flex: 1; min-width: 200px; outline: none; transition: border-color 0.2s; }
.tool-input:focus { border-color: var(--primary); }
.tool-loading { display: flex; align-items: center; gap: 12px; justify-content: center; padding: 40px; color: var(--gray); }
.tool-spinner { display: inline-block; width: 14px; height: 14px; border: 2px solid var(--primary); border-top-color: transparent; border-radius: 50%; animation: toolspin 0.6s linear infinite; }
.tool-spinner-lg { display: inline-block; width: 24px; height: 24px; border: 3px solid var(--primary); border-top-color: transparent; border-radius: 50%; animation: toolspin 0.6s linear infinite; }
@keyframes toolspin { to { transform: rotate(360deg); } }
.tool-result-card { background: #fafbfc; border-radius: 12px; padding: 20px; margin-top: 16px; border: 1px solid #f0f0f5; border-left: 3px solid #22c55e; }
.tool-result-error { border-left-color: #EF4444; }
.tool-result-title { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.tool-data-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #f5f5fa; font-size: 0.85rem; }
.tool-data-row:last-child { border-bottom: none; }
.tool-data-label { color: var(--gray); font-weight: 500; }
.tool-data-value { font-weight: 600; color: var(--dark); text-align: right; word-break: break-all; }
.tool-error { padding: 20px; color: var(--danger); background: rgba(239,68,68,0.06); border-radius: 10px; margin-top: 16px; }
.tool-suggestions { margin-top: 12px; padding: 12px 16px; background: rgba(245,158,11,0.06); border-radius: 8px; border: 1px solid rgba(245,158,11,0.12); }
.tool-suggestions strong { font-size: 0.82rem; color: #F59E0B; display: block; margin-bottom: 6px; }
.tool-suggestions ul { margin: 0; padding-left: 18px; }
.tool-suggestions li { font-size: 0.82rem; color: #666; line-height: 1.6; }
.tool-comp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; margin-top: 12px; }
.tool-comp-card { background: white; border-radius: 10px; padding: 14px; border: 1px solid #f0f0f5; }
.tool-comp-card h5 { font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.tool-comp-card .tool-data-row { font-size: 0.78rem; padding: 5px 0; }
.tool-comp-form { margin-bottom: 12px; }
.tool-code-badge { display: inline-block; padding: 3px 10px; border-radius: 6px; background: rgba(139,92,246,0.08); color: #8B5CF6; font-size: 0.78rem; font-weight: 700; font-family: monospace; letter-spacing: 0.5px; }
.tool-history { margin-top: 24px; padding-top: 20px; border-top: 1px solid #f0f0f5; }
.tool-history-item { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.82rem; border-bottom: 1px solid #f8f8fc; }
.tool-history-input { color: var(--dark); font-weight: 500; }
.tool-history-date { color: #bbb; font-size: 0.75rem; }
.tool-reviews-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.tool-review-form { background: #fafbfc; border: 1px solid #f0f0f5; border-radius: 12px; padding: 20px; margin-bottom: 20px; }
.tool-review-list { display: flex; flex-direction: column; gap: 10px; }
.tool-review-item { background: #fafbfc; border: 1px solid #f0f0f5; border-radius: 10px; padding: 14px 16px; }
.tool-review-top { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.tool-review-top strong { font-size: 0.9rem; }
.tool-review-rating { color: #F59E0B; font-size: 0.82rem; font-weight: 600; }
.tool-review-featured { padding: 2px 8px; border-radius: 4px; background: rgba(16,185,129,0.1); color: #10B981; font-size: 0.65rem; font-weight: 700; }
.tool-review-text { font-size: 0.85rem; color: #555; margin: 6px 0; line-height: 1.5; }
.tool-review-meta { display: flex; gap: 12px; font-size: 0.75rem; color: #bbb; }
.tool-review-actions { display: flex; gap: 8px; margin-top: 8px; }

/* ===== AFFILIATE TRANSACTIONS ===== */
.aff-tx-list { display: flex; flex-direction: column; gap: 8px; }
.aff-tx-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; background: #fafbfc; border-radius: 8px; border: 1px solid #f0f0f5; }
.aff-tx-left { display: flex; align-items: center; gap: 12px; }
.aff-tx-type { padding: 3px 10px; border-radius: 6px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px; }
.aff-tx-type-sale { background: rgba(16,185,129,0.1); color: #10B981; }
.aff-tx-type-commission { background: rgba(139,92,246,0.1); color: #8B5CF6; }
.aff-tx-type-payout { background: rgba(239,68,68,0.1); color: #EF4444; }
.aff-tx-type-adjustment { background: rgba(245,158,11,0.1); color: #F59E0B; }
.aff-tx-right { text-align: right; }
.aff-tx-amount { font-size: 1rem; font-weight: 700; color: #22c55e; display: block; }
.aff-tx-negative { color: #EF4444; }
.aff-tx-date { font-size: 0.72rem; color: #bbb; }
.aff-tx-ref { font-size: 0.72rem; color: #bbb; margin-left: 8px; }
.aff-tx-left div strong { font-size: 0.82rem; color: var(--dark); display: block; }

@media (max-width: 768px) {
  .tool-comp-grid { grid-template-columns: 1fr; }
  .tool-tabs { gap: 0; }
  .tool-tab { padding: 8px 14px; font-size: 0.78rem; }
  .tool-input-bar { flex-direction: column; align-items: stretch; }
  .tool-input { min-width: auto; }
  .aff-tx-item { flex-direction: column; gap: 8px; align-items: flex-start; }
  .aff-tx-right { text-align: left; }
}

/* ===== LEAD CRM PIPELINE ===== */
.pl-stats { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.pl-stat-card {
  flex: 0 0 auto; min-width: 120px; background: white; border-radius: 12px;
  padding: 14px 18px; border: 1px solid #f0f0f5; border-left: 3px solid #ddd;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04); display: flex; flex-direction: column; gap: 4px;
}
.pl-stat-total { border-left-color: var(--primary); }
.pl-stat-num { font-size: 1.4rem; font-weight: 800; color: var(--dark); line-height: 1; }
.pl-stat-label { font-size: 0.72rem; color: var(--gray); font-weight: 500; text-transform: uppercase; letter-spacing: 0.3px; }

.pl-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 20px; flex-wrap: wrap;
}
.pl-toolbar-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; flex: 1; }
.pl-toolbar-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.pl-view-toggle { display: flex; border: 1px solid #e2e8f0; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.pl-view-btn {
  padding: 8px 14px; border: none; background: white; cursor: pointer;
  display: flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 500; color: #666;
  transition: all 0.2s;
}
.pl-view-btn:hover { background: #f8f9fe; }
.pl-view-active { background: var(--primary); color: white; }
.pl-view-active:hover { background: var(--primary-dark); }
.pl-search {
  padding: 8px 14px; border: 1px solid #e2e8f0; border-radius: 8px;
  font-size: 0.85rem; width: 240px; outline: none; transition: border-color 0.2s;
}
.pl-search:focus { border-color: var(--primary); }
.pl-select {
  padding: 8px 12px; border: 1px solid #e2e8f0; border-radius: 8px;
  font-size: 0.82rem; outline: none; background: white; cursor: pointer;
}
.pl-select:focus { border-color: var(--primary); }
.pl-total-label { font-size: 0.82rem; color: var(--gray); font-weight: 500; white-space: nowrap; }

/* Pipeline Board */
.pl-pipeline-wrap { overflow-x: auto; padding-bottom: 16px; }
.pl-board { display: flex; gap: 12px; min-height: 500px; }
.pl-column {
  flex: 0 0 220px; min-width: 200px; background: #f5f6fa; border-radius: 12px;
  display: flex; flex-direction: column; transition: background 0.2s; border: 2px solid transparent;
}
.pl-column-dragover { background: #eef2ff; border-color: var(--primary); }
.pl-column-header {
  padding: 14px 14px 10px; flex-shrink: 0; position: sticky; top: 0;
  background: #f5f6fa; border-radius: 12px 12px 0 0; z-index: 1;
}
.pl-column-title-row { display: flex; align-items: center; gap: 8px; }
.pl-column-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.pl-column-title { font-size: 0.8rem; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: 0.3px; }
.pl-column-count {
  margin-left: auto; background: #e2e8f0; color: #666;
  width: 22px; height: 22px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700;
}
.pl-column-body { padding: 4px 10px 14px; flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 8px; }
.pl-column-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 32px 8px; color: #ccc; font-size: 0.75rem;
}

/* Lead Card */
.pl-card {
  background: white; border-radius: 10px; padding: 12px 14px;
  border: 1px solid #f0f0f5; box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  cursor: grab; position: relative; transition: box-shadow 0.2s, transform 0.15s;
}
.pl-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.pl-card:active { cursor: grabbing; }
.pl-card-dragging { opacity: 0.5; transform: rotate(2deg); }
.pl-card-top { display: flex; align-items: center; justify-content: space-between; gap: 6px; margin-bottom: 4px; }
.pl-card-name { font-size: 0.88rem; font-weight: 700; color: var(--dark); margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pl-card-business { font-size: 0.75rem; color: var(--gray); margin: 0 0 4px; }
.pl-card-service { font-size: 0.72rem; color: var(--gray-light); margin: 0 0 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pl-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.pl-card-date { font-size: 0.68rem; color: #bbb; white-space: nowrap; }
.pl-card-owner {
  display: inline-block; margin-top: 6px; padding: 2px 8px; border-radius: 4px;
  background: rgba(59,130,246,0.08); color: #3B82F6; font-size: 0.65rem; font-weight: 600;
}
.pl-card-actions { position: absolute; top: 8px; right: 8px; opacity: 0; transition: opacity 0.2s; }
.pl-card:hover .pl-card-actions { opacity: 1; }
.pl-card-edit-btn {
  width: 26px; height: 26px; border-radius: 6px; border: none; background: white;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  color: #999; box-shadow: 0 2px 6px rgba(0,0,0,0.08); transition: all 0.2s;
}
.pl-card-edit-btn:hover { background: var(--primary); color: white; }

/* Source Badge */
.pl-source-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; border-radius: 4px;
  background: rgba(0,0,0,0.04); color: #666;
  font-size: 0.65rem; font-weight: 500; text-transform: capitalize;
}

/* Stage Badge */
.pl-stage-badge {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: 0.7rem; font-weight: 600; white-space: nowrap;
}

/* ===== LEAD DETAIL MODAL ===== */
.ldm-overlay { z-index: 2100; }
.ldm-modal {
  background: white; border-radius: 20px; width: 90%; max-width: 800px;
  max-height: 90vh; display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}
.ldm-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 24px 28px 20px; gap: 16px; border-bottom: 1px solid #f0f0f5; flex-shrink: 0;
}
.ldm-header-info { flex: 1; min-width: 0; }
.ldm-title { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin: 0; }
.ldm-subtitle { font-size: 0.85rem; color: var(--gray); margin: 4px 0 0; }
.ldm-header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ldm-stage-badge { padding: 4px 14px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }
.ldm-close {
  width: 32px; height: 32px; border-radius: 50%; border: none; background: #f5f6fa;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  color: #999; transition: all 0.2s; flex-shrink: 0;
}
.ldm-close:hover { background: var(--danger); color: white; }

.ldm-tabs {
  display: flex; gap: 0; padding: 0 28px; border-bottom: 1px solid #f0f0f5; flex-shrink: 0;
}
.ldm-tab {
  padding: 12px 20px; border: none; background: none; cursor: pointer;
  font-size: 0.85rem; font-weight: 500; color: #999;
  border-bottom: 2px solid transparent; transition: all 0.2s; margin-bottom: -1px;
}
.ldm-tab:hover { color: var(--dark); }
.ldm-tab-active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 600; }

.ldm-body { padding: 24px 28px 28px; overflow-y: auto; flex: 1; }
.ldm-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ldm-info-section {
  background: #fafbfc; border-radius: 12px; padding: 16px 18px; border: 1px solid #f0f0f5;
}
.ldm-info-section h4 { font-size: 0.78rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 12px; }
.ldm-info-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid #f5f5fa; font-size: 0.85rem; }
.ldm-info-row:last-child { border-bottom: none; }
.ldm-info-row span { color: var(--gray); }
.ldm-info-row strong { color: var(--dark); font-weight: 600; }
.ldm-info-full { grid-column: 1 / -1; }
.ldm-notes-text { font-size: 0.85rem; color: #555; line-height: 1.6; }

/* Meetings Section */
.ldm-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.ldm-section-header h4 { font-size: 1rem; font-weight: 700; }
.ldm-section-header .btn { display: inline-flex; align-items: center; gap: 6px; }
.ldm-meeting-form {
  background: #fafbfc; border: 1px solid #f0f0f5; border-radius: 12px;
  padding: 20px; margin-bottom: 20px;
}
.ldm-empty {
  text-align: center; padding: 40px 20px; color: #ccc;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.ldm-empty p { font-size: 0.9rem; margin: 0; }
.ldm-meeting-list { display: flex; flex-direction: column; gap: 10px; }
.ldm-meeting-item {
  display: flex; gap: 14px; padding: 14px 16px;
  background: #fafbfc; border-radius: 10px; border: 1px solid #f0f0f5;
  align-items: flex-start; transition: box-shadow 0.2s;
}
.ldm-meeting-item:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.ldm-meeting-icon {
  width: 36px; height: 36px; border-radius: 10px; background: white;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0; border: 1px solid #f0f0f5;
}
.ldm-meeting-content { flex: 1; min-width: 0; }
.ldm-meeting-top { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.ldm-meeting-top strong { font-size: 0.85rem; color: var(--dark); }
.ldm-meeting-type {
  padding: 2px 8px; border-radius: 4px; background: rgba(59,130,246,0.08);
  color: #3B82F6; font-size: 0.65rem; font-weight: 600; text-transform: capitalize;
}
.ldm-meeting-content p { font-size: 0.82rem; color: #666; margin: 4px 0; line-height: 1.5; }
.ldm-meeting-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.ldm-meeting-meta span { font-size: 0.72rem; color: #aaa; }
.ldm-meeting-del {
  width: 28px; height: 28px; border-radius: 6px; border: none; background: transparent;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  color: #ccc; transition: all 0.2s; flex-shrink: 0;
}
.ldm-meeting-del:hover { background: rgba(239,68,68,0.1); color: var(--danger); }

/* Activity Timeline */
.ldm-timeline { position: relative; padding-left: 24px; }
.ldm-timeline::before {
  content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px;
  width: 2px; background: #e8e8f0;
}
.ldm-timeline-item { position: relative; padding-bottom: 20px; }
.ldm-timeline-item:last-child { padding-bottom: 0; }
.ldm-timeline-dot {
  position: absolute; left: -20px; top: 6px; width: 12px; height: 12px;
  border-radius: 50%; background: white; border: 2px solid var(--primary);
}
.ldm-timeline-content p { font-size: 0.85rem; color: #555; margin: 0 0 4px; line-height: 1.5; }
.ldm-timeline-date { font-size: 0.72rem; color: #bbb; }

/* Modal Large */
.modal-lg { max-width: 700px; }
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 0; margin-bottom: 16px;
}
.modal-header h2 { font-size: 1.2rem; font-weight: 800; }
.modal-close {
  width: 32px; height: 32px; border-radius: 50%; border: none; background: #f5f6fa;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  color: #999; transition: all 0.2s;
}
.modal-close:hover { background: var(--danger); color: white; }

/* Pipeline Responsive */
@media (max-width: 1200px) {
  .pl-column { flex: 0 0 200px; }
}
@media (max-width: 768px) {
  .pl-stats { gap: 8px; }
  .pl-stat-card { min-width: 90px; padding: 10px 14px; }
  .pl-stat-num { font-size: 1.1rem; }
  .pl-toolbar-left { gap: 8px; }
  .pl-search { width: 160px; }
  .pl-board { gap: 8px; }
  .pl-column { flex: 0 0 180px; min-width: 170px; }
  .ldm-modal { width: 95%; }
  .ldm-header { flex-direction: column; padding: 18px 20px 14px; }
  .ldm-info-grid { grid-template-columns: 1fr; }
  .ldm-body { padding: 16px 18px 20px; }
  .ldm-tabs { padding: 0 18px; overflow-x: auto; }
}
@media (max-width: 480px) {
  .pl-toolbar-left { flex-direction: column; align-items: stretch; }
  .pl-search { width: 100%; }
  .pl-select { width: 100%; }
  .pl-view-toggle { width: 100%; }
  .pl-view-btn { flex: 1; justify-content: center; }
  .pl-column { flex: 0 0 160px; min-width: 150px; }
  .ldm-modal { border-radius: 16px; }
  .ldm-header { padding: 16px; }
  .ldm-body { padding: 12px 16px 16px; }
}

/* ===== ENHANCED CONTACT FORM ===== */
.cnt-field input, .cnt-field select, .cnt-field textarea {
  font-weight: 500;
}
.cnt-field input::placeholder, .cnt-field textarea::placeholder {
  color: transparent;
}
.cnt-field input:focus, .cnt-field select:focus, .cnt-field textarea:focus {
  border-color: #8B5CF6;
  background: #fff;
  box-shadow: 0 4px 16px rgba(139,92,246,0.08), 0 0 0 3px rgba(139,92,246,0.06);
}
.cnt-submit-btn {
  position: relative;
  font-size: 1rem;
  letter-spacing: 0.3px;
}
.cnt-submit-btn .cnt-submit-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: cntSpin 0.7s linear infinite;
}
.cnt-submit-btn.cnt-submit-loading .cnt-submit-spinner { display: inline-block; }
.cnt-submit-btn.cnt-submit-loading .cnt-submit-text { display: none; }
.cnt-submit-btn.cnt-submit-loading .cnt-submit-sending { display: inline; }
.cnt-submit-btn .cnt-submit-sending { display: none; }

/* Reference Popup */
.cnt-popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  z-index: 10000; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
  padding: 20px;
}
.cnt-popup-overlay.cnt-popup-active { opacity: 1; visibility: visible; }
.cnt-popup-card {
  background: white; border-radius: 24px; padding: 40px; max-width: 440px; width: 100%;
  text-align: center; position: relative; transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}
.cnt-popup-overlay.cnt-popup-active .cnt-popup-card { transform: scale(1) translateY(0); }
.cnt-popup-close {
  position: absolute; top: 16px; right: 16px; width: 32px; height: 32px;
  border: none; background: #f3f4f6; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: #666;
  transition: all 0.2s ease;
}
.cnt-popup-close:hover { background: #e5e7eb; color: #333; }
.cnt-popup-icon {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(34,197,94,0.3);
}
.cnt-popup-icon svg { color: white; }
.cnt-popup-title { font-size: 1.4rem; font-weight: 800; color: #071126; margin-bottom: 8px; }
.cnt-popup-msg { font-size: 0.9rem; color: #888; line-height: 1.6; margin-bottom: 24px; }
.cnt-popup-ref-box {
  background: #f8f9fe; border: 2px dashed #e0e0e8; border-radius: 12px;
  padding: 16px; margin-bottom: 24px;
}
.cnt-popup-ref-label { font-size: 0.7rem; color: #999; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 6px; }
.cnt-popup-ref-num { font-size: 1.2rem; font-weight: 800; color: #8B5CF6; font-family: 'SF Mono', 'Fira Code', monospace; }
.cnt-popup-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.cnt-popup-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px;
  border-radius: 10px; font-size: 0.85rem; font-weight: 700; text-decoration: none;
  cursor: pointer; border: none; transition: all 0.3s ease;
}
.cnt-popup-btn-copy {
  background: #f3f4f6; color: #333;
}
.cnt-popup-btn-copy:hover { background: #e5e7eb; }
.cnt-popup-btn-whatsapp {
  background: #22c55e; color: white;
}
.cnt-popup-btn-whatsapp:hover { background: #16a34a; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(34,197,94,0.3); }
.cnt-popup-btn-back {
  background: linear-gradient(135deg, #FF3D7F, #FF1A66); color: white;
}
.cnt-popup-btn-back:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(255,61,127,0.3); }
.cnt-popup-copied { background: #dcfce7 !important; color: #16a34a !important; }

@media (max-width: 768px) {
  .cnt-popup-card { padding: 28px 20px; }
  .cnt-popup-actions { flex-direction: column; }
  .cnt-popup-btn { width: 100%; justify-content: center; }
}

/* ═══════════════ BLOG PAGE — ADVANCED ═══════════════ */
.blog-page { --blog-accent: #FF3D7F; --blog-accent2: #8B5CF6; --blog-dark: #071126; --blog-card-bg: #ffffff; --blog-text: #1e293b; --blog-muted: #64748b; }
.blog-hero {
  background: linear-gradient(135deg, #071126 0%, #0f1a3a 50%, #1a0a2e 100%);
  padding: 140px 0 80px; position: relative; overflow: hidden;
}
.blog-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(139,92,246,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(255,61,127,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.blog-hero-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: center; }
.blog-hero-content { position: relative; z-index: 1; }
.blog-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,61,127,0.12); padding: 6px 18px; border-radius: 20px; margin-bottom: 18px;
}
.blog-hero-badge span { color: #FF3D7F; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.blog-hero h1 {
  color: #fff; font-size: 2.8rem; font-weight: 900; line-height: 1.15; margin: 0 0 14px;
}
.blog-hero h1 span { background: linear-gradient(135deg, #FF3D7F, #8B5CF6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.blog-hero p {
  color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.7; max-width: 520px; margin: 0 0 28px;
}
.blog-hero-search {
  position: relative; max-width: 440px;
}
.blog-hero-search svg {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: rgba(255,255,255,0.35); pointer-events: none;
}
.blog-hero-search input {
  width: 100%; padding: 14px 18px 14px 48px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.06);
  color: #fff; font-size: 0.92rem; outline: none; transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.blog-hero-search input:focus { border-color: rgba(255,61,127,0.4); background: rgba(255,255,255,0.1); box-shadow: 0 0 30px rgba(255,61,127,0.08); }
.blog-hero-search input::placeholder { color: rgba(255,255,255,0.3); }
.blog-hero-stats {
  display: flex; gap: 32px; margin-top: 24px;
}
.blog-hero-stats div { text-align: left; }
.blog-hero-stats strong { display: block; color: #fff; font-size: 1.4rem; font-weight: 800; }
.blog-hero-stats span { color: rgba(255,255,255,0.5); font-size: 0.78rem; }

.blog-hero-featured {
  position: relative; z-index: 1;
}
.blog-featured-card {
  background: rgba(255,255,255,0.04); border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06); backdrop-filter: blur(12px);
  transition: all 0.4s ease; text-decoration: none; display: block;
}
.blog-featured-card:hover { transform: translateY(-4px); border-color: rgba(255,61,127,0.2); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.blog-featured-img {
  height: 200px; position: relative; overflow: hidden;
}
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-featured-card:hover .blog-featured-img img { transform: scale(1.05); }
.blog-featured-img .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,17,38,0.8) 100%);
}
.blog-featured-img .badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 4px 12px; border-radius: 6px;
  background: linear-gradient(135deg, #FF3D7F, #F0065C); color: #fff; z-index: 2;
}
.blog-featured-img .read-time {
  position: absolute; bottom: 14px; right: 14px;
  font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  padding: 4px 12px; border-radius: 8px; display: flex; align-items: center; gap: 4px;
}
.blog-featured-body { padding: 24px; }
.blog-featured-body .cat {
  display: inline-block; font-size: 0.7rem; font-weight: 700; color: #FF3D7F;
  background: rgba(255,61,127,0.1); padding: 4px 12px; border-radius: 6px;
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px;
}
.blog-featured-body h2 {
  color: #fff; font-size: 1.15rem; font-weight: 800; line-height: 1.35; margin: 0 0 10px;
}
.blog-featured-body p {
  color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.6; margin: 0 0 16px;
}
.blog-featured-meta {
  display: flex; align-items: center; gap: 14px; font-size: 0.76rem; color: rgba(255,255,255,0.4);
}
.blog-featured-meta .author-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, #FF3D7F, #8B5CF6);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.6rem; font-weight: 700; flex-shrink: 0;
}

/* Category tabs */
.blog-categories {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
}
.blog-cat-tab {
  padding: 9px 22px; border-radius: 24px; border: 1px solid #e8e8f0;
  cursor: pointer; font-size: 0.84rem; font-weight: 600; font-family: inherit;
  text-decoration: none; display: inline-block; transition: all 0.3s ease;
  color: #666; background: #fff;
}
.blog-cat-tab:hover { border-color: #FF3D7F; color: #FF3D7F; background: rgba(255,61,127,0.04); }
.blog-cat-tab.active { background: linear-gradient(135deg, #FF3D7F, #F0065C); color: #fff; border-color: transparent; box-shadow: 0 4px 15px rgba(255,61,127,0.25); }

/* Main layout */
.blog-main { padding: 60px 0; background: #f8f9fc; }
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }

/* Post cards */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.blog-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid #eef1f8; transition: all 0.4s ease; display: flex; flex-direction: column;
  text-decoration: none; position: relative;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.07); border-color: transparent; }
.blog-card-img-wrap {
  height: 200px; overflow: hidden; position: relative;
}
.blog-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.06); }
.blog-card-img-wrap .svg-fallback { width: 100%; height: 100%; transition: transform 0.6s ease; }
.blog-card:hover .blog-card-img-wrap .svg-fallback { transform: scale(1.06); }
.blog-card-img-wrap .svg-fallback svg { display: block; width: 100%; height: 100%; }
.blog-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7,17,38,0.6) 100%);
  pointer-events: none;
}
.blog-card-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 6px;
}
.blog-card-badge.featured { background: linear-gradient(135deg, #FF3D7F, #F0065C); color: #fff; }
.blog-card-badge.new { background: linear-gradient(135deg, #10B981, #059669); color: #fff; }
.blog-card-badge.popular { background: linear-gradient(135deg, #8B5CF6, #6D28D9); color: #fff; }
.blog-card-readtime {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  font-size: 0.68rem; font-weight: 600; color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.45); backdrop-filter: blur(4px);
  padding: 3px 10px; border-radius: 8px; display: flex; align-items: center; gap: 4px;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  display: inline-block; font-size: 0.7rem; font-weight: 700; color: #FF3D7F;
  background: rgba(255,61,127,0.07); padding: 4px 10px; border-radius: 6px;
  margin-bottom: 10px; align-self: flex-start; text-transform: uppercase; letter-spacing: 0.5px;
}
.blog-card h2 {
  font-size: 1.1rem; font-weight: 800; color: #071126; line-height: 1.35; margin: 0 0 10px;
  transition: color 0.3s;
}
.blog-card:hover h2 { color: #FF3D7F; }
.blog-card-excerpt {
  font-size: 0.86rem; color: #64748b; line-height: 1.6; flex: 1; margin: 0 0 16px;
}
.blog-card-footer {
  display: flex; align-items: center; gap: 12px; font-size: 0.76rem; color: #94a3b8;
  padding-top: 14px; border-top: 1px solid #f1f5f9; flex-wrap: wrap;
}
.blog-card-footer .author {
  display: flex; align-items: center; gap: 6px;
}
.blog-card-footer .author .initials {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, #FF3D7F, #8B5CF6);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.55rem; font-weight: 700; flex-shrink: 0;
}
.blog-card-actions {
  display: flex; gap: 6px; margin-top: 12px;
}
.blog-card-actions button {
  background: none; border: none; cursor: pointer; padding: 6px 12px;
  border-radius: 8px; background: #f8f9fc; color: #94a3b8;
  font-size: 0.7rem; display: inline-flex; align-items: center; gap: 5px;
  transition: all 0.2s; font-family: inherit;
}
.blog-card-actions button:hover { background: rgba(255,61,127,0.08); color: #FF3D7F; }
.blog-card-bookmark {
  margin-left: auto; background: none; border: none; cursor: pointer;
  padding: 6px; color: #cbd5e1; transition: color 0.2s; display: flex;
}
.blog-card-bookmark:hover { color: #FF3D7F; }
.blog-card-bookmark.active { color: #FF3D7F; }
.blog-card-bookmark.active svg { fill: #FF3D7F; }

/* Sidebar */
.blog-sidebar { position: sticky; top: 100px; align-self: start; }
.blog-sidebar .widget {
  background: #fff; border-radius: 16px; border: 1px solid #eef1f8;
  padding: 24px; margin-bottom: 24px;
}
.blog-sidebar .widget h3 {
  font-size: 0.95rem; font-weight: 800; color: #071126; margin: 0 0 18px;
  display: flex; align-items: center; gap: 8px;
}
.blog-sidebar .widget h3 svg { color: #FF3D7F; flex-shrink: 0; }
.trending-item {
  display: flex; gap: 14px; padding: 12px 0;
  border-bottom: 1px solid #f1f5f9; text-decoration: none; align-items: flex-start;
}
.trending-item:last-child { border-bottom: none; padding-bottom: 0; }
.trending-item:first-child { padding-top: 0; }
.trending-rank {
  width: 28px; height: 28px; border-radius: 8px; background: #f1f5f9;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; color: #94a3b8; flex-shrink: 0;
  transition: all 0.3s;
}
.trending-item:nth-child(1) .trending-rank { background: linear-gradient(135deg, #FF3D7F, #F0065C); color: #fff; }
.trending-item:nth-child(2) .trending-rank { background: linear-gradient(135deg, #8B5CF6, #6D28D9); color: #fff; }
.trending-item:nth-child(3) .trending-rank { background: linear-gradient(135deg, #10B981, #059669); color: #fff; }
.trending-item:hover .trending-rank { transform: scale(1.1); }
.trending-info { flex: 1; min-width: 0; }
.trending-info h4 { font-size: 0.84rem; font-weight: 700; color: #071126; margin: 0 0 4px; line-height: 1.3; transition: color 0.3s; }
.trending-item:hover .trending-info h4 { color: #FF3D7F; }
.trending-info span { font-size: 0.7rem; color: #94a3b8; display: flex; align-items: center; gap: 4px; }

.category-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.category-cloud a {
  padding: 6px 16px; border-radius: 20px; border: 1px solid #e8e8f0;
  font-size: 0.78rem; font-weight: 600; color: #64748b; text-decoration: none;
  transition: all 0.3s;
}
.category-cloud a:hover { border-color: #FF3D7F; color: #FF3D7F; background: rgba(255,61,127,0.04); }
.category-cloud a .count {
  display: inline-block; margin-left: 4px; color: #94a3b8; font-size: 0.7rem;
}

/* Newsletter widget inline */
.blog-newsletter-widget {
  background: linear-gradient(135deg, #071126, #1a0a2e); border-radius: 16px;
  padding: 28px 24px; text-align: center; border: none;
}
.blog-newsletter-widget h3 { color: #fff; font-size: 1rem; font-weight: 800; margin: 0 0 6px; }
.blog-newsletter-widget p { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.5; margin: 0 0 18px; }
.blog-newsletter-widget .nl-input-wrap { display: flex; gap: 8px; }
.blog-newsletter-widget input {
  flex: 1; padding: 11px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06); color: #fff; font-size: 0.84rem; outline: none;
}
.blog-newsletter-widget input::placeholder { color: rgba(255,255,255,0.3); }
.blog-newsletter-widget input:focus { border-color: rgba(255,61,127,0.4); }
.blog-newsletter-widget button {
  padding: 11px 18px; border-radius: 10px; border: none;
  background: linear-gradient(135deg, #FF3D7F, #F0065C); color: #fff;
  font-weight: 700; font-size: 0.84rem; cursor: pointer; white-space: nowrap;
  transition: all 0.3s; font-family: inherit;
}
.blog-newsletter-widget button:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,61,127,0.3); }

/* Empty state */
.blog-empty {
  text-align: center; padding: 80px 20px;
}
.blog-empty svg { color: #cbd5e1; margin-bottom: 16px; }
.blog-empty h3 { color: #94a3b8; font-size: 1.1rem; margin: 0 0 6px; }
.blog-empty p { color: #b0b8c8; font-size: 0.88rem; margin: 0; }

/* Load more */
.blog-load-more {
  text-align: center; margin-top: 40px;
}
.blog-load-more button {
  padding: 14px 36px; border-radius: 14px; border: none;
  background: linear-gradient(135deg, #FF3D7F, #F0065C); color: #fff;
  font-weight: 700; font-size: 0.92rem; cursor: pointer;
  transition: all 0.3s; font-family: inherit;
}
.blog-load-more button:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,61,127,0.3); }

/* Blog CTA */
.blog-cta {
  padding: 60px 0; background: linear-gradient(135deg, #071126 0%, #101A33 100%);
  position: relative; overflow: hidden;
}
.blog-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(139,92,246,0.1) 0%, transparent 70%);
}
.blog-cta-inner { text-align: center; position: relative; z-index: 1; }
.blog-cta h2 { color: #fff; font-size: 1.8rem; font-weight: 800; margin: 0 0 12px; }
.blog-cta p { color: rgba(255,255,255,0.65); font-size: 1rem; margin: 0 0 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
.blog-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.blog-cta-btn-primary {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 12px;
  background: linear-gradient(135deg, #FF3D7F, #F0065C); color: #fff;
  font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all 0.3s;
}
.blog-cta-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,61,127,0.3); }
.blog-cta-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15); color: #fff;
  font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all 0.3s;
}
.blog-cta-btn-secondary:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }

/* Featured label inline */
.blog-featured-overline {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: #FF3D7F; margin-bottom: 10px;
}
.blog-featured-overline svg { width: 14px; height: 14px; }

/* No results suggestion tags */
.blog-empty-suggestions {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 16px;
}
.blog-empty-suggestions a {
  padding: 6px 16px; border-radius: 20px; border: 1px solid #e8e8f0;
  font-size: 0.78rem; color: #64748b; text-decoration: none; transition: all 0.3s;
}
.blog-empty-suggestions a:hover { border-color: #FF3D7F; color: #FF3D7F; }

@media (max-width: 1024px) {
  .blog-hero-grid { grid-template-columns: 1fr; }
  .blog-hero-featured { max-width: 480px; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; max-width: 400px; }
}
@media (max-width: 768px) {
  .blog-hero { padding: 120px 0 60px; }
  .blog-hero h1 { font-size: 2rem; }
  .blog-hero-stats { gap: 20px; }
  .blog-hero-stats strong { font-size: 1.1rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-img-wrap { height: 180px; }
  .blog-cta h2 { font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .blog-hero h1 { font-size: 1.6rem; }
  .blog-card-img-wrap { height: 160px; }
  .blog-newsletter-widget .nl-input-wrap { flex-direction: column; }
  .blog-cta-btns { flex-direction: column; align-items: center; }
}

/* ============================================
   ADVANCED ADMIN MOBILE-RESPONSIVE
   ============================================ */

/* ── Dashboard Grid Helpers ── */
.dash-grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-bottom: 28px; }
.dash-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.dash-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 28px; }
.dash-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 28px; }

/* ── Sidebar Overlay (Mobile) ── */
.admin-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 17, 38, 0.5);
  backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.admin-sidebar-overlay.active {
  display: block;
  opacity: 1;
}

/* ── Mobile Bottom Nav ── */
.admin-mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 98;
  background: #fff;
  border-top: 1px solid #f0f0f5;
  padding: 6px 0;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}
.admin-mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 10px;
  border-radius: 10px;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.55rem;
  font-weight: 600;
  transition: all 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.admin-mobile-nav-item:hover,
.admin-mobile-nav-item.active {
  color: #F0065C;
}
.admin-mobile-nav-item svg {
  width: 20px;
  height: 20px;
}

/* ── Table Wrapper (Horizontal Scroll on Mobile) ── */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive::-webkit-scrollbar {
  height: 4px;
}
.table-responsive::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 4px;
}
.table-responsive::-webkit-scrollbar-track {
  background: transparent;
}

/* ── Card adjustments for mobile ── */
@media (max-width: 480px) {
  .admin-card { padding: 16px; }
  .stat-card { padding: 16px; }
  .ring-card { padding: 20px; }
  .chart-card { padding: 16px; }
  .modal { padding: 20px; width: 95%; }
  .modal-lg { max-width: 95%; }
  .admin-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .admin-tab { white-space: nowrap; font-size: 0.78rem; padding: 6px 12px; }
  .tool-tabs { flex-wrap: nowrap; }
  .tool-tab { font-size: 0.78rem; padding: 8px 14px; }
  .data-table th,
  .data-table td { padding: 10px 10px; font-size: 0.82rem; }
  .dash-table th,
  .dash-table td { padding: 8px; font-size: 0.78rem; }
  .login-card { padding: 0; }
  .login-card-header h2 { font-size: 1.2rem; }
  .login-card-header p { font-size: 0.85rem; }
  .login-field label { font-size: 0.82rem; }
  .login-btn { font-size: 0.88rem; padding: 12px; }
  .quick-btn { font-size: 0.78rem; padding: 10px 14px; }
  .quick-btn svg { width: 16px; height: 16px; }
  .stat-icon { width: 36px; height: 36px; }
  .stat-icon svg { width: 16px; height: 16px; }
  .stat-value { font-size: 1.4rem; }
  .stat-label { font-size: 0.72rem; }
  .ring-text { font-size: 1.2rem; }
  .ring-wrap { width: 100px; height: 100px; }
  .ring-wrap svg { width: 100px; height: 100px; }
  .ring-detail-item .val { font-size: 0.85rem; }
  .ring-detail-item .lbl { font-size: 0.6rem; }
  .admin-content { padding: 10px; }
  .admin-topbar { padding: 6px 10px; min-height: 50px; }
  .admin-topbar-avatar { width: 28px; height: 28px; font-size: 0.7rem; }
  .admin-breadcrumb-current { font-size: 0.78rem; }
  .dash-hero { padding: 18px 16px; }
  .dash-hero h1 { font-size: 1.2rem; }
  .dash-hero p { font-size: 0.78rem; }
  .dash-hero .hero-time .time { font-size: 1.2rem; }
  .dash-hero .hero-time .date { font-size: 0.65rem; }
  .activity-item { padding: 10px 0; }
  .activity-text { font-size: 0.78rem; }
  .activity-time { font-size: 0.65rem; }
  .badge { font-size: 0.65rem; padding: 2px 8px; }
  .theme-toggle { padding: 4px; }
  .theme-toggle svg { width: 16px; height: 16px; }
  .admin-topbar-icon-btn { padding: 4px; }
  .admin-topbar-icon-btn svg { width: 16px; height: 16px; }
  .admin-topbar-user { gap: 4px; padding: 2px 4px; font-size: 0.78rem; }
  .admin-topbar-user svg { width: 12px; height: 12px; }
  .admin-topbar-right { gap: 6px; }
  .admin-topbar-divider { height: 20px; }
  .admin-nav-empty { font-size: 0.72rem !important; padding: 16px 12px !important; }
}

/* ── Tablet responsive (481px-768px) ── */
@media (max-width: 768px) {
  .dash-grid-6 { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .dash-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .dash-grid-2 { grid-template-columns: 1fr; gap: 12px; }
  .dash-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .admin-mobile-bottom-nav { display: flex; }
  .admin-layout { padding-bottom: 60px; }
}

/* ── Small mobile (max 480px) ── */
@media (max-width: 480px) {
  .dash-grid-6 { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .dash-grid-3 { grid-template-columns: 1fr; gap: 10px; }
  .dash-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ── Sidebar mobile improvements ── */
@media (max-width: 768px) {
  .admin-sidebar {
    width: 280px !important;
    box-shadow: 4px 0 30px rgba(0,0,0,0.15);
  }
  .admin-sidebar:not(.admin-sidebar-open) {
    visibility: hidden;
    transition: visibility 0s 0.3s, transform 0.3s ease;
  }
  .admin-sidebar.admin-sidebar-open {
    visibility: visible;
  }
  .admin-sidebar-collapsed {
    width: 280px !important;
  }
  .admin-sidebar-collapsed .admin-logo-text,
  .admin-sidebar-collapsed .admin-user-info,
  .admin-sidebar-collapsed .admin-nav-label,
  .admin-sidebar-collapsed .admin-nav-badge,
  .admin-sidebar-collapsed .admin-nav-submenu,
  .admin-sidebar-collapsed .admin-badge,
  .admin-sidebar-collapsed .admin-sidebar-toggle-label,
  .admin-sidebar-collapsed .admin-search-box,
  .admin-sidebar-collapsed .admin-nav-footer-text,
  .admin-sidebar-collapsed .admin-nav-indicator,
  .admin-sidebar-collapsed .admin-logo-sub {
    display: flex !important;
  }
  .admin-sidebar-collapsed .admin-logo { justify-content: flex-start; padding: 18px 20px 14px; }
  .admin-sidebar-collapsed .admin-user { padding: 12px 16px; margin: 6px 12px 2px; justify-content: flex-start; }
  .admin-sidebar-collapsed .admin-nav { padding: 4px 10px; gap: 1px; }
  .admin-sidebar-collapsed .admin-nav-item { padding: 9px 12px; border-radius: 10px; justify-content: flex-start; gap: 10px; }
  .admin-sidebar-collapsed .admin-nav-group-toggle { padding: 9px 12px; justify-content: flex-start; }
  .admin-sidebar-collapsed .admin-sidebar-toggle { justify-content: flex-start; padding: 9px 12px; }
  .admin-sidebar-collapsed .admin-nav-footer { padding: 6px 10px 12px; }
  .admin-sidebar-collapsed .admin-nav-item[data-tooltip]:hover::after,
  .admin-sidebar-collapsed .admin-nav-group-toggle[data-tooltip]:hover::after { display: none; }
}

/* ── Input & Button touch-friendly ── */
@media (max-width: 768px) {
  input, textarea, select { font-size: 16px !important; }
  .admin-search-input { font-size: 16px !important; }
  .btn { padding: 14px 24px; min-height: 48px; }
  .btn-sm { padding: 10px 18px; min-height: 40px; }
  .admin-nav-item { min-height: 44px; }
  .admin-nav-sub { min-height: 40px; }
  .admin-quick-action { min-height: 44px; }
}

/* ── Modal Mobile Fixes ── */
@media (max-width: 480px) {
  .modal { padding: 20px; border-radius: 16px; }
  .modal [style*="gridTemplateColumns"] { grid-template-columns: 1fr !important; }
}

/* ── Login Page Mobile ── */
@media (max-width: 480px) {
  .login-page { padding: 0; }
  .login-container { margin: 0; border-radius: 0; min-height: 100vh; }
  .login-form-wrapper { padding: 24px 16px; display: flex; align-items: center; min-height: 100vh; }
  .login-card { background: white; border-radius: 20px; padding: 28px 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
  .login-shapes { display: none; }
  .login-toggle-pw { padding: 8px; }
  .login-toggle-pw svg { width: 16px; height: 16px; }
}

/* ── Print styles ── */
@media print {
  .admin-sidebar,
  .admin-topbar,
  .admin-mobile-bottom-nav,
  .admin-sidebar-overlay { display: none !important; }
  .admin-main { margin-left: 0 !important; }
  .admin-content { padding: 20px !important; }
}