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

/* BASE */
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #0B1F3B;
  line-height: 1.4;
}

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

/* SECTIONS */
section {
  padding: 35px 0;
}

/* HEADINGS */
h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
}

h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* CENTER HEADINGS */
section.section h2,
section.cta h2 {
  text-align: center !important;
}

/* HERO */
.hero {
  background: #0B1F3B;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.hero p {
  max-width: 650px;
  margin: 0 auto 14px;
  color: #ffffff;
}

/* LOGO */
.logo {
  display: block;
  margin: 0 auto 16px auto;
  width: 260px;
  max-width: 260px;
}

/* TRUST */
.trust {
  text-align: center;
  padding: 14px 20px;
}

.trust-text {
  font-weight: 700;
  color: #0B1F3B;
  line-height: 1.6;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 20px;
  margin: 6px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.primary {
  background: #F2C200;
  color: #0B1F3B;
}

.secondary {
  background: white;
  color: #0B1F3B;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* CARDS */
.card {
  background: white;
  padding: 18px;
  border-radius: 10px;
  border-top: 3px solid #F2C200;
}

/* CTA */
.cta {
  background: #0B1F3B;
  color: white;
  text-align: center;
  padding: 55px 20px;
}

.cta-text {
  color: #ffffff !important;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 14px;
  background: #111;
}

footer p {
  color: #ffffff !important;
}

/* MOBILE */
@media (max-width: 768px) {

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

  h1 {
    font-size: 28px;
  }

  .logo {
    width: 180px;
  }

  section {
    padding: 28px 0;
  }

  .hero {
    padding: 50px 20px;
  }
}

/* 📞 STICKY CALL BUTTON */
.sticky-call {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #F2C200;
  color: #0B1F3B;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 9999;
  display: none;
}

@media (max-width: 768px) {
  .sticky-call {
    display: block;
  }
}

.sticky-call:active {
  transform: translateX(-50%) scale(0.97);
}
