
/* Global Box Sizing & Mobile Viewport Constraints */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
  position: relative !important;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  color: #334155;
}

/* Gradient accent text */
.gradient-text {
  background: linear-gradient(135deg, #1d4ed8, #0891b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-warm {
  background: linear-gradient(135deg, #ea580c, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header scroll */
.header-scrolled {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04) !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

/* Hero Background (overflow-hidden to prevent pseudo-element spillover) */
.hero-bg {
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 40%, #f8fafc 60%, #eff6ff 100%);
  position: relative;
  overflow: hidden !important;
  max-width: 100vw;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,78,216,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,145,178,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Corporate card */
.corp-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}
.corp-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08), 0 8px 24px rgba(0,0,0,0.04);
  transform: translateY(-2px);
  border-color: #cbd5e1;
}

/* Stat card */
.stat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

/* ZIP item */
.zip-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease;
}
.zip-item:hover {
  background: #eff6ff;
  border-color: #93c5fd;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29,78,216,0.08);
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* FAQ */
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer.open { max-height: 500px; }
.faq-icon { transition: transform 0.3s ease; }
.faq-icon.rotated { transform: rotate(45deg); }

/* Phone pulse */
@keyframes phonePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(234,88,12,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(234,88,12,0); }
}
.phone-pulse { animation: phonePulse 2s ease-in-out infinite; }

/* Section divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

/* Feature icon container */
.icon-container {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Table stripe */
.table-row:nth-child(even) { background: #f8fafc; }
.table-row:hover { background: #eff6ff; }
