:root {
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-card: #FFFFFF;
  --primary: #6366F1;
  --primary-gradient: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
  --accent-pink: #EC4899;
  --accent-purple: #8B5CF6;
  --accent-gradient: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border: #E2E8F0;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Space Grotesk', sans-serif;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px -15px rgba(99, 102, 241, 0.15);
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4, h5, .font-heading {
  font-family: var(--font-heading);
  color: var(--text-dark);
}
.font-mono { font-family: var(--font-mono); }

/* Background Glow Container */
.glow-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.glow-bg {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.04) 50%, transparent 70%);
  border-radius: 50%;
}
.glow-top-right { top: -100px; right: -50px; }
.glow-bottom-left { bottom: -100px; left: -50px; }

/* Navigation */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-cta {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 700;
  background: var(--text-dark); color: #FFF !important;
  padding: 12px 24px; border-radius: 100px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3); }

/* Badge Tag */
.badge-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(99, 102, 241, 0.08); border: 1px solid rgba(99, 102, 241, 0.2);
  color: var(--primary); font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  margin-bottom: 24px;
}
.badge-tag span.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-pink); }

/* Gradient Text */
.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

/* Buttons */
.btn-primary-custom {
  background: var(--primary-gradient); color: #FFF !important;
  box-shadow: var(--shadow-lg); font-weight: 700; padding: 16px 32px; border-radius: 12px; border: none;
  transition: all 0.3s ease;
}
.btn-primary-custom:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(99, 102, 241, 0.35); }

.btn-secondary-custom {
  background: var(--bg-alt); color: var(--text-dark) !important;
  border: 1px solid var(--border); font-weight: 700; padding: 16px 32px; border-radius: 12px;
  transition: all 0.3s ease;
}
.btn-secondary-custom:hover { background: #FFF; border-color: var(--text-dark); transform: translateY(-3px); }

/* Hero Visual Card Stack */
.hero-card-wrapper {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}
.main-card {
  background: #FFFFFF;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12);
  padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  transform: rotate(-2deg);
  transition: transform 0.5s ease;
}
.hero-card-wrapper:hover .main-card { transform: rotate(0deg) scale(1.02); }

.card-screen {
  height: 280px; border-radius: 20px;
  background: linear-gradient(135deg, #1E1B4B 0%, #312E81 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; color: white; text-align: center;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.3);
}
.flash-animation {
  width: 80px; height: 80px; border-radius: 50%;
  background: radial-gradient(circle, #FFFFFF 0%, rgba(236, 72, 153, 0.8) 60%, rgba(99, 102, 241, 0) 100%);
  filter: blur(4px);
  animation: pulseFlash 2.5s infinite alternate ease-in-out;
}
@keyframes pulseFlash {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 1; }
}

.floating-badge {
  position: absolute; padding: 12px 18px; background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px); border: 1px solid var(--border);
  border-radius: 16px; box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 13.5px;
  animation: float 4s ease-in-out infinite alternate;
}
.fb-1 { top: -15px; right: 0px; z-index: 3; }
.fb-2 { bottom: 15px; left: -10px; z-index: 3; animation-delay: -2s; }
@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

/* Marquee Ticker */
.ticker {
  background: var(--bg-alt); color: var(--text-dark);
  overflow: hidden; white-space: nowrap;
  padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.ticker-track {
  display: inline-flex; gap: 48px;
  animation: scroll 30s linear infinite;
  font-family: var(--font-mono); font-weight: 700; font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase;
}
.ticker-track span { display: flex; align-items: center; gap: 48px; color: var(--text-muted); }
.ticker-track span strong { color: var(--primary); }
.ticker-track span::after { content: '✦'; color: var(--accent-pink); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Product Card */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px -15px rgba(99, 102, 241, 0.15);
}
.p-num {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  color: var(--accent-pink); background: rgba(236, 72, 153, 0.08);
  width: fit-content; padding: 4px 10px; border-radius: 6px; margin-bottom: 24px;
}
.p-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px; background: rgba(99, 102, 241, 0.08);
  color: var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
  transition: background 0.3s, color 0.3s;
  font-size: 24px;
}
.product-card:hover .p-icon-wrap { background: var(--primary-gradient); color: white; }

/* Contact Cards */
.c-card {
  display: flex; align-items: center; gap: 16px;
  background: #FFFFFF; border: 1px solid var(--border);
  border-radius: 16px; padding: 18px 20px;
  transition: all 0.3s ease; text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.c-card:hover {
  border-color: var(--primary); transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.1);
}
/* Contact Form Styling */
form {
  display: flex; flex-direction: column; gap: 20px;
  background: var(--bg-alt); padding: 40px; border-radius: 24px;
  border: 1px solid var(--border);
}
form label {
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 8px; display: block;
}
form input, form select, form textarea {
  width: 100%; background: #FFFFFF; border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px; color: var(--text-dark);
  font-family: var(--font-body); font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
form input::placeholder, form textarea::placeholder { color: var(--text-light); }
form input:focus, form select:focus, form textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
form textarea { resize: vertical; min-height: 110px; }
