* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f8f9fc;
    color: #1f2937;
}

/* NAV */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    background: white;
}

.logo {
    font-weight: 700;
    font-size: 22px;
}

.menu a {
    margin: 0 12px;
    text-decoration: none;
    color: #374151;
}

.actions a {
    margin-right: 15px;
    color: #374151;
    text-decoration: none;
}

.actions button {
    background: #2563eb;
    border: none;
    padding: 10px 18px;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

button:hover{
    background: #294cbe;
}   

/* HERO */
.hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(135deg, #1b9280, #17bda4);
    color: white;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary {
    margin-top: 15px;
    background: white;
    color: #2563eb;
    border: none;
    padding: 15px 28px;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
}

/* WHY */
.why {
    padding: 80px 20px;
    text-align: center;
}

.why h2 {
    font-size: 32px;
    margin-bottom: 50px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 18px;
}

.card h3 {
    margin-top: 15px;
    margin-bottom: 10px;
}

.card p {
    color: #6b7280;
}

/* ICONS */
.icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: auto;
}

.blue { background: #dbeafe; color: #2563eb; }
.purple { background: #ede9fe; color: #7c3aed; }
.green { background: #dcfce7; color: #16a34a; }
.orange { background: #ffedd5; color: #ea580c; }

/* SERVICES */
.services {
    text-align: center;
    padding: 100px 20px;
}

.btn-secondary {
    margin-top: 25px;
    padding: 14px 26px;
    border-radius: 10px;
    border: none;
    background: #2563eb;
    color: white;
    cursor: pointer;
}

/* CTA */
.cta {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #1b9280, #17bda4);
    color: white;
}

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

    .menu {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

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

    .nav {
        padding: 16px 20px;
    }
}

/* FOOTER */
.footer-icons {
  background: linear-gradient(135deg, #f8f8f8, #b7c2c1);
  color: #e5e7eb;
  padding: 60px 20px 20px;
}

.footer-wrap {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.footer-card {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  padding: 25px;
  backdrop-filter: blur(6px);
}

.footer-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #252a2d;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-card a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #0a0a0b;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 0;
  transition: all 0.25s ease;
}

.footer-card a i {
  width: 18px;
  text-align: center;
}

.footer-card a:hover {
  color: #547f8d;
  transform: translateX(6px);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

/* END */