/* ============================================
   BLIKSEM BLOCKER - DESIGN SYSTEM
   ============================================ */

/* === IMPORTS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* === CSS RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === ROOT VARIABLES === */
:root {
  /* Color Palette - Electric Blue & Purple Theme */
  --primary-blue: #0066FF;
  --primary-purple: #7C3AED;
  --accent-cyan: #06B6D4;
  --accent-pink: #EC4899;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0066FF 0%, #7C3AED 100%);
  --gradient-accent: linear-gradient(135deg, #06B6D4 0%, #EC4899 100%);
  --gradient-dark: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  --gradient-light: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);

  /* Neutral Colors */
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --black: #000000;

  /* Semantic Colors */
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #3B82F6;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 20px rgba(0, 102, 255, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;

  /* Z-Index */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-popover: 500;
  --z-tooltip: 600;

  /* Layout */
  --container-max: 1280px;
  --container-padding: var(--space-6);
}

/* === BASE STYLES === */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--gradient-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: var(--space-4);
}

h1 {
  font-size: var(--text-5xl);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  margin-bottom: var(--space-4);
  color: var(--gray-600);
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-purple);
}

/* === LAYOUT UTILITIES === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-20) 0;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: var(--space-2);
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.gap-8 {
  gap: var(--space-8);
}

.gap-12 {
  gap: var(--space-12);
}

.gap-16 {
  gap: var(--space-16);
}

.gap-20 {
  gap: var(--space-20);
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

.btn-small {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

/* === CARDS === */
.card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
}

.card-gradient {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
}

.card-gradient h3,
.card-gradient h4,
.card-gradient p {
  color: var(--white);
}

/* === FORMS === */
.form-group {
  margin-bottom: var(--space-6);
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--gray-700);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--gray-800);
  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  color: var(--error);
  font-size: var(--text-sm);
  margin-top: var(--space-2);
}

/* === PROMO BANNER === */
.promo-banner {
  background: linear-gradient(90deg, #F59E0B 0%, #D97706 100%);
  color: var(--white);
  padding: var(--space-2) 0;
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  /* Above Nav */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.promo-banner .container-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
}

.promo-code {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  letter-spacing: 1px;
}

.promo-link {
  color: var(--white);
  text-decoration: underline;
  font-weight: 700;
}

.promo-link:hover {
  color: var(--gray-100);
}

/* === ICON STYLING === */
.icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  stroke-width: 2;
}

.icon-large {
  width: 32px;
  height: 32px;
}

.icon-xl {
  width: 48px;
  height: 48px;
}

.icon-metallic {
  color: #fbbf24;
  /* Amber 400 */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.icon-warning {
  color: #ff9800;
}

.icon-success {
  color: var(--success);
}

.icon-star {
  color: #fbbf24;
  fill: #fbbf24;
  width: 16px;
  height: 16px;
}

.icon-shield {
  color: var(--primary-blue);
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 40px;
  /* Adjusted for promo banner height */
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background: var(--gray-900);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  transition: top var(--transition-base);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--container-padding);
  max-width: var(--container-max);
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-menu {
  display: flex;
  gap: var(--space-8);
  list-style: none;
}

#authLinks,
#userAccount {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-link {
  font-weight: 600;
  color: var(--gray-300);
  transition: color var(--transition-fast);
  position: relative;
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-base);
}

/* === HERO SECTION === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.9)), url('images/hero-commuter.png');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}

/* RFID Wave Effect */
.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  background-image: repeating-radial-gradient(circle at center, transparent 0, transparent 40px, rgba(0, 102, 255, 0.03) 41px, rgba(0, 102, 255, 0.03) 42px, transparent 43px);
  animation: rfidWaves 20s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes rfidWaves {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.6;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
}

.hero-content {
  position: relative;
  z-index: var(--z-base);
  text-align: center;
  color: var(--white);
}

.hero h1 {
  color: var(--white);
  font-size: var(--text-6xl);
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s ease-out;
}

.hero p {
  color: var(--gray-300);
  font-size: var(--text-xl);
  max-width: 600px;
  margin: 0 auto var(--space-8);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
  display: flex !important;
  justify-content: center;
  gap: var(--space-8) !important;
  /* Increased spacing */
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta .btn {
  min-width: 240px;
  /* Enforce same size as 'Stop Digital Theft' */
}

/* Enhanced Product Image */
.hero-image {
  width: 60%;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.hero-image:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
}

/* === NEWS / THREAT WATCH SECTION === */
.news-section {
  background: var(--gray-900);
  color: var(--white);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

.news-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.5), transparent);
}

.news-header-badge {
  display: inline-block;
  background: rgba(204, 255, 0, 0.1);
  color: #ccff00;
  /* Bright Yellow-Green */
  border: 1px solid rgba(204, 255, 0, 0.3);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-4);
  animation: pulse 2s infinite;
}

.news-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--error);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-base);
  height: 100%;
}

.news-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.news-source {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  color: var(--gray-400);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-headline {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
  line-height: 1.4;
}

.news-snippet {
  color: var(--gray-400);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: 0;
}

/* === FEATURE GRID === */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.feature-card {
  text-align: center;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-4);
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-4xl);
  box-shadow: var(--shadow-lg);
}

/* === TESTIMONIALS === */
.testimonial-card {
  position: relative;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-4);
  border: 3px solid var(--primary-blue);
}

.testimonial-rating {
  color: var(--warning);
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.testimonial-text {
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: var(--space-4);
}

.testimonial-author {
  font-weight: 600;
  color: var(--gray-800);
}

.testimonial-role {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

/* === FOOTER === */
.footer {
  background: var(--gradient-dark);
  color: var(--gray-300);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-2);
}

.footer-links a {
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-8);
  border-top: 1px solid var(--gray-700);
  color: var(--gray-500);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease-out;
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out;
}

/* === UTILITY CLASSES === */
.text-center {
  text-align: center;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  :root {
    --text-5xl: 2.5rem;
    --text-6xl: 3rem;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: var(--space-6);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition-base);
    pointer-events: none;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-toggle {
    display: flex;
  }

  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: var(--space-12) 0;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
  }

  .hero h1 {
    font-size: var(--text-4xl);
  }

  .hero p {
    font-size: var(--text-base);
  }
}

/* === CHATBOT STYLES === */
.chatbot-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9999;
}

.chatbot-toggle {
  width: 65px;
  height: 65px;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-base);
  position: relative;
  border: 2px solid var(--primary-blue);
  overflow: hidden;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.chatbot-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--error);
  color: var(--white);
  font-size: 0.75rem;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 2px solid var(--white);
}

.chatbot-window {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 350px;
  height: 500px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all var(--transition-base);
}

.chatbot-window.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.chatbot-header {
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header h3 {
  margin: 0;
  font-size: var(--text-lg);
  color: var(--white);
}

.chatbot-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.chatbot-close:hover {
  opacity: 1;
}

.chatbot-messages {
  flex: 1;
  padding: var(--space-4);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: var(--gray-50);
}

.chatbot-message {
  max-width: 85%;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  line-height: 1.4;
}

.bot-message {
  align-self: flex-start;
  background: var(--white);
  color: var(--gray-800);
  border: 1px solid var(--gray-200);
  border-bottom-left-radius: 4px;
}

.user-message {
  align-self: flex-end;
  background: var(--gradient-primary);
  color: yellow !important;
  border-bottom-right-radius: 4px;
}

.user-message p {
  color: yellow !important;
  margin-bottom: 0;
}

.chatbot-input-area {
  padding: var(--space-4);
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  display: flex;
  gap: var(--space-2);
}

.chatbot-input-area input {
  flex: 1;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
  font-family: inherit;
  font-size: var(--text-sm);
}

.chatbot-input-area input:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.chatbot-send {
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.chatbot-send:hover {
  background: var(--primary-purple);
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: var(--space-2) 0;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background: var(--gray-400);
  border-radius: var(--radius-full);
  animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 480px) {
  .chatbot-window {
    width: calc(100vw - 2rem);
    height: 400px;
    bottom: 70px;
    left: -0.5rem;
  }
}

/* === TERMS & CONDITIONS MODAL === */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-modal);
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-base);
}

.modal.visible {
  opacity: 1;
  pointer-events: all;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  background: var(--white);
  width: 90%;
  max-width: 600px;
  max-height: 85vh;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(30px);
  transition: all var(--transition-base);
}

.modal.visible .modal-content {
  transform: translateY(0);
}

.modal-header {
  padding: var(--space-6);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-body {
  padding: var(--space-6);
  overflow-y: auto;
  color: var(--gray-600);
}

.modal-footer {
  padding: var(--space-6);
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
}

.modal-close {
  font-size: var(--text-3xl);
  color: var(--gray-400);
  cursor: pointer;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  line-height: 1;
}

.modal-close:hover {
  color: var(--error);
}

.terms-checkbox-group {
  margin: var(--space-6) 0;
  padding: var(--space-4);
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.terms-checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* === VISUAL IMPACT UTILITIES === */
.pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background-color: var(--error);
  color: var(--white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
  animation: pulse 2s infinite ease-in-out;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pulse-badge .icon {
  color: var(--white) !important;
}

.text-highlight {
  display: block;
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-top: var(--space-2);
  color: #FFFF00;
  /* Bright yellow for maximum attention */
  text-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}

@media (max-width: 768px) {
  .text-highlight {
    font-size: var(--text-2xl);
  }
}