/* ============================================
   HOME WARRANTY ONLINE - STYLES
   Mobile-First | Call Lead Gen Optimized
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #0a2540;
  --primary-light: #1a4b7a;
  --primary-medium: #0d4f6b;
  --secondary: #f59e0b;
  --secondary-dark: #d97706;
  --secondary-light: #fbbf24;
  --accent: #10b981;
  --accent-dark: #059669;
  --danger: #ef4444;
  --bg: #f8fafc;
  --bg-warm: #fffbeb;
  --white: #ffffff;
  --text: #1e293b;
  --text-light: #64748b;
  --text-lighter: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
  color: var(--secondary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  margin-bottom: 16px;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  text-align: center;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), #f97316);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.45);
}

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

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.btn-call {
  background: linear-gradient(135deg, #10b981, #059669);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
  font-size: 1.1rem;
  padding: 18px 36px;
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.45);
}

.btn-call .phone-icon {
  font-size: 1.3rem;
  animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0); }
  10% { transform: rotate(-15deg); }
  20% { transform: rotate(15deg); }
  30% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
  50% { transform: rotate(0); }
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 20px 40px;
  font-size: 1.15rem;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
  letter-spacing: -0.3px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text .logo-main {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.logo-text .logo-main .highlight {
  color: var(--secondary);
}

.logo-text .logo-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-lighter);
  margin-top: 1px;
}

.nav {
  display: none;
  gap: 32px;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative;
}

.nav a:hover {
  color: var(--primary);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition);
}

.nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1rem;
  color: var(--accent-dark);
  padding: 10px 20px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 185, 129, 0.15);
  transition: all var(--transition);
}

.header-phone:hover {
  background: rgba(16, 185, 129, 0.15);
}

.header-phone .icon {
  font-size: 1.1rem;
  animation: phoneRing 2s ease-in-out infinite;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 24px 20px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 16px 20px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.mobile-menu a:hover {
  background: var(--bg);
}

.mobile-menu .mobile-menu-cta {
  margin-top: 16px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.03));
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 185, 129, 0.15);
  text-align: center;
}

.mobile-menu .mobile-menu-cta .phone-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-dark);
  display: block;
  margin-bottom: 8px;
}

.mobile-menu .mobile-menu-cta .phone-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ---------- Top Bar ---------- */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--primary);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.82rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.top-bar .highlight {
  color: var(--secondary-light);
  font-weight: 800;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ---------- Hero Section ---------- */
.hero {
  padding: 180px 0 80px;
  background: linear-gradient(165deg, #0a2540 0%, #1a4b7a 45%, #0d4f6b 80%, #0a3d5c 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--secondary-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero-badge .stars {
  color: var(--secondary);
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 .text-gradient {
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-ctas .btn-call {
  font-size: 1.15rem;
  padding: 20px 32px;
}

.hero-ctas .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.hero-ctas .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-offer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.25);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  color: #fca5a5;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-offer .pulse-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-trust-item .check {
  color: var(--accent);
  font-size: 1rem;
}

.hero-visual {
  display: none;
  overflow: visible;
}

/* Hero Floating Cards */
.hero-cards-container {
  position: relative;
  width: 100%;
  height: 480px;
  margin: 0 auto;
}

.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  color: var(--white);
  transition: transform 0.4s ease;
}

.hero-card:hover {
  transform: translateY(-4px);
}

/* Main protection card */
.hero-card-main {
  top: 30px;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}

.hero-card-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.hero-card-label {
  font-size: 1.05rem;
  font-weight: 800;
}

.hero-card-status {
  font-size: 0.8rem;
  color: #6ee7b7;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 18px 0;
}

.hero-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.tag-covered {
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.hero-card-value {
  font-weight: 800;
  color: var(--white);
  font-size: 0.95rem;
}

/* Savings card */
.hero-card-savings {
  bottom: 80px;
  right: 0;
  padding: 20px 24px;
  text-align: center;
  z-index: 4;
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.2);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  animation: floatCard1 6s ease-in-out infinite;
}

.hero-card-savings-icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.hero-card-savings-amount {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--secondary-light);
  line-height: 1;
}

.hero-card-savings-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-top: 4px;
}

/* Rating card */
.hero-card-rating {
  bottom: 0;
  left: 10px;
  padding: 18px 24px;
  z-index: 4;
  text-align: center;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  animation: floatCard2 7s ease-in-out infinite;
}

.hero-card-rating-stars {
  color: var(--secondary);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.hero-card-rating-score {
  font-size: 1.5rem;
  font-weight: 900;
}

.hero-card-rating-count {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* Claims card */
.hero-card-claims {
  top: 10px;
  right: 0;
  padding: 16px 22px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  animation: floatCard3 5s ease-in-out infinite;
}

.hero-card-claims-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6ee7b7;
  font-weight: 800;
  font-size: 1rem;
}

.hero-card-claims-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #6ee7b7;
}

.hero-card-claims-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

@keyframes floatCard1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatCard2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes floatCard3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px); }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
}

.hero-stat .number {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  display: block;
}

.hero-stat .label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--white);
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  margin-top: 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.trust-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.trust-text span {
  display: block;
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.75rem;
  margin-top: 2px;
}

/* ---------- Benefits Section ---------- */
.benefits {
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

.benefit-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--transition);
}

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

.benefit-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---------- How It Works ---------- */
.how-it-works {
  background: var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}

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

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 auto 20px;
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(10, 37, 64, 0.15);
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.step-connector {
  display: none;
}

/* ---------- Plans Section ---------- */
.plans {
  background: var(--white);
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.plan-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: all var(--transition);
}

.plan-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.plan-card.featured {
  border-color: var(--secondary);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.15);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--secondary), #f97316);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.plan-description {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.plan-features {
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text);
}

.plan-features li .check-icon {
  color: var(--accent);
  font-weight: 700;
  min-width: 20px;
  margin-top: 2px;
}

.plan-cta {
  width: 100%;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: linear-gradient(165deg, #0a2540 0%, #1a4b7a 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonials .section-label {
  background: rgba(255, 255, 255, 0.1);
  color: var(--secondary-light);
  border-color: rgba(255, 255, 255, 0.15);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--secondary), #f97316);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
}

.testimonial-info .name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.testimonial-info .location {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.testimonials-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.testimonials-summary-item {
  text-align: center;
}

.testimonials-summary-item .big-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  display: block;
}

.testimonials-summary-item .label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- FAQ Section ---------- */
.faq {
  background: var(--bg);
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

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

.faq-item:hover {
  border-color: var(--primary-light);
}

.faq-item.active {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  text-align: left;
  gap: 16px;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--bg);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-light);
  transition: all var(--transition);
}

.faq-item.active .faq-toggle {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-box {
  background: linear-gradient(165deg, #0a2540 0%, #1a4b7a 45%, #0d4f6b 100%);
  border-radius: var(--radius-xl);
  padding: 48px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-box p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-phone {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.cta-phone .icon {
  font-size: 1.8rem;
  animation: phoneRing 2s ease-in-out infinite;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 28px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.cta-feature .icon {
  color: var(--accent);
}

/* ---------- Footer ---------- */
.footer {
  background: #050e1a;
  color: rgba(255, 255, 255, 0.5);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand .logo-text .logo-sub {
  color: rgba(255, 255, 255, 0.4);
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact .phone-big {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-contact .hours {
  font-size: 0.85rem;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-disclaimers {
  font-size: 0.72rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.3);
  max-width: 900px;
}

.footer-disclaimers p {
  margin-bottom: 8px;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ---------- Floating Call Button (Mobile) ---------- */
.floating-call-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 998;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.4);
  animation: floatPulse 3s ease-in-out infinite;
  text-decoration: none;
}

@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.4);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(16, 185, 129, 0.5);
  }
}

.floating-call-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(16, 185, 129, 0.3);
  animation: ringPulse 2s ease-out infinite;
}

@keyframes ringPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---------- Mobile Popup ---------- */
.mobile-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(5, 14, 26, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-popup-overlay.visible {
  display: flex;
  opacity: 1;
}

.mobile-popup {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-xl);
}

.mobile-popup-overlay.visible .mobile-popup {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-light);
  z-index: 2;
  transition: all var(--transition);
}

.popup-close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.popup-header {
  background: linear-gradient(165deg, #0a2540 0%, #1a4b7a 100%);
  padding: 36px 28px 28px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.popup-header::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.popup-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.popup-urgency-badge .dot {
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.popup-header h2 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.popup-header .save-amount {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin: 8px 0;
  position: relative;
  z-index: 1;
}

.popup-header .sub-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 1;
}

.popup-timer {
  background: rgba(0, 0, 0, 0.2);
  padding: 14px 20px;
  margin: 20px -28px -28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.popup-timer .icon {
  font-size: 1.1rem;
}

.popup-timer .timer-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 600;
}

.popup-timer .timer-value {
  color: var(--secondary-light);
  font-size: 1.1rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.popup-body {
  padding: 28px;
  text-align: center;
}

.popup-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.35);
  transition: all var(--transition);
  margin-bottom: 16px;
  text-decoration: none;
}

.popup-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(16, 185, 129, 0.45);
}

.popup-call-btn .phone-icon {
  font-size: 1.4rem;
  animation: phoneRing 1.5s ease-in-out infinite;
}

.popup-phone-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}

.popup-benefits {
  text-align: left;
  margin-bottom: 20px;
}

.popup-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}

.popup-benefits li .icon {
  color: var(--accent);
  font-size: 1.1rem;
  min-width: 20px;
}

.popup-dismiss {
  color: var(--text-lighter);
  font-size: 0.8rem;
  padding: 8px;
  transition: color var(--transition);
  background: none;
  border: none;
  cursor: pointer;
}

.popup-dismiss:hover {
  color: var(--text-light);
}

/* ---------- Page Specific (Inner Pages) ---------- */
.page-hero {
  padding: 160px 0 48px;
  background: linear-gradient(165deg, #0a2540 0%, #1a4b7a 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  background: var(--white);
  padding: 48px 0;
}

.page-content .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin: 36px 0 16px;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.page-content ul, .page-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.page-content ul {
  list-style: disc;
}

.page-content ol {
  list-style: decimal;
}

.page-content li {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 8px;
}

.page-content a {
  color: var(--primary-light);
  text-decoration: underline;
}

.page-content a:hover {
  color: var(--primary);
}

/* About page specific */
.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 32px 0;
}

.value-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-light);
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.value-card p {
  margin-bottom: 0;
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- Media Queries ---------- */

/* Small phones */
@media (max-width: 374px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .popup-header .save-amount {
    font-size: 2.2rem;
  }
}

/* Mobile (default styles above cover this) */
@media (max-width: 767px) {
  .floating-call-btn {
    display: flex;
  }

  .header-phone span:not(.icon) {
    display: none;
  }

  .header-phone {
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }

  .hero-ctas .btn-call {
    font-size: 1rem;
    padding: 18px 24px;
    width: 100%;
  }

  .hero-ctas .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .top-bar {
    padding: 8px 0;
    font-size: 0.75rem;
  }

  .footer-bottom {
    text-align: center;
  }

  body {
    padding-bottom: 90px;
  }
}

/* Tablet */
@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .container {
    padding: 0 32px;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .nav {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero {
    padding: 200px 0 100px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-ctas {
    flex-direction: row;
  }

  .trust-bar-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    padding: 64px 48px;
  }

  .cta-box h2 {
    font-size: 2.5rem;
  }

  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .section {
    padding: 100px 0;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .hero {
    padding: 220px 0 120px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

  .hero-visual {
    display: block;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .cta-box {
    padding: 80px 64px;
  }

  .about-values {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large Desktop */
@media (min-width: 1280px) {
  .hero h1 {
    font-size: 4rem;
  }

  .container {
    padding: 0 40px;
  }
}

/* ---------- Print Styles ---------- */
@media print {
  .header, .floating-call-btn, .mobile-popup-overlay, .top-bar {
    display: none !important;
  }

  .hero {
    background: #fff !important;
    color: #000 !important;
    padding-top: 20px !important;
  }

  .hero h1, .hero-description {
    color: #000 !important;
  }

  body {
    padding-bottom: 0 !important;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Mid-Page CTA Banner ---------- */
.mid-cta {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.06), rgba(245, 158, 11, 0.02));
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  margin: 40px 0;
}

.mid-cta h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.mid-cta p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.mid-cta .phone-display {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

/* ---------- Comparison Table ---------- */
.comparison-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 20px;
  font-style: italic;
}

/* ---------- FAQ page specific ---------- */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  justify-content: center;
}

.faq-cat-btn {
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--text-light);
  transition: all var(--transition);
  background: var(--white);
}

.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ---------- Counter Animation ---------- */
.counter {
  font-variant-numeric: tabular-nums;
}

/* ---------- Social Proof Toast ---------- */
.social-proof-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 997;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 340px;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  border-left: 4px solid var(--accent);
}

.social-proof-toast.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.social-proof-toast .toast-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
}

.social-proof-toast .toast-content {
  flex: 1;
  line-height: 1.4;
}

.social-proof-toast .toast-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
}

.social-proof-toast .toast-action {
  font-size: 0.78rem;
  color: var(--text-light);
}

.social-proof-toast .toast-time {
  font-size: 0.72rem;
  color: var(--text-lighter);
  display: flex;
  align-items: center;
  gap: 4px;
}

.social-proof-toast .toast-time .dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.social-proof-toast .toast-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  font-size: 0.7rem;
  color: var(--text-lighter);
  cursor: pointer;
  padding: 2px;
  line-height: 1;
}

/* ---------- Sticky Call Bar (Mobile) ---------- */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, #10b981, #059669);
  padding: 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.sticky-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}

.sticky-call-bar .sticky-icon {
  font-size: 1.2rem;
  animation: phoneRing 1.5s ease-in-out infinite;
}

.sticky-call-bar .sticky-text {
  font-weight: 800;
  letter-spacing: -0.3px;
}

.sticky-call-bar .sticky-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.3);
}

.sticky-call-bar .sticky-number {
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ---------- Live Activity Badge ---------- */
.live-activity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.live-activity .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

/* ---------- Top Bar Timer ---------- */
.top-bar-timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.2);
  padding: 2px 10px;
  border-radius: 50px;
  margin-left: 8px;
  font-weight: 800;
  color: #fbbf24;
  font-variant-numeric: tabular-nums;
}

.top-bar-timer .timer-icon {
  font-size: 0.8rem;
}

/* ---------- Media Query Updates for New Features ---------- */
@media (max-width: 767px) {
  .sticky-call-bar {
    display: block;
  }

  .floating-call-btn {
    display: none !important;
  }

  body {
    padding-bottom: 56px !important;
  }

  .social-proof-toast {
    left: 12px;
    right: 12px;
    bottom: 68px;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .social-proof-toast {
    bottom: 24px;
    left: 24px;
  }
}
