/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  /* Premium Color System */
  --primary: #1a1f36;
  --primary-light: #2d3561;
  --primary-mid: #3d4f7c;
  --primary-dark: #0d1117;
  --accent: #00c896;
  --accent-hover: #00a87d;
  --accent-light: #34e8b8;
  --accent-glow: rgba(0, 200, 150, .25);
  --indigo: #6366f1;
  --indigo-light: #818cf8;
  --violet: #8b5cf6;
  --bg: #f7f8fc;
  --white: #ffffff;
  --gray-50: #f1f3f9;
  --gray-100: #e2e6ef;
  --gray-200: #c8cee0;
  --gray-300: #8f99b3;
  --gray-400: #5f6b85;
  --gray-500: #3e4a63;
  --gray-600: #2a3347;
  --text: #1a1f36;
  --text-light: #5f6b85;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #6366f1;

  /* Shadows with color */
  --shadow-sm: 0 1px 3px rgba(26, 31, 54, .06);
  --shadow: 0 4px 12px rgba(26, 31, 54, .08);
  --shadow-md: 0 8px 24px rgba(26, 31, 54, .1);
  --shadow-lg: 0 16px 40px rgba(26, 31, 54, .12);
  --shadow-xl: 0 24px 56px rgba(26, 31, 54, .14);
  --shadow-accent: 0 8px 32px rgba(0, 200, 150, .2);
  --shadow-indigo: 0 8px 32px rgba(99, 102, 241, .2);

  /* Glass effect */
  --glass-bg: rgba(255, 255, 255, .72);
  --glass-border: rgba(255, 255, 255, .2);
  --glass-blur: blur(20px);

  /* Radius */
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Transitions */
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
  --transition-fast: all .15s cubic-bezier(.4, 0, .2, 1);
  --transition-spring: all .5s cubic-bezier(.34, 1.56, .64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary)
}

a {
  color: var(--indigo);
  text-decoration: none;
  transition: var(--transition)
}

a:hover {
  color: var(--accent)
}

img {
  max-width: 100%;
  height: auto
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 80px 0
}

.section:nth-child(even) {
  background: var(--white)
}

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(226, 230, 239, .6);
  transition: var(--transition)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0
}

.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -.3px
}

.nav-logo span {
  font-size: 1.4rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .1))
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  align-items: center
}

.nav-links a {
  color: var(--gray-400);
  font-weight: 500;
  font-size: .88rem;
  transition: var(--transition);
  padding: 8px 16px;
  border-radius: 50px;
  position: relative
}

.nav-links a:hover {
  color: var(--primary);
  background: var(--gray-50)
}

.nav-links a.active {
  color: var(--white);
  background: var(--primary);
  font-weight: 600
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  transition: var(--transition)
}

.hamburger:hover {
  background: var(--gray-50)
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition)
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 30%, #312e81 55%, #4338ca 100%);
  color: var(--white);
  padding: 90px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(99, 102, 241, .3) 0%, transparent 65%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 200, 150, .2) 0%, transparent 65%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(20px, -30px) scale(1.05)
  }

  66% {
    transform: translate(-15px, 15px) scale(.97)
  }
}

/* Floating orbs */
.hero .container {
  position: relative
}

.hero .container::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 8%;
  width: 80px;
  height: 80px;
  background: rgba(99, 102, 241, .15);
  border: 1px solid rgba(99, 102, 241, .2);
  border-radius: 50%;
  animation: orb1 6s ease-in-out infinite;
  backdrop-filter: blur(8px)
}

.hero .container::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: 12%;
  width: 60px;
  height: 60px;
  background: rgba(0, 200, 150, .12);
  border: 1px solid rgba(0, 200, 150, .2);
  border-radius: 50%;
  animation: orb2 7s ease-in-out infinite;
  backdrop-filter: blur(8px)
}

@keyframes orb1 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  50% {
    transform: translateY(-20px) rotate(180deg)
  }
}

@keyframes orb2 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  50% {
    transform: translateY(15px) rotate(-180deg)
  }
}

.hero-content {
  position: relative;
  z-index: 2
}

.hero-emoji {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: inline-block;
  animation: heroEmoji 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .2))
}

@keyframes heroEmoji {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-10px) scale(1.05)
  }
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 18px;
  color: var(--white);
  letter-spacing: -.8px;
  line-height: 1.15;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, .85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero p {
  font-size: 1.15rem;
  opacity: .8;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px
}

.badge {
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .9);
  transition: var(--transition)
}

.badge:hover {
  background: rgba(255, 255, 255, .14);
  transform: translateY(-2px)
}

/* ===== ADSENSE SLOTS ===== */
.adsense-slot {
  background: var(--gray-50);
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: .78rem;
  font-weight: 500;
  margin: 20px auto;
  max-width: 100%;
  overflow: hidden
}

.adsense-slot.leaderboard {
  width: 728px;
  height: 90px
}

.adsense-slot.rectangle {
  width: 336px;
  height: 280px
}

.adsense-slot.mobile-banner {
  width: 320px;
  height: 50px;
  display: none
}

.adsense-slot.sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 50px;
  z-index: 90;
  display: none;
  box-shadow: var(--shadow-lg)
}

/* ===== FORM / CALCULATOR ===== */
.calculator-section {
  padding: 60px 0 70px;
  background: var(--white);
  position: relative
}

.calculator-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--gray-50) 0%, transparent 100%);
  pointer-events: none
}

.calculator-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden
}

.calculator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--indigo), var(--accent), var(--violet));
  border-radius: 4px 4px 0 0
}

.form-header {
  text-align: center;
  margin-bottom: 36px
}

.form-header h2 {
  font-size: 1.75rem;
  margin-bottom: 10px;
  letter-spacing: -.3px
}

.form-header p {
  color: var(--text-light);
  font-size: .95rem
}

.progress-bar-wrap {
  height: 5px;
  background: var(--gray-100);
  border-radius: 50px;
  margin-bottom: 36px;
  overflow: hidden
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--indigo), var(--accent));
  border-radius: 50px;
  transition: width .5s cubic-bezier(.4, 0, .2, 1);
  width: 0;
  position: relative
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
  animation: shimmer 2s infinite
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(100%)
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.form-group.full-width {
  grid-column: 1/-1
}

.form-group label {
  font-weight: 600;
  font-size: .85rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .2px;
  text-transform: uppercase
}

.form-group label .icon {
  font-size: 1rem
}

.form-group select,
.form-group input {
  padding: 14px 18px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: .93rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  background: var(--white);
  color: var(--text);
  appearance: none;
  -webkit-appearance: none;
  font-weight: 500
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235f6b85' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer
}

.form-group select:hover,
.form-group input:hover {
  border-color: var(--gray-200)
}

.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, .1)
}

.form-group .error-msg {
  color: var(--danger);
  font-size: .78rem;
  font-weight: 500;
  display: none
}

.form-group.has-error select,
.form-group.has-error input {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, .08)
}

.form-group.has-error .error-msg {
  display: block
}

.btn-calculate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 12px;
  box-shadow: var(--shadow-indigo);
  letter-spacing: .3px;
  position: relative;
  overflow: hidden
}

.btn-calculate::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
  transition: left .6s ease
}

.btn-calculate:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, .35)
}

.btn-calculate:hover::before {
  left: 100%
}

.btn-calculate:active {
  transform: translateY(-1px)
}

.btn-calculate .spinner {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255, 255, 255, .25);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none
}

.btn-calculate.loading .spinner {
  display: block
}

.btn-calculate.loading .btn-text {
  display: none
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

/* ===== RESULTS ===== */
.results-section {
  display: none;
  padding: 50px 0;
  animation: fadeInUp .7s cubic-bezier(.4, 0, .2, 1)
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.results-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 48px;
  border: 1px solid var(--gray-100);
  overflow: hidden;
  position: relative
}

.results-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--indigo))
}

.results-header {
  text-align: center;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-100)
}

.results-header h2 {
  font-size: 1.75rem;
  margin-bottom: 8px;
  letter-spacing: -.3px
}

.cost-display {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 24px
}

.cost-box {
  text-align: center;
  padding: 20px 28px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  min-width: 200px;
  transition: var(--transition)
}

.cost-box:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent)
}

.cost-box .label {
  font-size: .78rem;
  color: var(--text-light);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .8px
}

.cost-box .amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, var(--indigo), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.cost-box .currency {
  font-size: 1rem;
  color: var(--gray-400)
}

.plan-breakdown {
  margin: 36px 0
}

.plan-breakdown h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: center
}

.plan-bars {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  justify-content: center;
  height: 180px;
  padding: 0 20px
}

.plan-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  max-width: 160px
}

.plan-bar .bar {
  width: 100%;
  border-radius: var(--radius) var(--radius) 4px 4px;
  transition: height 1s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
}

.plan-bar .bar.basic {
  background: linear-gradient(180deg, #818cf8, #6366f1)
}

.plan-bar .bar.standard {
  background: linear-gradient(180deg, var(--accent-light), var(--accent))
}

.plan-bar .bar.premium {
  background: linear-gradient(180deg, #c084fc, #8b5cf6)
}

.plan-bar .price {
  font-weight: 700;
  font-size: .88rem;
  color: var(--text)
}

.plan-bar .plan-name {
  font-size: .78rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px
}

.coverage-section,
.worthit-section {
  margin: 36px 0;
  padding: 28px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--indigo)
}

.coverage-section h3,
.worthit-section h3 {
  font-size: 1.1rem;
  margin-bottom: 14px
}

.coverage-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.coverage-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition)
}

.coverage-list li:hover {
  background: var(--white)
}

.coverage-list li .check {
  color: var(--accent);
  font-weight: bold
}

.coverage-list li .cross {
  color: var(--danger);
  font-weight: bold
}

.worthit-score {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 14px
}

.score-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15)
}

.score-circle.high {
  background: linear-gradient(135deg, var(--accent), var(--accent-light))
}

.score-circle.medium {
  background: linear-gradient(135deg, #f59e0b, #fbbf24)
}

.score-circle.low {
  background: linear-gradient(135deg, #ef4444, #f87171)
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0;
  font-size: .9rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm)
}

.comparison-table th {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .5px
}

.comparison-table th:first-child {
  border-radius: var(--radius-sm) 0 0 0
}

.comparison-table th:last-child {
  border-radius: 0 var(--radius-sm) 0 0
}

.comparison-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-100)
}

.comparison-table tr:nth-child(even) {
  background: var(--gray-50)
}

.comparison-table tr:hover {
  background: rgba(99, 102, 241, .04)
}

.comparison-table tr:last-child td:first-child {
  border-radius: 0 0 0 var(--radius-sm)
}

.comparison-table tr:last-child td:last-child {
  border-radius: 0 0 var(--radius-sm) 0
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  justify-content: center
}

.btn-action {
  padding: 12px 22px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-500)
}

.btn-action:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  transform: translateY(-2px);
  box-shadow: var(--shadow)
}

.btn-action.primary {
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-indigo)
}

.btn-action.primary:hover {
  box-shadow: 0 12px 32px rgba(99, 102, 241, .3);
  transform: translateY(-2px)
}

/* ===== PROVIDER CARDS ===== */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px
}

.provider-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 22px;
  transition: var(--transition);
  position: relative;
  overflow: hidden
}

.provider-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(99, 102, 241, .06), rgba(0, 200, 150, .06));
  opacity: 0;
  transition: var(--transition);
  pointer-events: none
}

.provider-card:hover {
  border-color: var(--indigo-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px)
}

.provider-card:hover::after {
  opacity: 1
}

.provider-card.best-price {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-accent)
}

.provider-best-label {
  position: absolute;
  top: -1px;
  left: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
  letter-spacing: .3px;
  box-shadow: 0 4px 12px rgba(0, 200, 150, .25)
}

.provider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 8px
}

.provider-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--primary)
}

.provider-badge {
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
  color: var(--gray-400);
  font-size: .66rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .3px
}

.provider-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2
}

.provider-price span {
  font-size: .82rem;
  font-weight: 500;
  color: var(--gray-300)
}

.provider-annual {
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: 12px
}

.provider-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100)
}

.provider-rating {
  font-size: .8rem;
  color: var(--gray-400);
  font-weight: 500
}

.provider-diff {
  font-size: .75rem;
  color: var(--danger);
  font-weight: 700;
  background: rgba(239, 68, 68, .06);
  padding: 3px 10px;
  border-radius: 50px
}

.provider-savings {
  font-size: .75rem;
  color: var(--accent);
  font-weight: 700;
  background: rgba(0, 200, 150, .08);
  padding: 3px 10px;
  border-radius: 50px
}

.provider-cta {
  display: block;
  text-align: center;
  margin-top: 16px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: .3px;
  box-shadow: var(--shadow-indigo);
  position: relative;
  z-index: 2
}

.provider-cta:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
  color: var(--white)
}

/* ===== SEO CONTENT ===== */
.content-section {
  padding: 60px 0
}

.content-section h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--indigo), var(--accent)) 1;
  display: inline-block;
  letter-spacing: -.2px
}

.content-section p {
  margin-bottom: 16px;
  color: var(--gray-400);
  line-height: 1.85;
  font-size: .95rem
}

.content-grid {
  display: grid;
  gap: 48px;
  margin-top: 12px
}

/* ===== FAQ ===== */
.faq-section {
  padding: 60px 0;
  background: var(--white)
}

.faq-section h2 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 36px;
  letter-spacing: -.3px
}

.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
  background: var(--white)
}

.faq-item:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm)
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  gap: 16px
}

.faq-question:hover {
  background: var(--gray-50)
}

.faq-question .arrow {
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  font-size: .75rem;
  color: var(--gray-300);
  flex-shrink: 0
}

.faq-item.open .faq-question .arrow {
  transform: rotate(180deg);
  color: var(--indigo)
}

.faq-item.open .faq-question {
  color: var(--indigo);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100)
}

.faq-item.open {
  border-color: var(--indigo-light);
  box-shadow: var(--shadow-indigo)
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.4, 0, .2, 1), padding .3s ease;
  padding: 0 24px
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 4px 24px 20px
}

.faq-answer p {
  color: var(--gray-400);
  font-size: .92rem;
  line-height: 1.75
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: rgba(255, 255, 255, .6);
  padding: 48px 0 24px;
  text-align: center;
  position: relative
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, .3), rgba(0, 200, 150, .3), transparent)
}

.footer p {
  font-size: .85rem;
  margin-bottom: 10px
}

.footer a {
  color: rgba(255, 255, 255, .8);
  transition: var(--transition)
}

.footer a:hover {
  color: var(--accent-light)
}

.disclaimer {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin: 36px 0;
  font-size: .84rem;
  color: var(--gray-400);
  line-height: 1.7;
  border-left: 4px solid var(--warning)
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  color: var(--white);
  padding: 18px 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, .25);
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.cookie-banner.show {
  transform: translateY(0)
}

.cookie-banner p {
  font-size: .86rem;
  flex: 1;
  min-width: 200px;
  line-height: 1.5
}

.cookie-banner .btn-cookie {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  font-size: .84rem;
  border: none;
  transition: var(--transition)
}

.cookie-banner .btn-accept {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 200, 150, .3)
}

.cookie-banner .btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 200, 150, .4)
}

.cookie-banner .btn-decline {
  background: transparent;
  color: rgba(255, 255, 255, .8);
  border: 1px solid rgba(255, 255, 255, .2)
}

.cookie-banner .btn-decline:hover {
  background: rgba(255, 255, 255, .08)
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1)
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    flex-direction: column;
    padding: 20px 24px;
    gap: 8px;
    border-top: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg)
  }

  .nav-links.open {
    display: flex
  }

  .nav-links a {
    padding: 12px 16px;
    border-radius: var(--radius-sm)
  }

  .hamburger {
    display: flex
  }

  .hero {
    padding: 60px 0 70px
  }

  .hero h1 {
    font-size: 2rem
  }

  .hero p {
    font-size: 1rem
  }

  .hero-emoji {
    font-size: 2.8rem
  }

  .trust-badges {
    gap: 8px
  }

  .badge {
    font-size: .75rem;
    padding: 7px 14px
  }

  .calculator-card {
    padding: 28px 20px
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .cost-display {
    gap: 16px;
    flex-direction: column;
    align-items: center
  }

  .cost-box {
    width: 100%;
    min-width: unset
  }

  .cost-box .amount {
    font-size: 1.5rem
  }

  .plan-bars {
    height: 140px
  }

  .coverage-list {
    grid-template-columns: 1fr
  }

  .comparison-table {
    font-size: .8rem
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px
  }

  .result-actions {
    flex-direction: column
  }

  .btn-action {
    justify-content: center
  }

  .adsense-slot.leaderboard {
    width: 320px;
    height: 50px
  }

  .adsense-slot.mobile-banner {
    display: flex
  }

  .adsense-slot.sticky-bottom {
    display: flex
  }

  .content-section h2 {
    font-size: 1.3rem
  }

  .section {
    padding: 48px 0
  }

  .results-card {
    padding: 28px 20px
  }

  .provider-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:480px) {
  .hero h1 {
    font-size: 1.65rem
  }

  .hero {
    padding: 50px 0 60px
  }

  .calculator-card {
    padding: 22px 16px
  }

  .results-card {
    padding: 22px 14px
  }

  .provider-grid {
    grid-template-columns: 1fr
  }

  .faq-question {
    padding: 16px 18px;
    font-size: .9rem
  }
}

@media print {

  .header,
  .footer,
  .cookie-banner,
  .adsense-slot,
  .btn-calculate,
  .result-actions,
  .btn-action {
    display: none !important
  }

  .results-section {
    display: block !important
  }

  body {
    background: #fff
  }
}