/* ============================
   NexPos Software – style.css
   ============================ */

/* ===== FONTS & ROOT VARS ===== */
:root {
  --primary:       #4f46e5;
  --primary-dark:  #3730a3;
  --accent:        #06b6d4;
  --accent2:       #f59e0b;
  --green:         #10b981;
  --orange:        #f97316;
  --pink:          #ec4899;
  --teal:          #14b8a6;
  --purple:        #8b5cf6;
  --dark:          #0f0f23;
  --dark2:         #1a1a3e;
  --text-light:    #f8f9ff;
  --text-muted:    #a0aec0;
  --card-bg:       #ffffff;
  --border-radius: 20px;
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.12);
  --shadow-card:   0 8px 32px rgba(79,70,229,0.10);
  --transition:    all 0.35s cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Nunito', sans-serif;
  background: #f8f9ff;
  color: #2d2d5e;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAVBAR ===== */
#mainNav {
  background: transparent;
  transition: var(--transition);
  padding: 1.2rem 0;
  z-index: 1050;
}
#mainNav.scrolled {
  background: rgba(15, 15, 35, 0.97);
  backdrop-filter: blur(16px);
  padding: 0.7rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.brand-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff;
}
.brand-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 900; font-size: 1.5rem; color: #fff;
  letter-spacing: -0.5px;
}
.brand-accent { color: var(--accent); }

.nav-link {
  font-weight: 600; color: rgba(255,255,255,0.85) !important;
  transition: var(--transition); padding: 0.5rem 1rem !important;
  border-radius: 8px;
}
.nav-link:hover { color: #fff !important; background: rgba(255,255,255,0.08); }

.btn-nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
  color: #fff !important; border-radius: 50px !important;
  padding: 0.4rem 1.3rem !important; font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(79,70,229,0.4);
  transition: var(--transition) !important;
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(79,70,229,0.5) !important; }

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 120px 0 80px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(79,70,229,0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(6,182,212,0.15) 0%, transparent 50%);
}

/* Particles (CSS only) */
.hero-particles {
  position: absolute; inset: 0; pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(79,70,229,0.2); border: 1px solid rgba(79,70,229,0.4);
  color: #a5b4fc; border-radius: 50px;
  padding: 0.4rem 1.2rem; font-size: 0.85rem; font-weight: 600;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; color: #fff;
  line-height: 1.15; letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.7);
  max-width: 520px; line-height: 1.75;
}
.hero-subtitle strong { color: rgba(255,255,255,0.95); }

.btn-hero-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; border: none; border-radius: 50px;
  padding: 0.85rem 2rem; font-weight: 700; font-size: 1rem;
  box-shadow: 0 8px 30px rgba(79,70,229,0.45);
  transition: var(--transition);
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(79,70,229,0.55);
  color: #fff;
}

.btn-hero-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 50px; padding: 0.83rem 2rem;
  font-weight: 700; font-size: 1rem; transition: var(--transition);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7);
  color: #fff; transform: translateY(-3px);
}

.hero-stats { gap: 2rem; }
.hero-stat-num {
  font-family: 'Nunito', sans-serif;
  font-size: 2.2rem; font-weight: 900; color: #fff;
  line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); font-weight: 500; margin-top: 2px; }

/* Floating Cards (Hero Visual) */
.hero-visual {
  position: relative; width: 480px; height: 480px;
  margin: 0 auto;
}
.hero-center-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.ring-1 { width: 160px; height: 160px; animation: ring-spin 8s linear infinite; }
.ring-2 { width: 260px; height: 260px; animation: ring-spin 12s linear infinite reverse; }
.ring-3 { width: 360px; height: 360px; animation: ring-spin 20s linear infinite; }
@keyframes ring-spin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }

.center-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #fff;
  box-shadow: 0 0 40px rgba(79,70,229,0.6);
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
}

.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 0.6rem 1.1rem;
  color: #fff; font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  white-space: nowrap;
}
.floating-card i { font-size: 1.1rem; }
.card-1 { top: 30px; left: 20px; animation: float1 4s ease-in-out infinite; }
.card-1 i { color: #10b981; }
.card-2 { top: 40px; right: 10px; animation: float2 4.5s ease-in-out infinite 0.5s; }
.card-2 i { color: #f97316; }
.card-3 { bottom: 60px; left: 10px; animation: float1 5s ease-in-out infinite 1s; }
.card-3 i { color: #06b6d4; }
.card-4 { bottom: 40px; right: 20px; animation: float2 4s ease-in-out infinite 1.5s; }
.card-4 i { color: #ec4899; }

@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes float2 { 0%,100%{transform:translateY(-8px)} 50%{transform:translateY(8px)} }

.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
}
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ===== MARQUEE ===== */
.marquee-section {
  background: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(79,70,229,0.08);
  overflow: hidden;
}
.marquee-track { overflow: hidden; position: relative; }
.marquee-content {
  display: flex; gap: 3rem; align-items: center;
  animation: marquee-scroll 25s linear infinite;
  white-space: nowrap; width: max-content;
}
.marquee-content span {
  font-weight: 700; font-size: 0.9rem; color: #4a5568;
  display: flex; align-items: center; gap: 0.3rem;
}
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTION HEADERS ===== */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(79,70,229,0.1), rgba(6,182,212,0.1));
  border: 1px solid rgba(79,70,229,0.2);
  color: var(--primary); border-radius: 50px;
  padding: 0.35rem 1.2rem; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900; color: #1a1a4e;
  line-height: 1.2;
}
.section-subtitle {
  color: #64748b; font-size: 1.05rem;
  max-width: 600px; margin: 0 auto;
  line-height: 1.7;
}

/* ===== PRODUCTS SECTION ===== */
.products-section { padding: 80px 0 60px; }

.product-card-wrapper { margin-bottom: 3rem; }

.product-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(79,70,229,0.15);
}

.product-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 6px; height: 100%;
  border-radius: 4px 0 0 4px;
}
.product-jembatan::before { background: linear-gradient(180deg, #10b981, #059669); }
.product-cafe::before     { background: linear-gradient(180deg, #f97316, #ea580c); }
.product-apotek::before   { background: linear-gradient(180deg, #4f46e5, #06b6d4); }
.product-babyshop::before { background: linear-gradient(180deg, #ec4899, #8b5cf6); }

.product-number {
  font-family: 'Nunito', sans-serif;
  font-size: 5rem; font-weight: 900; line-height: 1;
  color: rgba(79,70,229,0.06);
  position: absolute; top: 1.5rem; right: 2rem;
  user-select: none;
}

.product-tag {
  display: inline-flex; align-items: center;
  border-radius: 50px; padding: 0.3rem 0.9rem;
  font-size: 0.78rem; font-weight: 700; margin-bottom: 0.8rem;
}
.tag-desktop { background: rgba(16,185,129,0.12); color: #059669; }
.tag-mobile  { background: rgba(249,115,22,0.12); color: #ea580c; }
.tag-web     { background: rgba(79,70,229,0.12); color: var(--primary); }

.product-title {
  font-family: 'Nunito', sans-serif;
  font-size: 1.9rem; font-weight: 900; color: #1a1a4e; margin-bottom: 0.75rem;
}
.product-desc { color: #64748b; line-height: 1.75; margin-bottom: 1.2rem; }

.product-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
}
.pf-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; color: #374151; font-weight: 500;
}
.pf-item i { color: var(--green); font-size: 0.85rem; flex-shrink: 0; }

.product-img-wrapper {
  position: relative; border-radius: 16px; overflow: visible;
}
.product-img {
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  transition: var(--transition);
  width: 100%;
  object-fit: cover;
}
.product-card:hover .product-img { transform: scale(1.02) translateY(-4px); }

.product-platform-badge {
  position: absolute; top: -10px; right: -10px;
  background: var(--dark); color: #fff;
  padding: 0.35rem 0.9rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
  z-index: 2; box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.badge-android { background: linear-gradient(135deg, #3ddc84, #198f5c); }
.badge-web     { background: linear-gradient(135deg, var(--primary), var(--accent)); }

.product-glow {
  position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%);
  width: 80%; height: 40px; border-radius: 50%;
  filter: blur(20px); opacity: 0.4;
  z-index: -1;
}
.glow-green { background: var(--green); }
.glow-orange { background: var(--orange); }
.glow-blue  { background: var(--accent); }
.glow-pink  { background: var(--pink); }

.btn-product-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; border: none; border-radius: 50px;
  padding: 0.75rem 1.8rem; font-weight: 700; font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(79,70,229,0.35);
  transition: var(--transition);
}
.btn-product-cta:hover {
  color: #fff; transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(79,70,229,0.45);
}

/* Alternate product accent colors */
.product-cafe .btn-product-cta     { background: linear-gradient(135deg, #f97316, #f59e0b); }
.product-cafe .pf-item i           { color: var(--orange); }
.product-apotek .pf-item i         { color: var(--accent); }
.product-babyshop .btn-product-cta { background: linear-gradient(135deg, var(--pink), var(--purple)); }
.product-babyshop .pf-item i       { color: var(--pink); }

/* Product 5 – Jembatan Timbang Online */
.product-jt-online::before { background: linear-gradient(180deg, #14b8a6, #0891b2); }
.product-jt-online .pf-item.pf-teal i { color: var(--teal); }
.btn-jt-online { background: linear-gradient(135deg, #14b8a6, #0891b2) !important; }
.text-teal     { color: #14b8a6; }
.tag-new       { background: rgba(20,184,166,0.12); color: #0f766e; }

/* NEW ribbon badge */
.new-ribbon {
  position: absolute; top: -10px; left: -10px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff; font-size: 0.72rem; font-weight: 800;
  padding: 0.35rem 0.85rem; border-radius: 50px;
  z-index: 3; box-shadow: 0 4px 12px rgba(245,158,11,0.45);
  letter-spacing: 0.05em;
}

/* Product highlight badge */
.product-highlight-badge {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, rgba(20,184,166,0.12), rgba(8,145,178,0.12));
  border: 1px solid rgba(20,184,166,0.3);
  color: #0f766e; border-radius: 50px;
  padding: 0.4rem 1.1rem; font-size: 0.82rem; font-weight: 700;
}

/* Glow teal */
.glow-teal { background: var(--teal); }

/* Floating card 5 */
.card-5 {
  top: 50%; left: -30px;
  transform: translateY(-50%);
  animation: float1 4.8s ease-in-out infinite 2s;
}
.card-5 i { color: #14b8a6; }

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f9ff 0%, #eef2ff 100%);
  position: relative; overflow: hidden;
}
.features-bg-decor {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79,70,229,0.05) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}

.feature-card {
  background: #fff; border-radius: 18px;
  padding: 2rem; height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(79,70,229,0.12);
}

.feature-icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.2rem;
}
.icon-blue   { background: rgba(79,70,229,0.12); color: var(--primary); }
.icon-green  { background: rgba(16,185,129,0.12); color: var(--green); }
.icon-purple { background: rgba(139,92,246,0.12); color: var(--purple); }
.icon-orange { background: rgba(249,115,22,0.12); color: var(--orange); }
.icon-teal   { background: rgba(20,184,166,0.12); color: var(--teal); }
.icon-pink   { background: rgba(236,72,153,0.12); color: var(--pink); }

.feature-title { font-family: 'Nunito', sans-serif; font-weight: 800; color: #1a1a4e; font-size: 1.1rem; }
.feature-desc  { color: #64748b; font-size: 0.92rem; line-height: 1.65; margin: 0; }

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 60%, #24243e 100%);
  position: relative; overflow: hidden;
}
.stats-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(79,70,229,0.2) 0%, transparent 70%);
}

.stat-box { padding: 1rem; }
.stat-icon { font-size: 2rem; margin-bottom: 0.8rem; opacity: 0.6; color: #a5b4fc; }
.stat-number {
  font-family: 'Nunito', sans-serif;
  font-size: 3.5rem; font-weight: 900; color: #fff;
  display: inline; line-height: 1;
}
.stat-plus { display: inline; font-size: 2rem; font-weight: 900; color: var(--accent); }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.55); font-weight: 500; margin-top: 0.4rem; }

/* ===== HOW SECTION ===== */
.how-section { padding: 80px 0; background: #fff; }

.how-card {
  background: #f8f9ff;
  border-radius: 20px; padding: 2.5rem 2rem;
  text-align: center; position: relative;
  border: 1px solid rgba(79,70,229,0.08);
  transition: var(--transition);
}
.how-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(79,70,229,0.12); }

.how-step {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-weight: 900; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(79,70,229,0.4);
}
.how-icon {
  font-size: 2.5rem; color: var(--primary);
  margin: 1rem 0; opacity: 0.85;
}
.how-card h5 { font-family: 'Nunito', sans-serif; font-weight: 800; color: #1a1a4e; }
.how-card p  { color: #64748b; font-size: 0.92rem; line-height: 1.65; margin: 0; }
.how-arrow   { color: rgba(79,70,229,0.25); padding: 0 0.5rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  position: relative; overflow: hidden;
}
.cta-bg-shape {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; color: #fff; margin-bottom: 1rem;
}
.cta-subtitle { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 550px; margin: 0 auto; }

.btn-cta-white {
  background: #fff; color: var(--primary);
  border-radius: 50px; padding: 0.85rem 2rem;
  font-weight: 700; border: none; font-size: 1rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: var(--transition);
}
.btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(0,0,0,0.2); color: var(--primary); }

.btn-cta-whatsapp {
  background: #25D366; color: #fff;
  border-radius: 50px; padding: 0.85rem 2rem;
  font-weight: 700; border: none; font-size: 1rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: var(--transition);
}
.btn-cta-whatsapp:hover { transform: translateY(-3px); color: #fff; background: #128C7E; }

/* ===== CONTACT SECTION ===== */
.contact-section { padding: 80px 0; background: #f8f9ff; }

.contact-info-card {
  background: linear-gradient(135deg, #1a1a3e 0%, #2d2d6e 100%);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  height: 100%; color: #fff;
}
.contact-info-title { font-family: 'Nunito', sans-serif; font-weight: 800; margin-bottom: 1.5rem; font-size: 1.2rem; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  color: var(--accent);
}
.contact-info-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 0.2rem; }
.contact-info-value { color: #fff; font-weight: 600; text-decoration: none; font-size: 0.95rem; }
.contact-info-value:hover { color: var(--accent); }

.social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,0.1); color: #fff;
  margin-right: 0.5rem; font-size: 1.1rem;
  transition: var(--transition); text-decoration: none;
}
.social-btn:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }

.app-platform-item {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 0; color: rgba(255,255,255,0.7);
  font-size: 0.88rem; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.app-platform-item i { color: var(--accent); }

.contact-form-card {
  background: #fff; border-radius: var(--border-radius);
  padding: 2.5rem; box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.04);
}
.contact-form-title { font-family: 'Nunito', sans-serif; font-weight: 800; margin-bottom: 1.5rem; color: #1a1a4e; }

.custom-input {
  border: 2px solid rgba(0,0,0,0.08) !important;
  border-radius: 12px !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.95rem !important;
  transition: var(--transition) !important;
  background: #f8f9ff !important;
}
.custom-input:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 4px rgba(79,70,229,0.08) !important;
  background: #fff !important;
}

.btn-submit-form {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; border: none; border-radius: 12px;
  padding: 1rem; font-weight: 700; font-size: 1rem;
  box-shadow: 0 8px 25px rgba(79,70,229,0.35);
  transition: var(--transition);
}
.btn-submit-form:hover { transform: translateY(-2px); box-shadow: 0 15px 35px rgba(79,70,229,0.45); color: #fff; }

/* ===== FOOTER ===== */
.footer-section { background: var(--dark); }
.footer-top { padding: 60px 0 40px; }
.footer-brand {
  font-family: 'Nunito', sans-serif;
  font-size: 1.6rem; font-weight: 900; color: #fff;
}
.footer-brand i  { color: var(--accent); }
.footer-brand span { color: var(--accent); }
.footer-desc { color: rgba(255,255,255,0.45); font-size: 0.9rem; line-height: 1.7; }
.footer-heading { color: #fff; font-weight: 700; margin-bottom: 1.2rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); }

.footer-newsletter { display: flex; gap: 0; margin-top: 0.8rem; }
.footer-email-input {
  flex: 1; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px 0 0 10px; padding: 0.65rem 1rem;
  color: #fff; font-size: 0.9rem; outline: none;
}
.footer-email-input::placeholder { color: rgba(255,255,255,0.3); }
.footer-subscribe-btn {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none; color: #fff; padding: 0 1.2rem;
  border-radius: 0 10px 10px 0; cursor: pointer;
  transition: var(--transition);
}
.footer-subscribe-btn:hover { opacity: 0.85; }

.footer-bottom {
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.35); font-size: 0.85rem;
}
.footer-bottom strong { color: rgba(255,255,255,0.6); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; border: none; font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(79,70,229,0.4);
  cursor: pointer; transition: var(--transition);
  display: none; z-index: 999;
  align-items: center; justify-content: center;
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 15px 35px rgba(79,70,229,0.5); }

/* ===== TOAST ===== */
.toast-notification {
  position: fixed; bottom: 5rem; right: 2rem;
  background: linear-gradient(135deg, var(--green), #059669);
  color: #fff; padding: 1rem 1.5rem;
  border-radius: 12px; font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transform: translateX(200%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  z-index: 9999;
}
.toast-notification.show { transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .hero-title { font-size: 2rem; }
  .hero-cta .btn { display: block; width: 100%; margin-bottom: 1rem; margin-right: 0 !important; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .product-card { padding: 2rem 1.5rem; }
  .product-features { grid-template-columns: 1fr; }
  .btn-cta-white, .btn-cta-whatsapp { display: block; width: 100%; margin-bottom: 1rem; margin-right: 0 !important; }
  .contact-info-card { margin-bottom: 1.5rem; }
  .stat-number { font-size: 2.5rem; }
}

@media (max-width: 991px) {
  .how-arrow { display: none; }
}

/* ===== READ MORE BUTTON ===== */
.btn-read-more {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: transparent;
  border: 2px solid rgba(79, 70, 229, 0.35);
  color: var(--primary);
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-read-more::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.btn-read-more i,
.btn-read-more span,
.btn-read-more > * {
  position: relative;
  z-index: 1;
}

.btn-read-more:hover {
  color: #fff;
  border-color: transparent;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.25);
}

.btn-read-more:hover::before {
  opacity: 1;
}

/* Gap utility for Bootstrap 4 compatibility */
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
