/* Default Packet - CSS Import Manifest */
@import 'foundations/colours.css';
@import 'foundations/typography.css';
@import 'foundations/globals.css';
@import 'layout/layout.css';
@import 'layout/utilities.css';
@import 'components/buttons.css';
@import 'components/cards.css';
@import 'components/forms.css';
@import 'components/sub-header.css';
@import 'components/accordion.css';
@import 'components/timeline.css';
@import 'components/stats.css';
@import 'components/testimonials.css';
@import 'components/badges.css';
@import 'templates/header.css';
@import 'templates/footer.css';
@import 'templates/cta-sections.css';
@import 'templates/services.css';
@import 'templates/pricing.css';
/* ==========================================================================
   Cookie Consent
   ========================================================================== */
.cookie-consent {
  position: fixed;
  inset: auto clamp(16px, 6vw, 500px) 20px clamp(16px, 6vw, 500px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1000;
  background: var(--background-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cookie-consent_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
}

.cookie-consent_badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  background: rgba(0, 0, 0, 0.08);
  color: var(--brand-primary);
  margin-bottom: 8px;
}

.cookie-consent_title {
  font-weight: var(--font-weight-semibold);
  margin: 0 0 6px 0;
  color: var(--brand-primary);
  font-size: 18px;
}

.cookie-consent_text {
  margin: 0;
  color: var(--color-text-muted);
  max-width: 520px;
}

.cookie-consent_actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-consent_accept {
  box-shadow: var(--shadow-md);
}

.cookie-preferences {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1001;
}

.cookie-preferences[hidden] {
  display: none !important;
}

.cookie-preferences_inner {
  width: min(560px, 92vw);
  background: var(--background-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.cookie-preferences_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.cookie-preferences_close {
  border: none;
  background: rgba(0, 0, 0, 0.06);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: var(--brand-primary);
}

.cookie-preferences_text {
  margin: 0 0 16px 0;
  color: var(--color-text-muted);
}

.cookie-preferences_list {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.cookie-preferences_item {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
}

.cookie-preferences_item input {
  accent-color: var(--brand-primary);
}

.cookie-preferences_label {
  font-weight: var(--font-weight-semibold);
  color: var(--brand-primary);
}

.cookie-preferences_hint {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.cookie-preferences_actions {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 720px) {
  .cookie-consent {
    inset: auto 16px 16px 16px;
  }

  .cookie-consent_inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-consent_actions {
    width: 100%;
    justify-content: flex-start;
  }
}
