* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
  padding-bottom: 70px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Bar */
.top-bar {
  background: #0a2540;
  color: white;
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 600;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.top-bar-tagline {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-phone {
  color: #4fc3f7 !important;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap !important;
  flex-shrink: 0;
  display: inline-block;
}

/* Header */
header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

.logo {
  height: 85px;
  width: auto;
  object-fit: contain;
  transition: height 0.2s ease;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
}

.btn-nav {
  background: #0066cc;
  color: white !important;
  padding: 10px 18px;
  border-radius: 6px;
  transition: background 0.2s;
}

.btn-nav:hover {
  background: #004d99;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #f0f7ff 0%, #e0f0fe 100%);
  padding: 50px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: #e1f0ff;
  color: #0056b3;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: #0a2540;
  margin-bottom: 15px;
}

.hero-sub {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 25px;
}

.hero-ctas {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.btn-primary {
  background: #0066cc;
  color: white;
  padding: 16px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  border: none;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
  background: #004d99;
}

.btn-primary.large {
  font-size: 1.3rem;
  padding: 18px 36px;
}

.micro-trust {
  font-size: 0.85rem;
  color: #555;
  font-weight: 600;
}

.hero-image img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ULTRA COMPACT SINGLE REVIEW SECTION */
.reviews-section {
  background: #ffffff;
  padding: 10px 0;
  border-bottom: 1px solid #e0e6ed;
}

.review-box {
  max-width: 550px;
  margin: 0 auto;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 14px;
}

.review-top-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid #e2e8f0;
}

.g-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #0a2540;
}

.g-icon {
  background: #4285f4;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.stars {
  font-size: 0.75rem;
}

.review-slide {
  margin: 0;
}

.review-text {
  font-size: 0.85rem;
  color: #334155;
  font-style: italic;
  margin-bottom: 2px;
  line-height: 1.3;
}

.review-author {
  font-size: 0.78rem;
  font-weight: 700;
  color: #0a2540;
  display: block;
  text-align: right;
}

/* Trust Bar */
.trust-bar {
  background: #0a2540;
  color: white;
  padding: 18px 0;
  border-top: 3px solid #0066cc;
}

.trust-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.95rem;
}

/* Services */
.services {
  padding: 70px 0;
  background: #f8fafc;
}

.services h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #0a2540;
  margin-bottom: 10px;
}

.section-sub {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.service-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #eef2f6;
}

.service-card.highlight-card {
  border: 2px solid #0066cc;
  background: #f0f7ff;
}

.svg-icon {
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
  color: #0066cc;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.svg-icon.alert-icon {
  color: #d9381e;
}

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

.service-card h3 {
  font-size: 1.25rem;
  color: #0a2540;
  margin-bottom: 8px;
}

/* CTA Banner */
.cta-banner {
  background: #0a2540;
  color: white;
  text-align: center;
  padding: 70px 20px;
}

.cta-banner h2 {
  font-size: 2.3rem;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* Footer */
footer {
  background: #0a192f;
  color: #a8b2d1;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo {
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

footer h3 {
  color: white;
  margin-bottom: 12px;
}

footer a {
  color: #4fc3f7;
  text-decoration: none;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #233554;
  font-size: 0.85rem;
}

/* Fixed Mobile Bottom Call Bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0066cc;
  padding: 14px 10px;
  padding-bottom: max(14px, env(safe-area-inset-bottom));
  text-align: center;
  z-index: 99999;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.25);
}

.btn-mobile-call {
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  body {
    padding-bottom: 80px;
  }

  .logo {
    height: 70px;
  }

  .top-bar {
    font-size: 0.78rem;
  }

  .mobile-call-bar {
    display: block !important;
  }

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

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

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

  nav {
    display: none;
  }

  .trust-grid {
    flex-direction: column;
    text-align: center;
  }
}