/* =====================================================
   SPARRKLE LANDING PAGE — PREMIUM CSS
   ===================================================== */

/* ---------- CSS VARIABLES (overridable by Admin) ---------- */
:root {
  --primary: #f97316;
  --primary-dark: #ea580c;
  --secondary: #fb923c;
  --bg: #fafafa;
  --card-bg: #ffffff;
  --hero-grad-1: #fff7ed;
  --hero-grad-2: #ffedd5;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
  --shadow-glow: 0 0 40px rgba(249,115,22,.25);
  --radius: 16px;
  --font: 'Poppins', sans-serif;
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body, input, select, textarea, button, a, span, p, div, h1, h2, h3, h4, h5, h6 {
  font-family: var(--font) !important;
}
body {
  background: var(--bg);
  color: var(--text-dark);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }

/* =====================================================
   ADMIN PANEL
   ===================================================== */
#admin-toggle-btn {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9999;
  background: rgba(17,24,39,.85);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  letter-spacing: .5px;
}
#admin-toggle-btn:hover {
  background: var(--primary);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.admin-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  animation: fadeIn .2s ease;
}
.admin-overlay.hidden { display: none; }

.admin-panel {
  width: 420px;
  max-width: 95vw;
  height: 100vh;
  background: #111827;
  border-left: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: slideIn .25s cubic-bezier(.4,0,.2,1);
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.admin-logo {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .5px;
}
.admin-close {
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.admin-close:hover { background: #ef4444; }

.admin-tabs {
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-wrap: wrap;
  flex-shrink: 0;
}
.admin-tab {
  padding: 6px 12px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  font-size: 11.5px;
  font-family: var(--font);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.admin-tab:hover { color: #fff; border-color: rgba(255,255,255,.3); }
.admin-tab.active {
  background: var(--primary);
  border-color: var(--primary-dark);
  color: #fff;
}

.admin-tab-content {
  display: none;
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.15) transparent;
}
.admin-tab-content.active { display: block; }
.admin-tab-content::-webkit-scrollbar { width: 5px; }
.admin-tab-content::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 4px; }

.admin-section-title {
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.admin-note {
  color: rgba(255,255,255,.45);
  font-size: 12px;
  margin-bottom: 14px;
  line-height: 1.5;
}
.admin-label {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 14px;
}
.admin-label:first-of-type { margin-top: 0; }
.admin-input {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 10px 12px;
  color: #fff;
  font-family: var(--font);
  font-size: 13px;
  transition: var(--transition);
  outline: none;
}
.admin-input:focus {
  border-color: var(--primary);
  background: rgba(249,115,22,.08);
  box-shadow: 0 0 0 3px rgba(249,115,22,.15);
}
.admin-textarea { resize: vertical; min-height: 70px; }

.color-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.color-picker {
  width: 44px; height: 44px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 2px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}
.color-hex { flex: 1; }

/* Admin Addon / Badge / Testimonial editors */
.addon-editor-item, .badge-editor-item, .testimonial-editor-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 12px;
  position: relative;
}
.addon-editor-item h4, .badge-editor-item h4, .testimonial-editor-item h4 {
  color: rgba(255,255,255,.8);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}
.editor-delete-btn {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(239,68,68,.2);
  border: 1px solid rgba(239,68,68,.4);
  color: #ef4444;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 11px;
  cursor: pointer;
  transition: var(--transition);
}
.editor-delete-btn:hover { background: rgba(239,68,68,.4); }

.admin-btn-secondary {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px dashed rgba(255,255,255,.2);
  border-radius: 10px;
  color: rgba(255,255,255,.65);
  padding: 10px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
}
.admin-btn-secondary:hover {
  background: rgba(249,115,22,.1);
  border-color: var(--primary);
  color: var(--primary);
}

.admin-footer {
  flex-shrink: 0;
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  background: rgba(0,0,0,.3);
}
.admin-btn-save {
  flex: 1;
  min-width: 120px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  border-radius: 10px;
  color: #fff;
  padding: 12px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(249,115,22,.35);
}
.admin-btn-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,.45);
}
.admin-btn-export, .admin-btn-import {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  color: rgba(255,255,255,.75);
  padding: 10px 14px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.admin-btn-export:hover, .admin-btn-import:hover {
  background: rgba(255,255,255,.14);
  color: #fff;
}

/* =====================================================
   LANDING PAGE LAYOUT
   ===================================================== */
#landing-page { overflow-x: hidden; }

/* ---------- HERO SECTION ---------- */
.hero-section {
  background: linear-gradient(160deg, var(--hero-grad-1) 0%, var(--hero-grad-2) 100%);
  min-height: 100vh;
  padding: 80px 20px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(249,115,22,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(251,146,60,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-container {
  max-width: 520px;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Brand Bar */
.brand-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.brand-logo {
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}
.brand-tagline {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  padding: 3px 10px;
  background: rgba(249,115,22,.1);
  border-radius: 20px;
  border: 1px solid rgba(249,115,22,.2);
}

/* Hero Badge */
.hero-badge {
  display: block;
  width: fit-content;
  margin: 0 auto 22px auto;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid #fcd34d;
  box-shadow: var(--shadow-sm);
  animation: pulse-badge 2.5s infinite;
}
@keyframes pulse-badge {
  0%,100% { box-shadow: 0 0 0 0 rgba(249,115,22,.3); }
  50%      { box-shadow: 0 0 0 8px rgba(249,115,22,.0); }
}

/* Hero Heading */
.hero-heading {
  font-size: clamp(26px, 5.5vw, 40px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.22;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  text-align: center;
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark), #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 32px;
  text-align: center;
  line-height: 1.6;
}
.hero-sub strong { color: var(--primary-dark); }

/* ---------- FORM CARD ---------- */
.form-card {
  background: var(--card-bg);
  border-radius: calc(var(--radius) * 1.5);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(249,115,22,.1);
}

.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.optional-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-light);
  background: rgba(156, 163, 175, 0.1);
  border: 1px solid rgba(156, 163, 175, 0.2);
  border-radius: 50px;
  padding: 1px 7px;
  margin-left: 6px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.input-wrap {
  display: flex;
  align-items: center;
  background: #f9fafb;
  border: 2px solid var(--border);
  border-radius: calc(var(--radius) * 0.75);
  transition: var(--transition);
  overflow: hidden;
}
.input-wrap:focus-within {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(249,115,22,.12);
}
.input-icon {
  padding: 0 12px;
  font-size: 16px;
  flex-shrink: 0;
}
.form-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 14px 14px 0;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  width: 100%;
}
.form-input::placeholder { color: #9ca3af; }

.phone-wrap { }
.phone-prefix {
  padding: 0 14px;
  background: rgba(249,115,22,.08);
  border-right: 2px solid var(--border);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
  align-self: stretch;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 52px;
  justify-content: center;
  transition: var(--transition);
}
.phone-input { padding-left: 14px !important; }

/* ---------- BASE PLAN CARD ---------- */
.base-plan-card {
  background: linear-gradient(135deg, #fff7ed, #fff);
  border: 2px solid rgba(249,115,22,.3);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.base-plan-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(249,115,22,.12), transparent);
  pointer-events: none;
}
.base-plan-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.base-plan-badge {
  font-size: 10px;
  font-weight: 800;
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.base-plan-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.base-plan-desc {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.55;
}
.base-plan-price {
  text-align: right;
  flex-shrink: 0;
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: flex-start;
}
.base-currency {
  font-size: 16px;
  margin-top: 4px;
  font-weight: 700;
}
.base-plan-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.feature-chip {
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(249,115,22,.1);
  border: 1px solid rgba(249,115,22,.2);
  color: #c2410c;
  border-radius: 20px;
}

/* ---------- ADD-ONS SECTION ---------- */
.addons-section { margin-bottom: 22px; }
.addons-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.addons-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}
.addons-sub {
  font-size: 12px;
  color: var(--text-light);
}

.addon-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.addon-card {
  background: #f9fafb;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.addon-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249,115,22,.0), rgba(249,115,22,.0));
  transition: var(--transition);
}
.addon-card:hover {
  border-color: rgba(249,115,22,.4);
  background: rgba(249,115,22,.03);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.addon-card.selected {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(249,115,22,.08), rgba(251,146,60,.04));
  box-shadow: 0 0 0 4px rgba(249,115,22,.1);
}
.addon-card.selected::before {
  background: linear-gradient(135deg, rgba(249,115,22,.04), transparent);
}

.addon-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: var(--transition);
  margin-top: 2px;
}
.addon-card.selected .addon-check {
  background: var(--primary);
  border-color: var(--primary-dark);
  color: #fff;
}

.addon-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(249,115,22,.3);
  transition: var(--transition);
}
.addon-card.selected .addon-icon-wrap { box-shadow: 0 6px 16px rgba(249,115,22,.5); }

.addon-content { flex: 1; min-width: 0; }
.addon-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}
.addon-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 8px;
}
.addon-features-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.addon-chip {
  font-size: 10.5px;
  padding: 2px 8px;
  background: rgba(249,115,22,.1);
  color: #c2410c;
  border-radius: 10px;
  font-weight: 600;
}
.addon-price-tag {
  flex-shrink: 0;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.addon-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}
.addon-price-label {
  font-size: 10px;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 2px;
}

/* ---------- SELECT DROPDOWN ---------- */
.select-wrap { position: relative; }
.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px !important;
  background: transparent;
  color: var(--text-dark);
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 14px;
  padding: 14px 40px 14px 0;
}
.form-select option { color: var(--text-dark); background: #fff; }
.form-select option:first-child { color: #9ca3af; }
.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 14px;
  pointer-events: none;
  transition: var(--transition);
}
.input-wrap:focus-within .select-arrow { color: var(--primary); }

/* ---------- ADDRESS TEXTAREA ---------- */
.textarea-wrap {
  align-items: flex-start;
  padding-top: 4px;
}
.textarea-icon {
  margin-top: 14px;
}
.form-textarea {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 14px 14px 0;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  resize: vertical;
  min-height: 80px;
  line-height: 1.55;
}
.form-textarea::placeholder { color: #9ca3af; }

/* ---------- LOGO / BUSINESS CARD UPLOAD ---------- */
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: #f9fafb;
  position: relative;
  overflow: hidden;
}
.upload-zone:hover,
.upload-zone.drag-over {
  border-color: var(--primary);
  background: rgba(249,115,22,.04);
  box-shadow: 0 0 0 4px rgba(249,115,22,.08);
}
.upload-zone.drag-over { border-style: solid; }
.upload-zone.has-file {
  border-color: #16a34a;
  background: rgba(22,163,74,.04);
}
.upload-content { pointer-events: none; }
.upload-icon {
  font-size: 36px;
  margin-bottom: 10px;
  display: block;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.upload-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.upload-hint {
  font-size: 12px;
  color: var(--text-light);
}
.upload-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.upload-preview img {
  max-height: 120px;
  max-width: 100%;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(22,163,74,.3);
}
.upload-filename {
  font-size: 12px;
  font-weight: 600;
  color: #16a34a;
  word-break: break-all;
}
.upload-remove-btn {
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.3);
  color: #dc2626;
  border-radius: 8px;
  padding: 5px 14px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.upload-remove-btn:hover {
  background: rgba(239,68,68,.2);
  border-color: #dc2626;
}

/* ---------- PRICE SUMMARY ---------- */
.price-summary {
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 20px;
  overflow: hidden;
}
.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-mid);
  padding: 5px 0;
  border-bottom: 1px dashed var(--border);
}
.price-row:last-child { border-bottom: none; }
.price-addon-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light);
  padding: 5px 0;
  border-bottom: 1px dashed var(--border);
  animation: slideDown .2s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.price-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-dark);
  padding-top: 10px;
  margin-top: 4px;
  border-top: 2px solid rgba(249,115,22,.25);
}

/* ---------- CTA BUTTON ---------- */
.cta-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  border-radius: calc(var(--radius) * 0.875);
  padding: 18px 24px;
  color: #fff;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(249,115,22,.4);
  position: relative;
  overflow: hidden;
  letter-spacing: .3px;
}
.cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,.12), transparent);
  pointer-events: none;
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(249,115,22,.55);
}
.cta-btn:active { transform: translateY(-1px); }
.cta-btn:disabled {
  background: #d1d5db;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.cta-icon { font-size: 20px; }
.cta-price {
  background: rgba(255,255,255,.2);
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 15px;
}
.cta-arrow { font-size: 18px; }

.cta-subtext {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 10px;
}

/* Inline trust below CTA */
.inline-trust {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.inline-badge {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-mid);
  padding: 5px 12px;
  background: #f3f4f6;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* =====================================================
   SECTION LAYOUT
   ===================================================== */
.section {
  padding: 70px 20px;
}
.section-container {
  max-width: 640px;
  margin: 0 auto;
}
.section-heading {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: -.3px;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-section {
  background: linear-gradient(160deg, #fafafa, #f9fafb);
}
.testimonials-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 24px;
}
.testimonials-slider-container {
  overflow: hidden;
  width: 100%;
}
.testimonials-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.testimonial-card {
  width: 100%;
  flex-shrink: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  animation: fadeIn .4s ease;
  box-sizing: border-box;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  z-index: 10;
  user-select: none;
}
.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary-dark);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.slider-btn:active {
  transform: translateY(-50%) scale(0.92);
}
.prev-btn {
  left: 0;
}
.next-btn {
  right: 0;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot:hover {
  background: var(--primary);
}
.slider-dot.active {
  background: var(--primary);
  width: 20px;
  border-radius: 4px;
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 15px;
  margin-bottom: 10px;
}
.testimonial-text {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 14px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}
.testimonial-business {
  font-size: 11.5px;
  color: var(--text-light);
}

/* =====================================================
   TRUST SECTION
   ===================================================== */
.trust-section {
  background: linear-gradient(160deg, var(--hero-grad-1), var(--hero-grad-2));
}
.trust-counter-box {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.trust-number {
  font-size: clamp(52px, 10vw, 80px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 12px rgba(249,115,22,.25));
}
.trust-label {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-mid);
}

.guarantee-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(249,115,22,.15);
  margin-bottom: 32px;
}
.guarantee-icon {
  font-size: 44px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.1));
}
.guarantee-content h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.guarantee-content p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

.feature-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.feature-badge-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-badge-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(249,115,22,.3);
}
.feature-badge-icon { font-size: 28px; margin-bottom: 8px; }
.feature-badge-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.feature-badge-desc {
  font-size: 11.5px;
  color: var(--text-light);
  line-height: 1.5;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: #111827;
  color: rgba(255,255,255,.65);
  padding: 36px 20px;
  text-align: center;
}
.footer-brand {
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.footer-text {
  font-size: 12.5px;
  line-height: 1.6;
}

/* =====================================================
   TOAST
   ===================================================== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  background: #111827;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.15);
  animation: toastIn .3s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.toast.hidden { display: none; }
.toast.success { background: #16a34a; border-color: #15803d; }
.toast.error   { background: #dc2626; border-color: #b91c1c; }
.toast.info    { background: var(--primary); border-color: var(--primary-dark); }
@keyframes toastIn {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

/* ---------- POST SLIDER (TOP SIDE MARQUEE) ---------- */
.post-marquee-wrapper {
  margin-bottom: 24px;
  text-align: center;
}
.marquee-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.post-marquee-container {
  overflow: hidden;
  width: 100%;
  display: flex;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: 16px;
  padding: 16px 0;
  box-shadow: var(--shadow-sm);
}
.post-marquee-container::before,
.post-marquee-container::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}
.post-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--hero-grad-1) 0%, transparent 100%);
}
.post-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--hero-grad-1) 0%, transparent 100%);
}
.post-marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: scroll-marquee 25s linear infinite;
}
.post-marquee-track:hover {
  animation-play-state: paused;
}
.marquee-item {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.marquee-item:hover {
  transform: scale(1.08);
  border-color: var(--primary);
}
.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ---------- VIDEO DEMO SECTION ---------- */
.video-demo-section {
  background: #fff;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}
.section-subheading {
  text-align: center;
  font-size: 15px;
  color: var(--text-mid);
  margin-top: -10px;
  margin-bottom: 30px;
}
.video-slider-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.active-video-player {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 9/16;
  background: #000;
  border-radius: calc(var(--radius) * 1.25);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 4px solid #111827;
}
.active-video-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.active-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 5;
}
.active-video-overlay:hover {
  background: rgba(0, 0, 0, 0.15);
}
.active-video-overlay.playing {
  opacity: 0;
  pointer-events: none;
}
.active-video-overlay .play-icon {
  width: 68px;
  height: 68px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  padding-left: 5px;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
  transition: var(--transition);
  animation: pulse-play 2s infinite;
}
.active-video-overlay:hover .play-icon {
  transform: scale(1.1);
  background: var(--primary-dark);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.65);
}
@keyframes pulse-play {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.5); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

.video-thumbnails-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}
.video-thumb-card {
  background: #f9fafb;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--transition);
}
.video-thumb-card:hover {
  border-color: rgba(249, 115, 22, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.video-thumb-card.active {
  border-color: var(--primary);
  background: rgba(249, 115, 22, 0.04);
}
.video-thumb-preview {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: calc(var(--radius) * 0.5);
  overflow: hidden;
  position: relative;
  background: #000;
}
.video-thumb-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: var(--transition);
}
.video-thumb-card:hover .video-thumb-preview img {
  opacity: 1;
  transform: scale(1.04);
}
.video-thumb-play-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  padding-left: 2px;
}
.video-thumb-card.active .video-thumb-play-badge {
  background: var(--primary);
}
.video-thumb-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  padding: 0 4px 4px;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 520px) {
  .hero-section { padding: 90px 14px 50px; }
  .form-card { padding: 20px 16px; }
  .addon-card { flex-wrap: wrap; }
  .addon-price-tag { width: 100%; flex-direction: row; align-items: center; justify-content: flex-end; gap: 6px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .feature-badges-grid { grid-template-columns: repeat(2, 1fr); }
  .guarantee-card { flex-direction: column; align-items: center; text-align: center; }
  .admin-panel { width: 100%; }
}

/* =====================================================
   MULTI-STEP FORM WIZARD
   ===================================================== */
.wizard-progress {
  margin-bottom: 26px;
}
.wizard-step-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: default;
  position: relative;
}
.ws-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  border: 2px solid #e5e7eb;
  position: relative;
  z-index: 1;
}
.ws-label {
  font-size: 10.5px;
  font-weight: 600;
  color: #9ca3af;
  transition: color 0.3s;
  white-space: nowrap;
}
.wizard-step.active .ws-num {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(249,115,22,.18), 0 2px 8px rgba(249,115,22,.35);
  transform: scale(1.12);
}
.wizard-step.active .ws-label { color: var(--primary-dark); font-weight: 700; }
.wizard-step.done .ws-num {
  background: #16a34a;
  color: #fff;
  border-color: #16a34a;
}
.wizard-step.done .ws-label { color: #16a34a; }
.wizard-step.done .ws-num::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.wizard-step.done .ws-num { font-size: 0; }

.wizard-connector {
  flex: 1;
  height: 3px;
  background: #e5e7eb;
  margin: 0 4px;
  margin-bottom: 20px;
  border-radius: 2px;
  min-width: 20px;
  max-width: 60px;
  transition: background 0.4s;
}
.wizard-connector.done { background: #16a34a; }

/* Pane show/hide */
.wizard-pane {
  display: none;
  animation: wizardSlide .3s ease;
}
.wizard-pane.active { display: block; }
@keyframes wizardSlide {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Navigation buttons */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
  gap: 12px;
}
.wizard-btn-next {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 26px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 14px rgba(249,115,22,.35);
  letter-spacing: .3px;
}
.wizard-btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,.48);
}
.wizard-btn-back {
  background: transparent;
  color: var(--text-mid);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 11px 22px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s;
}
.wizard-btn-back:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(249,115,22,.05);
}

/* Order Review Card (Step 4) */
.order-review-card {
  background: linear-gradient(135deg, #f0fdf4, #fff);
  border: 2px solid #bbf7d0;
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 18px;
}
.order-review-title {
  font-size: 13px;
  font-weight: 800;
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 12px;
}
.order-review-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(187,247,208,.6);
  font-size: 13.5px;
}
.order-review-line:last-child { border-bottom: none; }
.or-key { color: var(--text-light); font-weight: 500; }
.or-val { color: var(--text-dark); font-weight: 700; }

/* =====================================================
   STICKY BOTTOM TIMER BANNER
   ===================================================== */
.sticky-timer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8888;
  background: linear-gradient(90deg, #111827, #1e1b4b, #111827);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 20px 10px 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.35);
  border-top: 2px solid rgba(249,115,22,.4);
  flex-wrap: wrap;
  animation: slideUpBar .5s ease .8s both;
}
@keyframes slideUpBar {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}
.stb-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.stb-fire { font-size: 20px; animation: bounce-fire .8s infinite alternate; }
@keyframes bounce-fire {
  from { transform: scale(1); }
  to   { transform: scale(1.2); }
}
.stb-text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
}
.stb-countdown {
  display: flex;
  align-items: center;
  gap: 3px;
}
.stb-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 4px 8px;
  min-width: 36px;
}
.stb-unit span {
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
  letter-spacing: -1px;
}
.stb-unit small {
  font-size: 9px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.stb-colon {
  font-size: 18px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  padding-bottom: 8px;
}

.stb-mid {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stb-price-old {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  text-decoration: line-through;
}
.stb-price-new {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}
.stb-saving {
  background: #16a34a;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
  animation: pulse-badge 2s infinite;
}

.stb-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stb-wa {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.22s;
}
.stb-wa:hover { background: #1da851; transform: translateY(-1px); }
.stb-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.22s;
  box-shadow: 0 4px 12px rgba(249,115,22,.4);
  white-space: nowrap;
}
.stb-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(249,115,22,.55); }
.stb-close {
  background: rgba(255,255,255,.1);
  border: none;
  color: rgba(255,255,255,.5);
  border-radius: 6px;
  width: 26px; height: 26px;
  font-size: 12px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.stb-close:hover { background: rgba(255,255,255,.2); color: #fff; }

/* =====================================================
   URGENCY POPUP
   ===================================================== */
.urgency-popup {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
}
.urgency-popup.hidden { display: none; }
.urgency-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.urgency-modal {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 28px;
  padding: 40px 36px 30px;
  max-width: 420px;
  width: calc(100% - 32px);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  animation: popIn .35s cubic-bezier(.34,1.56,.64,1);
  border-top: 6px solid var(--primary);
}
@keyframes popIn {
  from { transform: scale(.7); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}
.urgency-close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(0,0,0,.07);
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: #374151;
}
.urgency-close:hover { background: #fee2e2; color: #ef4444; }
.urgency-emoji {
  font-size: 48px;
  margin-bottom: 10px;
  animation: shake 0.8s ease 0.4s;
}
@keyframes shake {
  0%,100% { transform: rotate(0); }
  20%  { transform: rotate(-12deg); }
  40%  { transform: rotate(10deg); }
  60%  { transform: rotate(-8deg); }
  80%  { transform: rotate(6deg); }
}
.urgency-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 10px;
}
.urgency-sub {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 20px;
}
.urgency-sub strong { color: #ef4444; }

.urgency-timer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 18px;
}
.utr-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #1e1b4b;
  border-radius: 10px;
  padding: 10px 16px;
  min-width: 68px;
}
.utr-unit span {
  font-size: 30px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.utr-unit small {
  font-size: 10px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 3px;
}
.utr-sep {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 12px;
}

.urgency-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}
.up-old {
  font-size: 16px;
  color: #9ca3af;
  text-decoration: line-through;
}
.up-new {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary-dark);
}
.urgency-cta {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.22s;
  box-shadow: 0 6px 20px rgba(249,115,22,.4);
  letter-spacing: .3px;
  margin-bottom: 12px;
}
.urgency-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(249,115,22,.55); }
.urgency-dismiss {
  font-size: 12px;
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: underline;
}
.urgency-dismiss:hover { color: var(--text-mid); }

/* =====================================================
   SALES PROOF NOTIFICATIONS (Bottom-Left Bubble)
   ===================================================== */
.sales-notif {
  position: fixed;
  bottom: 80px;
  left: 20px;
  z-index: 8000;
  background: #fff;
  border-radius: 14px;
  padding: 12px 40px 12px 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  min-width: 250px;
  border-left: 4px solid var(--primary);
  transform: translateX(-350px);
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), opacity 0.4s;
  opacity: 0;
}
.sales-notif.hidden { display: none; }
.sales-notif.sn-show {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.sales-notif.sn-hide {
  transform: translateX(-350px);
  opacity: 0;
}
.sn-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.sn-body {
  flex: 1;
  min-width: 0;
}
.sn-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sn-action {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.4;
  margin-top: 1px;
}
.sn-time {
  font-size: 10.5px;
  color: var(--text-light);
  margin-top: 3px;
}
.sn-close {
  position: absolute;
  top: 8px; right: 8px;
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 12px;
  cursor: pointer;
  line-height: 1;
  padding: 2px;
  border-radius: 4px;
  transition: var(--transition);
}
.sn-close:hover { color: #ef4444; background: #fee2e2; }

/* Make body have bottom padding so sticky bar doesn't overlap content */
body { padding-bottom: 72px; }

/* ---------- LANGUAGE SWITCHER STYLES ---------- */
.language-switcher-container {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10000; /* Ensure it floats above overlays */
}
.lang-selector-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.lang-selector-wrap:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}
.lang-icon {
  font-size: 16px;
}
#lang-switcher {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  outline: none;
  padding-right: 4px;
}

/* Input error validation highlighting styles */
.input-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25) !important;
}
.upload-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25) !important;
  background: rgba(254, 226, 226, 0.15) !important;
}


