/* ─── Design Tokens ─────────────────────────────────────────────── */
:root {
  --brand: #4f46e5;
  --brand-light: #818cf8;
  --brand-dark: #3730a3;
  --accent: #10b981;
  --accent-dark: #059669;
  --warn: #f59e0b;
  --danger: #ef4444;
  --ink: #0f172a;
  --ink-2: #1e293b;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --soft: #f1f5f9;
  --soft-2: #f8fafc;
  --line: #e2e8f0;
  --line-2: #cbd5e1;
  --white: #ffffff;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-xs: 0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow-sm: 0 4px 12px rgba(15,23,42,.06), 0 2px 4px rgba(15,23,42,.04);
  --shadow-md: 0 8px 28px rgba(15,23,42,.08), 0 4px 10px rgba(15,23,42,.05);
  --shadow-lg: 0 20px 60px rgba(15,23,42,.12), 0 8px 20px rgba(15,23,42,.07);
  --shadow-brand: 0 12px 40px color-mix(in srgb, var(--brand) 28%, transparent);
  --shadow-accent: 0 10px 30px color-mix(in srgb, var(--accent) 30%, transparent);
  --gradient-brand: linear-gradient(135deg, var(--brand) 0%, #7c3aed 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #06b6d4 100%);
  --gradient-hero: radial-gradient(ellipse 80% 60% at 50% -10%, color-mix(in srgb, var(--brand) 14%, transparent), transparent 65%), linear-gradient(180deg, #f8f7ff 0%, #ffffff 100%);
  --transition: 0.22s cubic-bezier(.4, 0, .2, 1);
  --transition-slow: 0.4s cubic-bezier(.4, 0, .2, 1);
}

/* ─── Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── Scrollbar ─────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted-2); }

/* ─── Google Font Import ────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════ */
.navbar {
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226,232,240,0.7);
  transition: box-shadow var(--transition), background var(--transition);
  padding: 0;
}
.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255,255,255,0.97);
}
.navbar .container { padding-top: 0.55rem; padding-bottom: 0.55rem; }
.navbar-brand {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
  color: var(--ink) !important;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}
.navbar-logo {
  display: block;
  width: auto;
  height: 34px;
  max-width: min(200px, 70vw);
  object-fit: contain;
}
.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-brand);
  font-size: 1rem;
  flex-shrink: 0;
}
@media (max-width: 575.98px) {
  .navbar-logo { height: 30px !important; max-width: 70vw !important; }
}
.nav-link {
  font-weight: 600;
  color: var(--muted) !important;
  font-size: 0.9rem;
  padding: 0.45rem 0.75rem !important;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-link:hover,
.nav-link.active { color: var(--brand) !important; background: color-mix(in srgb, var(--brand) 7%, transparent); }
.navbar-toggler { border: none; padding: 0.4rem; border-radius: 8px; }
.navbar-toggler:focus { box-shadow: none; outline: 2px solid color-mix(in srgb, var(--brand) 30%, transparent); }

/* ─── Navbar Buttons ─── */
.btn { border-radius: var(--radius-sm); font-weight: 650; transition: all var(--transition); position: relative; overflow: hidden; }
.btn::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0); transition: background var(--transition); }
.btn:hover::after { background: rgba(255,255,255,0.12); }
.btn-brand {
  background: var(--gradient-brand);
  border: none;
  color: #fff;
  box-shadow: var(--shadow-brand);
  padding: 0.6rem 1.2rem;
}
.btn-brand:hover { transform: translateY(-1px); box-shadow: 0 16px 50px color-mix(in srgb, var(--brand) 35%, transparent); color: #fff; }
.btn-brand:active { transform: translateY(0); }
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border: none;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,0.28);
  padding: 0.6rem 1.2rem;
}
.btn-whatsapp:hover { transform: translateY(-1px); box-shadow: 0 16px 40px rgba(37,211,102,0.38); color: #fff; }
.btn-outline-dark {
  border: 1.5px solid var(--line-2);
  color: var(--ink-2);
  background: transparent;
  padding: 0.58rem 1.15rem;
}
.btn-outline-dark:hover { background: var(--soft); border-color: var(--muted-2); color: var(--ink); }
.btn-light { background: var(--soft); border: 1.5px solid var(--line); color: var(--ink-2); }
.btn-light:hover { background: var(--line); }

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════ */
.hero {
  padding: 8.5rem 0 6rem;
  background: var(--gradient-hero);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand) 10%, transparent), transparent 70%);
  pointer-events: none;
  animation: float-blob 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 8%, transparent), transparent 70%);
  pointer-events: none;
  animation: float-blob 10s ease-in-out infinite reverse;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 8%, #fff);
  border: 1px solid color-mix(in srgb, var(--brand) 20%, transparent);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.display-title {
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 900;
  max-width: 800px;
  background: linear-gradient(160deg, var(--ink) 0%, color-mix(in srgb, var(--brand) 50%, var(--ink)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead-copy {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--muted);
  max-width: 600px;
  line-height: 1.75;
}

.trust-line {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
}
.trust-line i { color: var(--accent); font-size: 1rem; }

/* ─── Hero Panel ─── */
.hero-panel {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 0.75rem;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.8deg) translateZ(0);
  transition: transform var(--transition-slow);
}
.hero-panel:hover { transform: rotate(0.5deg) translateZ(0) translateY(-4px); }
.hero-panel-inner {
  border-radius: var(--radius-lg);
  background: var(--soft-2);
  padding: 1.5rem;
  border: 1px solid rgba(226,232,240,0.5);
}
.metric {
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), border-color var(--transition);
}
.metric:hover {
  transform: translateX(3px);
  border-color: color-mix(in srgb, var(--brand) 25%, var(--line));
}
.small-muted { font-size: 0.875rem; color: var(--muted); }
.platform-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 1.3rem;
  background: color-mix(in srgb, var(--card-color, var(--brand)) 12%, #fff);
  color: var(--card-color, var(--brand));
  border: 1px solid color-mix(in srgb, var(--card-color, var(--brand)) 15%, transparent);
  transition: transform var(--transition), box-shadow var(--transition);
}

/* ─── Animated Stats Strip ─── */
.stats-strip {
  background: var(--gradient-brand);
  padding: 1.1rem 0;
  overflow: hidden;
  position: relative;
}
.stats-strip-inner {
  display: flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.stats-strip-inner span {
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.stats-strip-inner span i { color: rgba(255,255,255,0.6); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════════════ */
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-soft { background: var(--soft-2); }
.section-dark {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
}

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--ink);
}
.section-copy {
  color: var(--muted);
  max-width: 580px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ─── Section Heading Bar ─── */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.section-header .eyebrow { align-self: flex-start; }

/* ═══════════════════════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════════════════════ */
.soft-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.soft-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
  border-radius: 3px 3px 0 0;
}
.soft-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--brand) 25%, var(--line));
  box-shadow: var(--shadow-lg);
}
.soft-card:hover::before { transform: scaleX(1); }
.soft-card:hover .platform-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--card-color, var(--brand)) 25%, transparent);
}

/* ─── Platform Card ─── */
.platform-card-link { text-decoration: none; color: inherit; display: block; }
.platform-count {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 8%, #fff);
  border: 1px solid color-mix(in srgb, var(--brand) 18%, transparent);
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
}

/* ─── Service Card ─── */
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity var(--transition-slow);
  border-radius: inherit;
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::after { opacity: 0.035; }
.service-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── Price Display ─── */
.price {
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--brand);
  font-size: 1.5rem;
}
.price-label { font-size: 0.78rem; color: var(--muted); }

/* ─── Badges ─── */
.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.6rem;
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 650;
  border: 1px solid var(--line);
}
.badge-platform {
  background: color-mix(in srgb, var(--brand) 8%, #fff);
  color: var(--brand);
  border-color: color-mix(in srgb, var(--brand) 18%, transparent);
}

/* ─── Step Cards ─── */
.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
  height: 100%;
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--brand) 20%, var(--line));
}
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 900;
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
  margin-bottom: 1.25rem;
}

/* ─── FAQ Accordion ─── */
.faq-item {
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  overflow: hidden;
  margin-bottom: 0.65rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover { border-color: color-mix(in srgb, var(--brand) 25%, var(--line)) !important; }
.accordion-button {
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1.2rem 1.4rem;
  color: var(--ink);
  background: #fff;
}
.accordion-button:not(.collapsed) {
  background: color-mix(in srgb, var(--brand) 5%, #fff);
  color: var(--brand);
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; }
.accordion-body { padding: 1rem 1.4rem 1.4rem; color: var(--muted); font-size: 0.95rem; }

/* ═══════════════════════════════════════════════════════════════
   CATALOG / SERVICES PAGE
═══════════════════════════════════════════════════════════════ */
.catalog-head {
  padding: 8rem 0 3rem;
  background: linear-gradient(180deg, #f8f7ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.catalog-head::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand) 9%, transparent), transparent 70%);
  pointer-events: none;
}

/* ─── Filter Panel ─── */
.filter-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.form-label { font-size: 0.8rem; font-weight: 700; color: var(--muted); letter-spacing: 0.02em; text-transform: uppercase; margin-bottom: 0.4rem; }
.form-control, .form-select {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--soft-2);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 12%, transparent);
  background: #fff;
  outline: none;
}

/* ─── Service Table ─── */
.service-table {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.service-table table { margin: 0; width: 100%; border-collapse: collapse; }
.service-table thead th {
  padding: 1rem 1.1rem;
  background: var(--soft-2);
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}
.service-table tbody tr {
  border-bottom: 1px solid var(--line);
  transition: background var(--transition);
}
.service-table tbody tr:last-child { border-bottom: none; }
.service-table tbody tr:hover { background: color-mix(in srgb, var(--brand) 3%, #fff); }
.service-table tbody td {
  padding: 1rem 1.1rem;
  border: none;
  vertical-align: middle;
  font-size: 0.9rem;
}
.service-name { font-weight: 700; color: var(--ink); line-height: 1.4; }
.service-table .price { font-size: 1rem; }

/* ─── Table Order Button ─── */
.btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.82rem;
  border-radius: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE DETAIL PAGE
═══════════════════════════════════════════════════════════════ */
.detail-hero {
  padding: 8rem 0 3.5rem;
  background: linear-gradient(180deg, #f8f7ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.detail-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand) 10%, transparent), transparent 70%);
  pointer-events: none;
}

/* ─── Breadcrumb ─── */
.breadcrumb { gap: 0.4rem; }
.breadcrumb-item a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}
.breadcrumb-item a:hover { color: var(--brand); }
.breadcrumb-item.active { color: var(--brand); font-weight: 600; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--line-2); }

/* ─── Detail Panel ─── */
.detail-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}
.detail-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.detail-price-block .price { font-size: 2.2rem; }

/* ─── Quantity Chips ─── */
.quantity-chips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.quantity-chip {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  background: var(--soft-2);
  font-weight: 650;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.quantity-chip .chip-qty { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.quantity-chip .chip-price { font-size: 0.92rem; color: var(--ink); font-weight: 800; }
.quantity-chip:hover {
  border-color: var(--brand);
  background: color-mix(in srgb, var(--brand) 6%, #fff);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.quantity-chip:hover .chip-price { color: var(--brand); }

/* ─── Info List ─── */
.info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.info-list > div {
  padding: 1rem 1.15rem;
  background: #fff;
  transition: background var(--transition);
}
.info-list > div:hover { background: var(--soft-2); }
.info-label { font-size: 0.75rem; color: var(--muted); display: block; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.2rem; }
.info-value { font-weight: 700; color: var(--ink); font-size: 0.92rem; }

/* ─── Content Body ─── */
.content-body h2, .content-body h3 {
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 2rem;
  color: var(--ink);
}
.content-body p, .content-body li { color: var(--muted); line-height: 1.75; }
.content-body .alert {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--soft-2);
  font-size: 0.92rem;
}

/* ═══════════════════════════════════════════════════════════════
   PLATFORM PAGE
═══════════════════════════════════════════════════════════════ */
.platform-hero {
  padding: 8rem 0 3rem;
  background: linear-gradient(180deg, #f8f7ff 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  padding: 5rem 0 2.5rem;
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand) 8%, transparent), transparent 70%);
  pointer-events: none;
}
.footer h6 {
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}
.footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
  display: block;
  padding: 0.2rem 0;
}
.footer a:hover { color: #fff; }
.footer .brand-mark { background: rgba(255,255,255,0.1); color: var(--brand-light); }
.footer-brand { color: #fff; font-size: 1.1rem; font-weight: 800; letter-spacing: -0.03em; }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: inline-grid;
  place-items: center;
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.95rem;
  transition: all var(--transition) !important;
  padding: 0 !important;
}
.footer-social a:hover { background: var(--brand); color: #fff !important; transform: translateY(-2px); }
.footer-line { border-color: rgba(255,255,255,0.08) !important; }
.footer-warning-box {
  border: 1.5px solid #f59e0b;
  background: color-mix(in srgb, #f59e0b 10%, transparent);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
}

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-size: 1.45rem;
  box-shadow: 0 8px 30px rgba(37,211,102,0.38), 0 0 0 0 rgba(37,211,102,0.4);
  z-index: 1020;
  text-decoration: none;
  transition: all var(--transition);
  animation: wa-pulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  color: #fff;
  animation: none;
  box-shadow: 0 14px 40px rgba(37,211,102,0.45);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.38), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 30px rgba(37,211,102,0.38), 0 0 0 12px rgba(37,211,102,0); }
}

/* ═══════════════════════════════════════════════════════════════
   ORDER MODAL
═══════════════════════════════════════════════════════════════ */
.modal-content {
  border: none !important;
  border-radius: var(--radius-xl) !important;
  box-shadow: 0 40px 100px rgba(15,23,42,0.2) !important;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 3.5rem);
  display: flex;
  flex-direction: column;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
  flex: 1 1 auto;
}
.modal-header { background: var(--soft-2); border-bottom: 1px solid var(--line) !important; flex-shrink: 0; }
.modal-footer { background: var(--soft-2); border-top: 1px solid var(--line) !important; flex-shrink: 0; }
.order-summary {
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 4%, #fff), color-mix(in srgb, var(--accent) 4%, #fff));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}
.form-check-input:checked { background-color: var(--brand); border-color: var(--brand); }

/* ═══════════════════════════════════════════════════════════════
   MISC UI
═══════════════════════════════════════════════════════════════ */
.empty-state {
  padding: 4.5rem 1rem;
  text-align: center;
  border: 2px dashed var(--line);
  border-radius: var(--radius-lg);
  color: var(--muted);
}
.empty-state i { color: var(--line-2); }

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(248,250,252,0.75);
  backdrop-filter: blur(4px);
  display: none;
  z-index: 2000;
  place-items: center;
}
.loading-overlay.active { display: grid; }
.loading-overlay .spinner-border { width: 2.5rem; height: 2.5rem; border-width: 3px; color: var(--brand) !important; }

/* ─── Pagination ─── */
.pagination {
  gap: 0.65rem;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination .page-item .page-link,
.pagination li a,
.pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none !important;
  border-radius: 50% !important;
  text-decoration: none !important;
  color: var(--ink-2) !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition);
  background: transparent !important;
  box-shadow: none !important;
}
.pagination .page-link:hover,
.pagination li a:hover {
  color: var(--brand) !important;
  background: color-mix(in srgb, var(--brand) 10%, transparent) !important;
}
.pagination .page-item.active .page-link,
.pagination li.active a,
.pagination li.active span {
  background: var(--brand) !important;
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--brand) 22%, transparent) !important;
}
.pagination .page-item.disabled .page-link,
.pagination li.disabled a {
  color: var(--muted-2) !important;
  opacity: 0.4;
  pointer-events: none;
}

/* ─── Trust Bar ─── */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
}
.trust-item i { color: var(--accent); }

/* ─── CTA Banner ─── */
.cta-banner {
  background: var(--gradient-brand);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -70px; left: -50px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

/* ─── Scroll Reveal Animations ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(.4,0,.2,1), transform 0.55s cubic-bezier(.4,0,.2,1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .hero-panel { transform: none; }
}

@media (max-width: 767.98px) {
  .hero { padding-top: 7rem; padding-bottom: 4rem; }
  .display-title { font-size: 2.4rem; }
  .section { padding: 3.5rem 0; }
  .section-title { font-size: 1.7rem; }
  .hero::before, .hero::after { display: none; }

  /* Service table → card layout */
  .service-table { border: none; background: transparent; box-shadow: none; overflow: visible; }
  .service-table table,
  .service-table tbody,
  .service-table tr,
  .service-table td { display: block; width: 100%; }
  .service-table thead { display: none; }
  .service-table tbody tr {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: #fff;
    box-shadow: var(--shadow-xs);
  }
  .service-table tbody tr:hover { background: #fff; }
  .service-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: right;
    padding: 0.5rem 0.55rem;
    border: none;
    font-size: 0.88rem;
  }
  .service-table tbody td::before {
    content: attr(data-label);
    font-size: 0.75rem;
    color: var(--muted);
    text-align: left;
    flex: 0 0 38%;
    font-weight: 600;
  }
  .service-table tbody td.service-cell { display: block; text-align: left; padding: 0.7rem 0.55rem; }
  .service-table tbody td.service-cell::before { display: none; }
  .service-table tbody td.order-cell { display: block; padding: 0.5rem 0.55rem; }
  .service-table tbody td.order-cell::before { display: none; }
  .service-table tbody td.order-cell .btn { width: 100%; }

  .info-list { grid-template-columns: 1fr; }
  .quantity-chips-grid { grid-template-columns: 1fr 1fr; }

  .whatsapp-float { width: 50px; height: 50px; right: 16px; bottom: 16px; font-size: 1.25rem; }
  .stats-strip { display: none; }
  .cta-banner { padding: 2.5rem 1.5rem; }
}

@media (max-width: 480px) {
  .display-title { font-size: 2rem; }
  .quantity-chips-grid { grid-template-columns: 1fr; }
}
