/* =====================
   GLOBAL
===================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #555555;
  line-height: 1.6;
}

/* =====================
   TOPBAR / HERO
===================== */
.topbar {
  text-align: center;
  padding: 48px 20px 32px;
}

.topbar h1 {
  color: #000000;
  margin-bottom: 8px;
  font-size: clamp(26px, 4vw, 36px);
}

.topbar .tagline {
  font-size: 15px;
  margin-bottom: 18px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}

.trust-badges span {
  background: #f5f5f5;
  padding: 6px 14px;
  border-radius: 20px;
}

/* =====================
   SERVICES GRID
===================== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  padding: 24px;
  max-width: 1100px;
  margin: auto;
}

.service-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 18px;
  padding: 26px 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.service-card::after {
  content: "→";
  position: absolute;
  right: 18px;
  bottom: 18px;
  font-size: 18px;
  color: #000;
  opacity: 0;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #000000;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card h3 {
  color: #000000;
  font-size: 18px;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 14px;
}

.service-card span {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  font-size: 14px;
}

/* =====================
   SERVICE INFO GRID
===================== */
.service-info {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}

.service-info h2 {
  text-align: center;
  color: #000;
  margin-bottom: 30px;
  font-size: clamp(20px, 3vw, 28px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.service-card.small {
  padding: 20px;
}

.service-card.small h4 {
  color: #000;
  font-size: 16px;
  margin-bottom: 6px;
}

.service-card.small p {
  font-size: 13px;
}

/* =====================
   NOTES & CTA
===================== */
.notes {
  text-align: center;
  padding: 24px 20px;
  font-size: 15px;
}

.notes p {
  margin: 6px 0;
}

.cta {
  text-align: center;
  padding: 36px 20px;
  background: #f8f8f8;
}

.cta h3 {
  color: #000;
  margin-bottom: 8px;
}

/* =====================
   MODAL
===================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #ffffff;
  padding: 32px 26px;
  border-radius: 18px;
  width: 92%;
  max-width: 420px;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-content h3 {
  color: #000000;
  margin-bottom: 20px;
}

/* =====================
   FORM
===================== */
label {
  font-size: 13px;
}

input {
  width: 100%;
  padding: 13px;
  margin: 8px 0 16px;
  border-radius: 12px;
  border: 1px solid #cccccc;
  font-size: 14px;
}

input:focus {
  outline: none;
  border-color: #000;
}

/* =====================
   BUTTONS
===================== */
button {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: #000000;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #333333;
}

button.secondary {
  background: #555555;
  margin-top: 10px;
}

button.secondary:hover {
  background: #444444;
}

/* =====================
   MOBILE OPTIMIZATION
===================== */
@media (max-width: 600px) {
  .topbar {
    padding: 32px 16px;
  }

  .service-card::after {
    display: none;
  }
}


.service-desc {
  font-size: 14px;
  margin-bottom: 16px;
  color: #555;
}

