/* ==========================================================================
   eSIMCROWN MODERN DESIGN SYSTEM 2026
   Luxury Royal & Digital Nomad Aesthetics
   ========================================================================== */

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

:root {
  /* Core Colors */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', sans-serif;

  --color-primary: #3B82F6;
  --color-primary-dark: #1D4ED8;
  --color-primary-light: #60A5FA;
  --color-primary-rgb: 59, 130, 246;

  --color-accent: #06B6D4;
  --color-accent-rgb: 6, 182, 212;

  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-purple: #8B5CF6;

  /* Neutrals */
  --bg-main: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-card-alt: #F1F5F9;
  --bg-dark: #0B132B;
  --bg-dark-surface: #1C2541;

  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;

  --border-light: #E2E8F0;
  --border-focus: #93C5FD;
  --border-subtle: rgba(226, 232, 240, 0.8);

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
  --grad-hero: radial-gradient(circle at 50% -20%, rgba(59, 130, 246, 0.18) 0%, rgba(6, 182, 212, 0.08) 35%, rgba(248, 250, 252, 0) 70%);
  --grad-card-hover: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(241, 245, 249, 0.7) 100%);
  --grad-badge: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(6, 182, 212, 0.12) 100%);
  --grad-dark: linear-gradient(180deg, #0B132B 0%, #070B19 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 24px -4px rgba(15, 23, 42, 0.1), 0 4px 8px -2px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 35px -5px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(15, 23, 42, 0.06);
  --shadow-glow: 0 0 25px rgba(59, 130, 246, 0.35);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-blur: blur(16px);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-body);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .brand-font {
  font-family: var(--font-primary);
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.modern-navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  transition: all var(--transition-normal);
  padding: 0.9rem 0;
}

.modern-navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  padding: 0.7rem 0;
}

.brand-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-primary);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
}

.brand-badge {
  background: var(--grad-primary);
  color: #fff;
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.nav-link-modern {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted) !important;
  padding: 0.5rem 0.9rem !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link-modern:hover,
.nav-link-modern.active {
  color: var(--color-primary) !important;
  background-color: rgba(59, 130, 246, 0.08);
}

.currency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: var(--bg-card-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
}

.btn-modern-primary {
  background: var(--grad-primary);
  color: #FFFFFF !important;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.btn-modern-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  color: #fff;
}

.btn-modern-primary:active {
  transform: translateY(0);
}

.btn-modern-secondary {
  background: var(--bg-card);
  color: var(--text-dark) !important;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-modern-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary) !important;
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.modern-hero {
  position: relative;
  background: var(--grad-hero);
  padding: 5.5rem 0 4rem;
  overflow: hidden;
}

.hero-glow-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  top: -100px;
  right: -50px;
  background: rgba(6, 182, 212, 0.14);
}

.hero-glow-2 {
  top: 100px;
  left: -100px;
  background: rgba(59, 130, 246, 0.12);
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--grad-badge);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.08);
}

.hero-pill-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-success);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.hero-title .gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

/* Hero Search Bar */
.modern-search-box {
  max-width: 620px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 20;
}

.search-input-group {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.5rem 0.6rem 0.5rem 1.4rem;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}

.search-input-group:focus-within {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-xl), 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.search-input-group input {
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-dark);
  width: 100%;
  background: transparent;
}

.search-input-group input::placeholder {
  color: var(--text-light);
}

.search-input-group .search-btn {
  background: var(--grad-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.search-input-group .search-btn:hover {
  transform: scale(1.03);
}

/* Floating Search Results Dropdown */
.search-results-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-height: 380px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  padding: 0.6rem;
}

.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.search-result-item:hover {
  background-color: var(--bg-card-alt);
}

.result-flag-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.result-flag-info img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.result-price-badge {
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

/* Quick destination pills under search */
.popular-pills-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.popular-pills-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-right: 0.25rem;
}

.popular-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.popular-pill img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
}

.popular-pill:hover {
  background: var(--bg-card-alt);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
}

/* Trust Bar */
.trust-metric-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(226, 232, 240, 0.7);
}

.trust-metric {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-metric-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
}

.trust-metric-text strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.trust-metric-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   PACKAGE EXPLORER SECTION (TABS & CARDS)
   ========================================================================== */
.explorer-section {
  padding: 4.5rem 0;
  position: relative;
}

.section-header-modern {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-primary);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  background: rgba(59, 130, 246, 0.08);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-title-modern {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.section-desc-modern {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Tab Navigation */
.modern-tab-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card-alt);
  padding: 0.4rem;
  border-radius: var(--radius-full);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  border: 1px solid var(--border-light);
}

.modern-tab-btn {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.modern-tab-btn.active {
  background: var(--bg-card);
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
}

/* Destination Card Grid */
.destination-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  position: relative;
  transition: all var(--transition-normal);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.destination-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.destination-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: var(--shadow-xl);
}

.destination-card:hover::before {
  opacity: 1;
}

.card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.flag-avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  border: 2px solid #fff;
}

.flag-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-iso-badge {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--bg-card-alt);
  color: var(--text-muted);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
}

.dest-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dest-card-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.card-bottom-row {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-container {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.price-val {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.card-action-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: all var(--transition-fast);
}

.destination-card:hover .card-action-circle {
  background: var(--color-primary);
  color: #fff;
  transform: translateX(3px);
}

/* Regional Card special styles */
.region-card-badge {
  background: rgba(6, 182, 212, 0.1);
  color: #0891B2;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   PACKAGE DETAILS MODAL (INTERACTIVE PLAN SELECTOR)
   ========================================================================== */
.modal-modern .modal-content {
  border: none;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
  overflow: hidden;
  background: var(--bg-card);
}

.modal-modern .modal-header {
  border-bottom: 1px solid var(--border-light);
  padding: 1.4rem 1.8rem;
  background: var(--bg-card-alt);
}

.modal-destination-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.modal-flag-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  border: 2px solid #fff;
}

.modal-modern .modal-body {
  padding: 1.6rem 1.8rem;
  max-height: 70vh;
  overflow-y: auto;
}

/* Plan card inside modal */
.plan-item-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  transition: all var(--transition-fast);
}

.plan-item-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  background: rgba(59, 130, 246, 0.02);
}

.plan-item-card.popular-tier {
  border-color: var(--color-primary);
  position: relative;
}

.popular-badge-ribbon {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}

.plan-data-headline {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.plan-validity-tag {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.plan-feature-badges {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.feature-pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  background: var(--bg-card-alt);
  color: var(--text-muted);
}

.feature-pill.speed-pill {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
}

.plan-price-group {
  text-align: right;
}

.plan-price-big {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.btn-plan-select {
  background: var(--grad-primary);
  color: #fff;
  border: none;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-plan-select:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
  color: #fff;
}

/* ==========================================================================
   DEVICE COMPATIBILITY CHECKER
   ========================================================================== */
.checker-section {
  background: var(--bg-dark);
  color: #FFFFFF;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.checker-section .section-title-modern {
  color: #FFFFFF;
}

.checker-section .section-desc-modern {
  color: var(--text-light);
}

.checker-card {
  background: var(--bg-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.device-search-input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 0.85rem 1.4rem;
  color: #fff;
  width: 100%;
  font-size: 1.05rem;
  outline: none;
  transition: all var(--transition-fast);
}

.device-search-input:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.25);
}

.device-pill-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.device-pill-tag:hover,
.device-pill-tag.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.device-result-status {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.device-result-status.compatible {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #6EE7B7;
}

/* ==========================================================================
   HOW IT WORKS (TIMELINE STEPS)
   ========================================================================== */
.steps-section {
  padding: 5rem 0;
}

.step-card-modern {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
}

.step-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(59, 130, 246, 0.3);
}

.step-number-badge {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--grad-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.step-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   WHY CHOOSE US (FEATURES GRID)
   ========================================================================== */
.features-section-modern {
  background: var(--bg-card-alt);
  padding: 5rem 0;
}

.feature-card-modern {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

.feature-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.feature-icon-box.icon-blue { background: rgba(59, 130, 246, 0.1); color: var(--color-primary); }
.feature-icon-box.icon-cyan { background: rgba(6, 182, 212, 0.1); color: var(--color-accent); }
.feature-icon-box.icon-emerald { background: rgba(16, 185, 129, 0.1); color: var(--color-success); }
.feature-icon-box.icon-purple { background: rgba(139, 92, 246, 0.1); color: var(--color-purple); }

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 5rem 0;
}

.modern-accordion .accordion-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md) !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.modern-accordion .accordion-button {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  background: var(--bg-card);
  padding: 1.25rem 1.5rem;
  box-shadow: none;
}

.modern-accordion .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  background: rgba(59, 130, 246, 0.03);
}

.modern-accordion .accordion-body {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.modern-footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 5rem 0 2rem;
}

.footer-brand-title {
  font-family: var(--font-primary);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-heading {
  font-family: var(--font-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-list li {
  margin-bottom: 0.75rem;
}

.footer-link-list a {
  color: var(--text-light);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.footer-link-list a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-newsletter-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 0.65rem 1.2rem;
  color: #fff;
  font-size: 0.9rem;
  width: 100%;
}

.footer-newsletter-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.footer-bottom-bar {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.payment-badges-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.payment-badges-row i {
  font-size: 1.5rem;
  color: var(--text-light);
}

/* ==========================================================================
   RESPONSIVE UTILITIES
   ========================================================================== */
@media (max-width: 991.98px) {
  .hero-title { font-size: 2.5rem; }
  .trust-metric-bar { gap: 1.25rem; }
  .modern-hero { padding: 3.5rem 0 3rem; }
}

@media (max-width: 767.98px) {
  .search-input-group { flex-direction: column; border-radius: var(--radius-lg); padding: 0.75rem; gap: 0.5rem; }
  .search-input-group .search-btn { width: 100%; justify-content: center; }
  .modern-tab-nav { flex-direction: column; border-radius: var(--radius-lg); }
  .card-bottom-row { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}
