/* ========================================
   CUSTOM STYLES – NO @apply (CDN-safe)
   ======================================== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.2s ease;
  outline: none;
}
.btn:focus {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.5);
}
.btn-accent {
  background-color: #10B981;
  color: white;
}
.btn-accent:hover {
  background-color: #059669;
}
.btn-accent:focus {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.5);
}

/* Cards */
.card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease;
}
.card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Section Padding */
.section-py {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .section-py { padding-top: 5rem; padding-bottom: 5rem; }
}
@media (min-width: 1024px) {
  .section-py { padding-top: 6rem; padding-bottom: 6rem; }
}

/* Hero Overlay */
.hero-overlay {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(16, 185, 129, 0.8));
}

/* Sticky Header Shrink */
.header-scrolled {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Text Balance */
.text-balance {
  text-wrap: balance;
}

/* Container */
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

/* Chat & Cookie Positioning */
#chat-btn {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background-color: #10B981;
  color: white;
  padding: 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 999;
}
.hero-video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;          /* fallback for older browsers */
    z-index: -2;
}