/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body {
  background: var(--deep);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
button { cursor:pointer; font-family:inherit; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: var(--section-pad) 0; }
.section-navy { background: var(--navy); }

/* ============================================================
   SECTION TYPOGRAPHY
   ============================================================ */
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: 2px;
  line-height: 0.97;
  color: var(--white);
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent-bright), var(--water-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 16px;
  color: var(--silver);
  max-width: 560px;
  line-height: 1.75;
  font-weight: 400;
}
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align:center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* Accent line */
.accent-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--water-light));
  border-radius: 2px;
  margin: 16px 0;
  box-shadow: 0 0 16px var(--accent-glow);
}
.accent-line.centered { margin: 16px auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s ease;
}
.btn:hover::after { background: rgba(255,255,255,0.06); }

.btn-fire {
  background: linear-gradient(135deg, var(--orange) 0%, #ff8f00 60%, #ffab00 100%);
  color: #fff;
  box-shadow: 0 6px 24px var(--orange-glow);
}
.btn-fire:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255,109,0,0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--accent-bright);
  border: 1.5px solid rgba(66,165,245,0.35);
}
.btn-ghost:hover {
  background: rgba(33,150,243,0.08);
  border-color: var(--accent-bright);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(33,150,243,0.18);
}
.btn svg { width:17px; height:17px; fill:currentColor; flex-shrink:0; }

/* ============================================================
   PILLS / BADGES
   ============================================================ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
}
.pill-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  box-shadow: 0 3px 16px var(--orange-glow);
}
.pill-blue {
  background: rgba(33,150,243,0.1);
  color: var(--accent-bright);
  border: 1px solid rgba(33,150,243,0.25);
}
.pill .dot {
  width: 7px; height: 7px;
  background: currentColor;
  border-radius: 50%;
  animation: dot-pulse 1.8s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.3; transform:scale(0.7); }
}

/* ============================================================
   FLOATING EMERGENCY BUTTON (mobile)
   ============================================================ */
.emergency-float {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 6px 28px var(--orange-glow);
  transition: transform 0.2s ease;
}
.emergency-float:hover { transform: scale(1.1); }
.emergency-float::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: rgba(255,109,0,0.22);
  animation: ring-pulse 2s ease-out infinite;
}
.emergency-float svg { width:24px; height:24px; fill:#fff; position:relative; z-index:1; }
@keyframes ring-pulse {
  0%   { transform:scale(1); opacity:0.6; }
  100% { transform:scale(1.7); opacity:0; }
}
@media (max-width:900px) { .emergency-float { display:flex; } }
