@charset "UTF-8";
/* Inter - Google Fonts CDN fallback, self-hosted preferred */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../assets/fonts/inter/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../assets/fonts/inter/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
.text-shadow-sm {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.text-shadow-lg {
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.backdrop-blur-strong {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.shadow-brand {
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.12);
}

.shadow-brand-lg {
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.18);
}

.text-responsive {
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.heading-responsive {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #2563EB 0%, #10B981 100%);
  border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #1D4ED8 0%, #059669 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #0F172A;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background-color: #2563EB;
  color: white;
}

::-moz-selection {
  background-color: #2563EB;
  color: white;
}

a[href^="#"] {
  scroll-behavior: smooth;
}

:focus-visible {
  outline: 2px solid #2563EB;
  outline-offset: 2px;
}

.gradient-text {
  background: linear-gradient(135deg, #2563EB 0%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg {
  background: linear-gradient(135deg, #2563EB 0%, #10B981 100%);
}

.gradient-border {
  padding: 3px;
  border-radius: 1rem;
  background: linear-gradient(135deg, #2563EB 0%, #10B981 100%);
}

.comparison-card {
  transition: all 0.3s ease-in-out;
}
.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-card {
  transition: all 0.3s ease-in-out;
}
.feature-card:hover {
  transform: translateY(-2px);
}

.winner-highlight {
  border-left: 4px solid #10B981;
}

.section-divider {
  position: relative;
}
.section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #2563EB 0%, #10B981 100%);
  border-radius: 2px;
}

.comparison-table th {
  white-space: nowrap;
}
.comparison-table td, .comparison-table th {
  vertical-align: middle;
}
.comparison-table tr.highlight-row {
  background-color: rgba(16, 185, 129, 0.04);
}

.score-bar {
  height: 8px;
  border-radius: 4px;
  background-color: #e2e8f0;
  overflow: hidden;
}
.score-bar .score-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.8s ease-out;
}
.score-bar .score-fill--excellent {
  background: linear-gradient(90deg, #059669, #10B981);
}
.score-bar .score-fill--good {
  background: linear-gradient(90deg, #1D4ED8, #2563EB);
}
.score-bar .score-fill--average {
  background: linear-gradient(90deg, #d97706, #f59e0b);
}
.score-bar .score-fill--poor {
  background: linear-gradient(90deg, #dc2626, #ef4444);
}

.pros-cons-list .pro-item::before {
  content: "✓";
  color: #10B981;
  font-weight: 700;
  margin-right: 0.5rem;
}
.pros-cons-list .con-item::before {
  content: "✗";
  color: #ef4444;
  font-weight: 700;
  margin-right: 0.5rem;
}

/* Cookie Consent Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  animation: cb-slide-up 0.3s ease-out;
}

@keyframes cb-slide-up {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.cb-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cb-text {
  color: rgba(226, 232, 240, 0.9);
  font-size: 0.8125rem;
  line-height: 1.5;
  flex: 1;
  min-width: 280px;
  margin: 0;
}

.cb-link {
  color: #3B82F6;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cb-link:hover {
  color: #60A5FA;
}

.cb-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cb-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  line-height: 1;
}

.cb-btn--reject {
  background: transparent;
  color: rgba(226, 232, 240, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.3);
}
.cb-btn--reject:hover {
  background: rgba(226, 232, 240, 0.1);
  color: #fff;
}

.cb-btn--accept {
  background: #1d4ed8;
  color: #fff;
}
.cb-btn--accept:hover {
  background: #2563eb;
}

@media (max-width: 640px) {
  #cookie-banner {
    padding: 1rem;
  }
  .cb-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cb-actions {
    justify-content: stretch;
  }
  .cb-btn {
    flex: 1;
    text-align: center;
    padding: 0.625rem 1rem;
  }
}
.hero-section {
  position: relative;
  isolation: isolate;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: -25% -15%;
  background: radial-gradient(circle at top left, rgba(29, 78, 216, 0.12), transparent 45%), radial-gradient(circle at bottom right, rgba(5, 150, 105, 0.08), transparent 50%);
  z-index: -1;
  filter: blur(0px);
  opacity: 0.8;
}

.mesh-gradient {
  background: radial-gradient(circle at 10% 20%, rgba(29, 78, 216, 0.08), transparent 45%), radial-gradient(circle at 90% 15%, rgba(5, 150, 105, 0.06), transparent 40%), linear-gradient(135deg, rgba(29, 78, 216, 0.04), rgba(5, 150, 105, 0.04));
}

.comparison-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.08), rgba(5, 150, 105, 0.08));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.comparison-card:hover::after {
  opacity: 1;
}

.footer-gradient {
  background: linear-gradient(180deg, rgba(29, 78, 216, 0.04) 0%, rgba(5, 150, 105, 0.04) 100%);
}

.dark-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.methodology-card {
  transition: all 0.3s ease-in-out;
}
.methodology-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.comparison-table th {
  white-space: nowrap;
}
.comparison-table td, .comparison-table th {
  vertical-align: middle;
}

.faq-item {
  transition: all 0.3s ease-in-out;
}
.faq-item:hover {
  border-color: #1d4ed8;
}
.faq-item summary {
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item[open] {
  border-color: rgba(29, 78, 216, 0.3);
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.06);
}

.nav-link {
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #1d4ed8, #059669);
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
