/* ============================================
   MarkeyFix — Premium Landing Page Styles
   ============================================ */

/* --- Base & Utilities --- */
.gradient-text {
  background: linear-gradient(135deg, #d4a017 0%, #b8860b 50%, #e5c158 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Lucide icon rendering */
[data-lucide],
.lucide {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

svg.lucide {
  stroke: currentColor;
}

/* --- Spacing System --- */
.section-padding {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.section-padding-sm {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-padding-sm {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.hero-section {
  padding-top: 6rem;
  min-height: auto;
}

@media (min-width: 768px) {
  .hero-section {
    padding-top: 7rem;
  }
}

/* --- Glassmorphism --- */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.glass-nav {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.glass-nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  margin-top: 0;
  border-radius: 0 0 1rem 1rem;
}

/* Mobile menu — do NOT use global .hidden override (breaks Tailwind) */
.mobile-menu {
  display: none;
  transform-origin: top;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-menu.is-open {
  display: block;
  animation: menuSlide 0.25s ease forwards;
}

@media (min-width: 1024px) {
  .mobile-menu,
  .nav-mobile-btn {
    display: none !important;
  }

  .nav-desktop {
    display: flex !important;
  }
}

@keyframes menuSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.is-hidden {
  display: none !important;
}

#mobile-menu-btn {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#mobile-menu-btn svg {
  position: absolute;
}

/* --- Buttons --- */
.btn-primary {
  background: linear-gradient(135deg, #ffc107, #ff6b00);
  color: #111827 !important;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 24, 39, 0.1);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #111827;
  color: white;
  border-color: #111827;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.12);
}

/* --- Hero Background Blobs --- */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(212, 160, 23, 0.14);
  top: -10%;
  right: -5%;
  animation: blob-float 8s ease-in-out infinite;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: rgba(184, 134, 11, 0.12);
  bottom: 10%;
  left: -10%;
  animation: blob-float 10s ease-in-out infinite reverse;
}

.hero-blob-3 {
  width: 300px;
  height: 300px;
  background: rgba(229, 193, 88, 0.1);
  top: 40%;
  left: 30%;
  animation: blob-float 12s ease-in-out infinite;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -15px); }
}

/* --- Floating Elements --- */
.floating-element {
  position: absolute;
  z-index: 10;
  animation: float 6s ease-in-out infinite;
}

.float-1 {
  top: 25%;
  right: 8%;
  animation-delay: 0s;
}

.float-2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.float-3 {
  bottom: 20%;
  left: 5%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --- Dashboard Glow --- */
.dashboard-glow {
  position: absolute;
  inset: -16px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.18), rgba(184, 134, 11, 0.12));
  border-radius: 1.5rem;
  filter: blur(32px);
  z-index: -1;
  opacity: 0.7;
}

/* --- Chart Animation --- */
.chart-bar {
  animation: grow-bar 1.5s ease-out forwards;
  transform-origin: bottom;
  transform: scaleY(0);
}

.chart-bar:nth-child(1) { animation-delay: 0.1s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.3s; }
.chart-bar:nth-child(4) { animation-delay: 0.4s; }
.chart-bar:nth-child(5) { animation-delay: 0.5s; }
.chart-bar:nth-child(6) { animation-delay: 0.6s; }
.chart-bar:nth-child(7) { animation-delay: 0.7s; }
.chart-bar:nth-child(8) { animation-delay: 0.8s; }

@keyframes grow-bar {
  to { transform: scaleY(1); }
}

.stat-mini {
  transition: transform 0.3s ease;
}

.stat-mini:hover {
  transform: translateY(-2px);
}

/* --- Logo Marquee --- */
.logo-marquee {
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
  animation: marquee 30s linear infinite;
  width: max-content;
}

.logo-item {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.logo-item:hover {
  opacity: 0.8;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Service Cards --- */
.service-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.25rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.05), rgba(184, 134, 11, 0.04));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212, 160, 23, 0.12);
  border-color: rgba(212, 160, 23, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.service-card:hover .icon-box {
  transform: scale(1.05);
}

/* --- Feature Blocks --- */
.feature-block {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-block:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 160, 23, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.12);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(212, 160, 23, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.feature-block:hover .feature-icon {
  background: rgba(212, 160, 23, 0.24);
  transform: scale(1.05);
}

/* --- Solution Cards --- */
.solution-card {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.25rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 1.25rem;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(212, 160, 23, 0.35), rgba(184, 134, 11, 0.28), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212, 160, 23, 0.14);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.solution-card:hover .solution-icon {
  transform: scale(1.08);
}

/* --- CRM Solution Cards --- */
.crm-section-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.crm-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(212, 160, 23, 0.3),
    rgba(184, 134, 11, 0.2),
    rgba(212, 160, 23, 0.1)
  );
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.crm-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.crm-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(
    135deg,
    rgba(212, 160, 23, 0.5),
    rgba(184, 134, 11, 0.34),
    rgba(229, 193, 88, 0.22)
  );
  box-shadow:
    0 16px 40px rgba(212, 160, 23, 0.14),
    0 4px 16px rgba(17, 24, 39, 0.04);
}

.crm-card:hover::after {
  opacity: 1;
}

.crm-card-inner {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: calc(1.25rem - 1px);
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
}

.crm-card:hover .crm-card-inner {
  background: rgba(255, 255, 255, 0.92);
}

.crm-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.crm-card:hover .crm-icon {
  transform: scale(1.06);
}

.crm-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.crm-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.4;
  transition: color 0.3s ease, transform 0.3s ease;
}

.crm-card:hover .crm-features li {
  color: #374151;
}

.crm-features li:nth-child(1) { transition-delay: 0ms; }
.crm-features li:nth-child(2) { transition-delay: 30ms; }
.crm-features li:nth-child(3) { transition-delay: 60ms; }
.crm-features li:nth-child(4) { transition-delay: 90ms; }

.crm-actions {
  display: flex;
  gap: 0.625rem;
  margin-top: auto;
}

.crm-btn-demo {
  flex: 1;
  text-align: center;
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #111827 !important;
  background: linear-gradient(135deg, #ffc107, #ff6b00);
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(212, 160, 23, 0.28);
  font-family: inherit;
}

.crm-btn-demo:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(212, 160, 23, 0.4);
}

.crm-btn-features {
  flex: 1;
  text-align: center;
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #111827;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.crm-btn-features:hover {
  background: #111827;
  color: white;
  border-color: #111827;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.12);
}

/* --- Testimonials --- */
.testimonial-track {
  position: relative;
  min-height: 280px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 160, 23, 0.14);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(212, 160, 23, 0.08);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4a017, #b8860b, #e5c158);
}

.dot.active {
  width: 2rem;
  border-radius: 9999px;
}

/* --- Pricing Cards --- */
.pricing-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.pricing-featured {
  border: 2px solid rgba(212, 160, 23, 0.35);
  box-shadow: 0 12px 40px rgba(212, 160, 23, 0.14);
  transform: scale(1.03);
  z-index: 1;
}

.pricing-featured:hover {
  transform: scale(1.03) translateY(-3px);
  box-shadow: 0 16px 48px rgba(212, 160, 23, 0.2);
}

@media (max-width: 768px) {
  .pricing-featured {
    transform: scale(1);
  }
  .pricing-featured:hover {
    transform: translateY(-3px);
  }
}

/* --- Demo Modal --- */
.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.demo-modal.active {
  opacity: 1;
  visibility: visible;
}

.demo-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.demo-modal-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  overflow: visible;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.3s ease;
}

.demo-modal.active .demo-modal-container {
  transform: translateY(0) scale(1);
}

.demo-modal-panel {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
  padding: 1rem 1.125rem 1.125rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.demo-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: rgba(17, 24, 39, 0.05);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.2s ease;
  z-index: 2;
}

.demo-modal-close:hover {
  background: rgba(212, 160, 23, 0.14);
  color: #b8860b;
}

.demo-modal-header {
  margin-bottom: 0.75rem;
  padding-right: 2rem;
}

.demo-modal-header-text {
  padding-left: 0.125rem;
}

/* Compact 2-column form grid — no scroll needed */
.demo-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 0.625rem;
  row-gap: 0.5rem;
}

.demo-form .form-group-full {
  grid-column: 1 / -1;
}

.demo-form .form-group {
  margin-bottom: 0;
  min-width: 0;
}

.demo-form label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  padding: 0.4375rem 0.625rem;
  font-size: 0.8125rem;
  font-family: inherit;
  color: #111827;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 0.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  line-height: 1.35;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  border-color: rgba(212, 160, 23, 0.45);
  box-shadow: 0 0 0 2px rgba(212, 160, 23, 0.15);
}

.demo-form input.error,
.demo-form select.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1);
}

.demo-form textarea {
  resize: none;
  min-height: 2.5rem;
  max-height: 2.5rem;
}

.form-error {
  display: block;
  font-size: 0.625rem;
  color: #ef4444;
  margin-top: 0.125rem;
  line-height: 1.2;
  min-height: 0;
}

.form-error:empty {
  display: none;
}

.demo-form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.demo-form-actions button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  width: 100%;
}

@media (max-width: 400px) {
  .demo-form {
    grid-template-columns: 1fr;
  }

  .demo-form-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 640px) {
  .demo-modal-panel {
    padding: 0.75rem 1rem;
  }

  .demo-modal-header {
    margin-bottom: 0.5rem;
  }

  .demo-form {
    row-gap: 0.35rem;
  }

  .demo-form textarea {
    min-height: 2.25rem;
    max-height: 2.25rem;
  }
}

.btn-loading.hidden {
  display: none !important;
}

body.modal-open {
  overflow: hidden;
}

/* --- CTA Banner --- */
.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.cta-glow-1 {
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.12);
  top: -40px;
  right: -40px;
}

.cta-glow-2 {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  bottom: -24px;
  left: -24px;
}

/* --- Mobile Sticky Footer Bar --- */
.mobile-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  padding: 0.5rem 0.75rem calc(0.5rem + env(safe-area-inset-bottom, 0px));
  transform: translateY(110%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-sticky-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-sticky-bar-inner {
  position: relative;
  max-width: 28rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 160, 23, 0.22);
  border-radius: 1rem;
  box-shadow:
    0 -8px 32px rgba(17, 24, 39, 0.08),
    0 4px 16px rgba(212, 160, 23, 0.12);
}

.mobile-sticky-bar-inner::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -1px);
  width: calc(100% - 1.5rem);
  max-width: 26rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffc107, #ff6b00, transparent);
  border-radius: 9999px;
  pointer-events: none;
}

.mobile-sticky-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.5rem 0.35rem;
  border-radius: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #374151;
  background: rgba(255, 249, 230, 0.7);
  border: 1px solid rgba(212, 160, 23, 0.15);
  transition: all 0.2s ease;
  text-decoration: none;
  min-height: 3.25rem;
}

.mobile-sticky-link i {
  color: #b8860b;
}

.mobile-sticky-link:active,
.mobile-sticky-link:hover {
  background: rgba(255, 193, 7, 0.2);
  border-color: rgba(255, 107, 0, 0.25);
  color: #111827;
}

.mobile-sticky-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.625rem 0.5rem;
  border-radius: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #111827 !important;
  background: linear-gradient(135deg, #ffc107, #ff6b00);
  border: none;
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  font-family: inherit;
  min-height: 3.25rem;
}

.mobile-sticky-cta:active {
  transform: scale(0.98);
}

@media (min-width: 1024px) {
  .mobile-sticky-bar {
    display: none !important;
  }
}

body.mobile-sticky-visible {
  padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 1024px) {
  body.mobile-sticky-visible {
    padding-bottom: 0;
  }
}

/* --- Footer --- */
.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #b8860b;
  border-color: #b8860b;
  color: white;
  transform: translateY(-2px);
}

/* --- Scroll Reveal Animations --- */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-75 { transition-delay: 75ms; }
.delay-100 { transition-delay: 100ms; }
.delay-150 { transition-delay: 150ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* --- Counter Animation --- */
.counter {
  display: inline-block;
}

/* --- Smooth scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d4a017, #b8860b);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b8860b;
}

/* --- Selection --- */
::selection {
  background: rgba(212, 160, 23, 0.24);
  color: #111827;
}
