/* =============================================
   DURBAR IT — Custom Stylesheet
   Stack: Bootstrap 5 + jQuery + Vanilla CSS
   ============================================= */

:root {
  --primary:   #2563EB;
  --secondary: #7C3AED;
  --accent:    #06B6D4;
  --dark:      #0F172A;
  --light:     #F8FAFC;
  --text:      #1E293B;
  --muted:     #64748B;
  --border:    #E2E8F0;
  --card-bg:   #FFFFFF;
  --section-light: #F1F5F9;
  --grad: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --grad2: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --shadow-sm:  0 2px 8px rgba(37,99,235,.10);
  --shadow-md:  0 8px 32px rgba(37,99,235,.14);
  --shadow-lg:  0 20px 60px rgba(37,99,235,.18);
  --radius: 16px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; }

/* ===== LOADING SCREEN ===== */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .4s ease, visibility .4s ease;
}
#loading-screen.hide { opacity: 0; visibility: hidden; }

.loader-content { text-align: center; }
.loader-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}
.loader-bar-wrap {
  width: 200px;
  height: 4px;
  background: #E2E8F0;
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto 1rem;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: var(--grad);
  border-radius: 99px;
  transition: width .05s linear;
}
.loader-tagline { color: var(--muted); font-size: .875rem; }

/* ===== NAVBAR ===== */
#mainNavbar {
  background: rgba(255,255,255,.0);
  backdrop-filter: none;
  transition: all .35s ease;
  padding: 1.2rem 0;
}
#mainNavbar.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
  box-shadow: var(--shadow-sm);
}
.brand-icon {
  width: 38px; height: 38px;
  background: var(--grad);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
}
.brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
}
.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text) !important;
  font-size: .925rem;
  padding: .4rem .65rem !important;
  border-radius: 7px;
  transition: background .2s, color .2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background: rgba(37,99,235,.07);
}

/* ===== BUTTONS ===== */
.btn-primary-grad {
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .6rem 1.6rem;
  font-weight: 600;
  font-size: .9rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(37,99,235,.35);
}
.btn-primary-grad:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,.45);
}
.btn-outline-hero {
  border: 2px solid var(--border);
  color: var(--text);
  border-radius: 50px;
  padding: .6rem 1.6rem;
  font-weight: 600;
  font-size: .9rem;
  background: #fff;
  transition: all .2s;
}
.btn-outline-hero:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(37,99,235,.05);
}
.btn-cta {
  background: #fff;
  color: var(--primary);
  border-radius: 50px;
  padding: .85rem 2.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.28); color: var(--secondary); }

/* ===== SECTIONS ===== */
.section-pad { padding: 100px 0; }
.section-light { background: var(--section-light); }

.section-badge {
  display: inline-block;
  padding: .35rem 1rem;
  background: rgba(37,99,235,.1);
  color: var(--primary);
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.section-badge.light { background: rgba(255,255,255,.15); color: #fff; }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: .75rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-2 {
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  background: linear-gradient(160deg, #EEF2FF 0%, #F0FDFF 50%, #F8FAFC 100%);
  overflow: hidden;
  padding-top: 80px;
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--grad);
  opacity: .07;
  animation: floatShape 8s ease-in-out infinite;
}
.s1 { width: 500px; height: 500px; top: -150px; right: -100px; animation-delay: 0s; }
.s2 { width: 300px; height: 300px; bottom: -50px; left: -80px; animation-delay: 2s; }
.s3 { width: 200px; height: 200px; top: 30%; left: 20%; opacity: .05; animation-delay: 1s; }
.s4 { width: 150px; height: 150px; bottom: 20%; right: 10%; background: var(--grad2); opacity: .06; animation-delay: 3s; }
.s5 { width: 80px; height: 80px; top: 15%; left: 50%; background: var(--accent); opacity: .1; animation-delay: 1.5s; }

@keyframes floatShape {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  background: rgba(37,99,235,.1);
  border: 1px solid rgba(37,99,235,.2);
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .6; }
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
}
.hero-sub { font-size: 1.1rem; color: var(--muted); line-height: 1.7; max-width: 520px; }

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .8rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.trust-badge i { color: var(--primary); }

/* Dashboard Mockup */
.dashboard-mockup { position: relative; padding: 20px 0 40px; }
.mockup-window {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  animation: mockupFloat 5s ease-in-out infinite;
}
@keyframes mockupFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.mockup-bar {
  background: #F8FAFC;
  border-bottom: 1px solid var(--border);
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.rd { background: #FF5F57; }
.yw { background: #FEBC2E; }
.gn { background: #28C840; }
.mockup-url {
  flex: 1;
  background: #E8EAED;
  border-radius: 99px;
  padding: .2rem .75rem;
  font-size: .7rem;
  color: var(--muted);
  text-align: center;
  max-width: 180px;
  margin-left: .5rem;
}
.mockup-body { display: flex; min-height: 260px; }
.mock-sidebar {
  width: 52px;
  background: #1E293B;
  padding: 1rem .5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.mock-s-item { height: 28px; background: rgba(255,255,255,.15); border-radius: 6px; }
.mock-s-item.active { background: var(--primary); }
.mock-content { flex: 1; padding: 1rem; }
.mock-header-row { height: 10px; background: #E2E8F0; border-radius: 99px; margin-bottom: 1rem; }
.mock-cards-row { display: flex; gap: .5rem; margin-bottom: 1rem; }
.mock-stat-card {
  flex: 1;
  background: linear-gradient(135deg, #F8FAFC, #EEF2FF);
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  padding: .5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  font-size: .7rem;
  color: var(--muted);
}
.mock-stat-card i { color: var(--primary); font-size: .9rem; }
.mock-stat-card span { font-weight: 700; color: var(--text); font-size: .75rem; }
.mock-chart { display: flex; align-items: flex-end; gap: 6px; height: 80px; padding: .5rem 0; }
.chart-bar {
  flex: 1;
  background: var(--grad);
  border-radius: 4px 4px 0 0;
  opacity: .7;
  transition: opacity .2s;
}
.chart-bar:hover { opacity: 1; }

.float-badge {
  position: absolute;
  width: 48px; height: 48px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}
.fb1 { top: 10px; right: -10px; animation: floatB 3s ease-in-out infinite; }
.fb2 { bottom: 50px; left: -15px; background: var(--grad2); animation: floatB 4s ease-in-out infinite reverse; }
.fb3 { top: 50%; right: -20px; background: linear-gradient(135deg,var(--accent),var(--primary)); animation: floatB 3.5s ease-in-out infinite 1s; }
@keyframes floatB { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-8px) scale(1.05); } }

/* ===== GLASS CARD ===== */
.glass-card {
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.glass-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.about-icon {
  width: 64px; height: 64px;
  background: rgba(37,99,235,.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.5rem;
  color: var(--primary);
}
.about-icon.secondary { background: rgba(124,58,237,.12); color: var(--secondary); }
.about-icon.accent { background: rgba(6,182,212,.12); color: var(--accent); }

/* ===== STATS ===== */
.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-plus { font-size: 1.5rem; font-weight: 700; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { color: var(--muted); font-size: .875rem; font-weight: 500; margin-top: .4rem; }

/* ===== SERVICES ===== */
.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,99,235,.25);
}
.svc-icon {
  width: 56px; height: 56px;
  background: color-mix(in srgb, var(--c) 15%, transparent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--c);
}
.service-card h5 { font-weight: 700; font-size: 1rem; color: var(--text); margin: 0; }
.service-card p { font-size: .875rem; color: var(--muted); line-height: 1.6; margin: 0; flex: 1; }
.svc-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap .2s, color .2s;
}
.svc-link:hover { gap: .6rem; color: var(--secondary); }

/* ===== WHY SECTION ===== */
.why-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1E1B4B 100%);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(37,99,235,.15) 0%, transparent 60%);
}
.why-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: background .25s, transform .25s, box-shadow .25s;
  backdrop-filter: blur(4px);
}
.why-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.why-icon {
  width: 52px; height: 52px;
  background: var(--grad);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
}
.why-card h5 { color: #fff; font-weight: 700; font-size: .975rem; margin-bottom: .5rem; }
.why-card p { color: rgba(255,255,255,.6); font-size: .85rem; line-height: 1.65; margin: 0; }

/* ===== TECH STACK ===== */
.tech-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.tech-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tech-group-title {
  font-weight: 700;
  color: var(--text);
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--border);
  margin-bottom: 1rem;
}
.tech-items { display: flex; flex-wrap: wrap; gap: .75rem; }
.tech-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .75rem;
  background: var(--section-light);
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text);
  transition: background .2s, transform .2s;
  cursor: default;
}
.tech-item:hover { background: #E0E7FF; transform: translateY(-2px); }
.tech-item i { font-size: 1.2rem; }

/* ===== PORTFOLIO ===== */
.portfolio-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: .5rem; }
.filter-btn {
  padding: .45rem 1.2rem;
  border-radius: 99px;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--text);
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: all .25s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(37,99,235,.35);
}
.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  background: var(--card-bg);
  transition: transform .25s, box-shadow .25s;
}
.portfolio-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.p-img {
  position: relative;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.p-bg-icon {
  font-size: 5rem;
  color: rgba(255,255,255,.2);
  position: absolute;
  bottom: -10px;
  right: -10px;
}
.p-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
  backdrop-filter: blur(2px);
}
.portfolio-card:hover .p-overlay { opacity: 1; }
.p-info { padding: 1.25rem 1.5rem; }
.p-cat {
  display: inline-block;
  padding: .2rem .65rem;
  background: rgba(37,99,235,.1);
  color: var(--primary);
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5rem;
}
.p-info h5 { font-weight: 700; font-size: 1rem; margin-bottom: .35rem; }
.p-info p { color: var(--muted); font-size: .85rem; line-height: 1.5; margin-bottom: .75rem; }
.p-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.p-tags span {
  padding: .2rem .6rem;
  background: var(--section-light);
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text);
}
.mix.hide { display: none !important; }

/* ===== PROCESS ===== */
.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.process-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  transform: translateX(-50%);
  border-radius: 99px;
}
.process-step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.process-step.left { flex-direction: row; padding-right: calc(50% + 2rem); }
.process-step.right { flex-direction: row-reverse; padding-left: calc(50% + 2rem); }
.process-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 18px;
  background: var(--grad);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
  z-index: 1;
  flex-shrink: 0;
}
.process-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  flex: 1;
  transition: transform .25s, box-shadow .25s;
}
.process-content:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process-icon {
  width: 44px; height: 44px;
  background: var(--grad);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.process-body { flex: 1; }
.process-num {
  font-size: .75rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: .05em;
  display: block;
  margin-bottom: .25rem;
}
.process-body h5 { font-weight: 700; font-size: .975rem; margin-bottom: .35rem; }
.process-body p { font-size: .85rem; color: var(--muted); line-height: 1.6; margin: 0; }

@media (max-width: 767px) {
  .process-line { left: 20px; }
  .process-step.left, .process-step.right {
    flex-direction: row;
    padding: 0 0 0 50px;
  }
  .process-dot { left: 20px; }
}

/* ===== TESTIMONIALS ===== */
.testi-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  margin: 1rem;
}
.testi-quote { font-size: 2rem; color: var(--primary); opacity: .25; margin-bottom: .75rem; line-height: 1; }
.testi-stars { font-size: 1.2rem; color: #F59E0B; letter-spacing: .1em; margin-bottom: 1rem; }
.testi-text { font-size: 1rem; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.testi-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-ctrl {
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  font-size: .9rem;
  transition: background .2s, color .2s;
}
.testi-ctrl:hover { background: var(--primary); color: #fff; }
.carousel-control-prev, .carousel-control-next {
  width: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.carousel-control-prev { left: -10px; }
.carousel-control-next { right: -10px; }
.testi-dots { position: relative; bottom: -1.5rem; }
.testi-dots button {
  width: 8px; height: 8px;
  border-radius: 99px;
  background: var(--border) !important;
  border: none;
  transition: all .25s;
}
.testi-dots button.active { background: var(--primary) !important; width: 24px; }

/* ===== PRICING ===== */
.pricing-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,.3); }
.pricing-featured {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.pricing-featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-pop-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #F59E0B;
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  padding: .25rem .9rem;
  border-radius: 99px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(245,158,11,.4);
}
.pricing-icon {
  width: 56px; height: 56px;
  background: rgba(37,99,235,.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: .75rem;
}
.pricing-featured .pricing-icon { background: rgba(255,255,255,.2); color: #fff; }
.pricing-card h4 { font-weight: 800; font-size: 1.25rem; }
.pricing-price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin: .5rem 0;
}
.pricing-price sup { font-size: 1.2rem; vertical-align: top; margin-top: .6rem; }
.pricing-price sub { font-size: .8rem; font-weight: 500; color: var(--muted); }
.pricing-featured .pricing-price, .pricing-featured .pricing-price sub { color: #fff; }
.enterprise-custom { font-size: 1.8rem !important; }
.pricing-desc { color: var(--muted); font-size: .875rem; margin-bottom: 1.25rem; }
.pricing-featured .pricing-desc { color: rgba(255,255,255,.8); }
.pricing-list { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; }
.pricing-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem 0;
  font-size: .875rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.pricing-featured .pricing-list li { border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }
.pricing-list li i.fa-check { color: #10B981; }
.pricing-list li.off { color: var(--muted); }
.pricing-featured .pricing-list li.off { color: rgba(255,255,255,.45); }
.pricing-list li.off i.fa-times { color: #EF4444; }
.pricing-featured .pricing-list li i.fa-check { color: #A7F3D0; }

/* ===== FAQ ===== */
.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: .75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  padding: 1.1rem 1.5rem;
  background: var(--card-bg);
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(37,99,235,.04);
}
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563EB'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-body { font-size: .9rem; color: var(--muted); line-height: 1.7; padding: 1rem 1.5rem; }

/* ===== CONTACT ===== */
.contact-form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.custom-input {
  border-radius: var(--radius-sm) !important;
  border: 1.5px solid var(--border) !important;
  padding: .7rem 1rem !important;
  font-size: .9rem !important;
  transition: border-color .2s, box-shadow .2s !important;
}
.custom-input:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(37,99,235,.1) !important;
  outline: none !important;
}
.contact-info-wrap { padding-top: 1rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.ci-icon {
  width: 46px; height: 46px;
  background: rgba(37,99,235,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
}
.ci-icon.whatsapp { background: rgba(37,211,102,.12); color: #25D366; }
.contact-info-item h6 { font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .2rem; color: var(--text); }
.contact-info-item p { color: var(--muted); font-size: .875rem; margin: 0; line-height: 1.6; }
.contact-info-item a { color: var(--primary); text-decoration: none; }
.contact-info-item a:hover { text-decoration: underline; }
.map-placeholder {
  background: linear-gradient(135deg, #EEF2FF, #E0EDFF);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: .875rem;
  border: 1px dashed var(--primary);
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--grad);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-particles span {
  position: absolute;
  width: 6px; height: 6px;
  background: rgba(255,255,255,.3);
  border-radius: 50%;
  animation: floatParticle 6s ease-in-out infinite;
}
.cta-particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; width: 10px; height: 10px; }
.cta-particles span:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
.cta-particles span:nth-child(3) { top: 30%; right: 15%; animation-delay: 2s; width: 8px; height: 8px; }
.cta-particles span:nth-child(4) { bottom: 20%; left: 40%; animation-delay: .5s; width: 12px; height: 12px; }
.cta-particles span:nth-child(5) { top: 70%; left: 20%; animation-delay: 3s; }
.cta-particles span:nth-child(6) { bottom: 30%; right: 30%; animation-delay: 1.5s; width: 7px; height: 7px; }
@keyframes floatParticle {
  0%,100% { transform: translateY(0) scale(1); opacity: .3; }
  50% { transform: translateY(-30px) scale(1.2); opacity: .7; }
}
.cta-title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.cta-title span { color: rgba(255,255,255,.85); }
.cta-sub { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 1.5rem; }

/* ===== FOOTER ===== */
.site-footer { background: #0F172A; }
.footer-text { color: rgba(148,163,184,.9); font-size: .875rem; line-height: 1.7; }
.footer-heading { color: #fff; font-weight: 700; font-size: .875rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.25rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: rgba(148,163,184,.9); text-decoration: none; font-size: .875rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.social-links { display: flex; gap: .6rem; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .875rem;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}
.social-link:hover { background: var(--primary); color: #fff; transform: translateY(-3px); border-color: var(--primary); }
.newsletter-form .form-control {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  border-radius: 8px 0 0 8px;
  font-size: .875rem;
}
.newsletter-form .form-control::placeholder { color: rgba(148,163,184,.6); }
.newsletter-form .form-control:focus { background: rgba(255,255,255,.12); border-color: var(--primary); color: #fff; box-shadow: none; }
.newsletter-form .btn { border-radius: 0 8px 8px 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(148,163,184,.7); font-size: .8rem; text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: #fff; }

/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 46px; height: 46px;
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  z-index: 999;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
#backToTop.show { display: flex; }
#backToTop:hover { transform: translateY(-3px) scale(1.05); box-shadow: var(--shadow-lg); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  z-index: 998;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { color: #fff; transform: scale(1.1); box-shadow: 0 10px 30px rgba(37,211,102,.6); animation: none; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,.45); }
  50% { box-shadow: 0 6px 20px rgba(37,211,102,.45), 0 0 0 10px rgba(37,211,102,.1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .section-pad { padding: 70px 0; }
  .hero-section { padding-top: 72px; }
  .pricing-featured { transform: scale(1); }
}
@media (max-width: 575px) {
  .section-pad { padding: 60px 0; }
  .contact-form-card { padding: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
