@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800&family=Archivo:wght@400;500;600;700;800&display=swap');

:root {
  --color-primary: #0d9488;
  --color-primary-dark: #0f766e;
  --color-hover: #14b8a6;
  --color-accent: #ccfbf1;
  --color-bg: #f8fafc;
  --font-main: 'Figtree', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Archivo', 'Figtree', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 10px 25px -3px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: #334155;
  background-color: #ffffff;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #0f172a;
  letter-spacing: -0.02em;
}

/* Custom Utilities */
.bg-primary {
  background-color: var(--color-primary) !important;
}

.text-primary {
  color: var(--color-primary) !important;
}

.border-primary {
  border-color: var(--color-primary) !important;
}

.hover-primary:hover {
  background-color: var(--color-hover) !important;
}

/* Header & Navigation */
header {
  transition: all 0.3s ease;
}

/* Cards & Elevated Containers */
.feature-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-radius: var(--radius-md);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

/* Interactive elements */
button, a {
  transition: all 0.2s ease-in-out;
}

/* Accordion FAQ styles */
.faq-item {
  transition: background-color 0.2s ease;
}

.faq-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Disclaimer Banner */
.disclaimer-strip {
  background-color: #fffbeb;
  border-bottom: 1px solid #fef3c7;
  color: #92400e;
  font-size: 0.8125rem;
  line-height: 1.4;
}

/* Cookie Notice */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(8px);
  color: #f8fafc;
  padding: 1rem 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

/* Back to top button */
#scroll-top-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
  border: none;
  cursor: pointer;
  z-index: 9990;
  transition: all 0.25s ease;
}

#scroll-top-btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* Form Styles */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}
