/* =========================
   BASE RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #f7f9fc;
  color: #1a1a1a;
  line-height: 1.6;
}

/* =========================
   CONTAINER
========================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   TOP BAR
========================= */
.top-bar {
  position: sticky;
  top: 0;
  background: #0057b8;
  color: white;
  padding: 12px 0;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.top-bar .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-weight: 700;
  font-size: 18px;
}

.call-btn-small {
  background: #00c853;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.call-btn-small:hover {
  transform: scale(1.05);
}

/* =========================
   HERO
========================= */
.hero {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #0057b8, #00b4d8);
  color: white;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
  opacity: 0.95;
}

.hero-cta {
  margin-top: 30px;
}

.call-btn-large {
  display: inline-block;
  background: #00c853;
  color: white;
  padding: 16px 30px;
  font-size: 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.call-btn-large:hover {
  transform: translateY(-3px);
}

.subtext {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.9;
}

.trust-row {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 70px 0;
}

.section.alt {
  background: #ffffff;
}

h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

h3 {
  margin-bottom: 10px;
}

/* =========================
   GRID CARDS
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* =========================
   TWO COLUMN
========================= */
.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: center;
}

/* =========================
   CENTER
========================= */
.center {
  text-align: center;
  margin-top: 30px;
}

/* =========================
   FAQ
========================= */
.faq-item {
  background: white;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-item h4 {
  margin-bottom: 8px;
}

/* =========================
   FINAL CTA
========================= */
.final-cta {
  background: linear-gradient(135deg, #00b4d8, #0057b8);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.final-cta h2 {
  color: white;
}

.final-cta p {
  margin-bottom: 20px;
}

/* =========================
   FOOTER
========================= */
footer {
  background: #0f172a;
  color: white;
  text-align: center;
  padding: 30px 0;
}

footer a {
  color: #00b4d8;
  text-decoration: none;
  margin: 0 5px;
}

/* =========================
   FLOATING CALL BUTTON
========================= */
.floating-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #00c853;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  animation: pulse 2s infinite;
}

/* =========================
   ANIMATION
========================= */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 26px;
  }

  .call-btn-large {
    font-size: 18px;
    padding: 14px 22px;
  }
}