:root {
  --primary-color: #2563EB;
  --secondary-color: #1E40AF;
  --background-color: #FFFFFF;
  --footer-bg-color: #1F2937;
  --button-color: #2563EB;
  --section-bg-1: #F8FAFC;
  --section-bg-2: #FFFFFF;
  --section-bg-3: #F1F5F9;
  
  /* Soft & Organic Design Tokens */
  --border-radius-sm: 16px;
  --border-radius-md: 20px;
  --border-radius-lg: 24px;
  --border-radius-xl: 28px;
  
  --shadow-soft-1: 0 4px 20px -4px rgba(37, 99, 235, 0.08);
  --shadow-soft-2: 0 8px 30px -6px rgba(37, 99, 235, 0.12);
  --shadow-soft-3: 0 12px 40px -8px rgba(37, 99, 235, 0.15);
  --shadow-soft-4: 0 20px 50px -12px rgba(37, 99, 235, 0.18);
  
  --gradient-primary: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
  --gradient-primary-soft: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 64, 175, 0.15) 100%);
  --gradient-button: linear-gradient(135deg, #2563EB 0%, #3B82F6 50%, #2563EB 100%);
  
  --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-family-display: 'Cal Sans', 'Inter', system-ui, sans-serif;
  
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-soft: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
  box-sizing: border-box;
}

html {
  font-family: var(--font-family-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-primary);
  background: var(--background-color);
  color: #1F2937;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Typography - Soft & Organic Feel */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0;
  color: #111827;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #1F2937;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: #374151;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 600;
  color: #374151;
}

h5 {
  font-size: clamp(1.125rem, 2.25vw, 1.5rem);
  font-weight: 500;
  color: #4B5563;
}

h6 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: #6B7280;
}

p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
  color: #4B5563;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-fast);
  border-radius: 8px;
  padding: 2px 4px;
}

a:hover {
  color: var(--secondary-color);
  background: rgba(37, 99, 235, 0.08);
}

/* Layout Containers */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section:nth-child(odd) {
  background: var(--section-bg-1);
}

.section:nth-child(even) {
  background: var(--section-bg-3);
}

.section-hero {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(30, 64, 175, 0.05) 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 80%, rgba(30, 64, 175, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Soft & Organic Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition-bounce);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-button);
  color: white;
  box-shadow: var(--shadow-soft-2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft-3);
  color: white;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-soft-1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  border: 2px solid rgba(37, 99, 235, 0.2);
  box-shadow: var(--shadow-soft-1);
}

.btn-secondary:hover {
  background: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft-2);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft-2);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  border-radius: var(--border-radius-xl);
}

.btn-small {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  border-radius: var(--border-radius-md);
}

/* Cards - Soft & Organic Design */
.card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft-1);
  transition: var(--transition-soft);
  border: 1px solid rgba(37, 99, 235, 0.08);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft-4);
  border-color: rgba(37, 99, 235, 0.15);
}

.card-feature {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
}

.card-feature .card-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-soft-2);
  transition: var(--transition-soft);
}

.card-feature:hover .card-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-soft-3);
}

.card-feature .card-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.card-testimonial {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(248, 250, 252, 0.95) 100%);
}

.card-testimonial::before {
  background: linear-gradient(135deg, #2563EB 0%, #3B82F6 50%, #2563EB 100%);
}

/* Form Elements */
.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(37, 99, 235, 0.1);
  border-radius: var(--border-radius-lg);
  font-size: 1rem;
  font-family: var(--font-family-primary);
  transition: var(--transition-soft);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: white;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox,
.form-radio {
  margin-right: 0.75rem;
  border-radius: 6px;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(37, 99, 235, 0.08);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-soft);
}

.navbar.scrolled {
  box-shadow: var(--shadow-soft-1);
  padding: 0.75rem 0;
}

.nav-link {
  color: #4B5563;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-md);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.08);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-soft);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

/* Hero Section */
.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: #6B7280;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-family-display);
}

.stat-label {
  font-size: 0.95rem;
  color: #6B7280;
  font-weight: 500;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

.rounded { border-radius: var(--border-radius-md); }
.rounded-lg { border-radius: var(--border-radius-lg); }
.rounded-xl { border-radius: var(--border-radius-xl); }

.shadow-soft { box-shadow: var(--shadow-soft-1); }
.shadow-medium { box-shadow: var(--shadow-soft-2); }
.shadow-strong { box-shadow: var(--shadow-soft-3); }

.bg-gradient { background: var(--gradient-primary-soft); }

/* Footer */
.footer {
  background: var(--footer-bg-color);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

.footer h5 {
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .section-hero {
    min-height: 70vh;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }
  
  .card {
    padding: 2rem;
  }
  
  .grid {
    gap: 1.5rem;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3rem 0;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* Print Styles */
@media print {
  .btn,
  .navbar,
  .footer {
    display: none;
  }
  
  .section {
    page-break-inside: avoid;
    padding: 1rem 0;
  }
  
  .card {
    border: 1px solid #ddd;
    box-shadow: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --shadow-soft-1: 0 4px 20px -4px rgba(0, 0, 0, 0.3);
    --shadow-soft-2: 0 8px 30px -6px rgba(0, 0, 0, 0.4);
    --shadow-soft-3: 0 12px 40px -8px rgba(0, 0, 0, 0.5);
    --shadow-soft-4: 0 20px 50px -12px rgba(0, 0, 0, 0.6);
  }
  
  .card {
    border: 2px solid #000;
  }
  
  .btn {
    border: 2px solid currentColor;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #0F172A;
    --section-bg-1: #1E293B;
    --section-bg-2: #0F172A;
    --section-bg-3: #334155;
    --text-primary: #F1F5F9;
    --text-secondary: #CBD5E1;
  }
  
  body {
    background: var(--background-color);
    color: var(--text-primary);
  }
  
  .card {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(37, 99, 235, 0.2);
  }
  
  .navbar {
    background: rgba(15, 23, 42, 0.95);
  }
  
  .form-input,
  .form-select,
  .form-textarea {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(37, 99, 235, 0.3);
    color: var(--text-primary);
  }
  
  .form-input:focus,
  .form-select:focus,
  .form-textarea:focus {
    background: rgba(30, 41, 59, 0.95);
    border-color: var(--primary-color);
  }
}


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}