
body {
  font-family: 'Inter', sans-serif;
  font-display: swap;
  margin: 0;
  background: #f7f9fb;
  color: #222;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 800;
}

.logo-img {
  height: 50px;
  width: auto;
  margin-right: 10px;
}

main {
  flex: 1 0 auto;
}

.hero {
  padding: 0.2rem 1.5rem 0.5rem;
  background: #ffffff;
  text-align: center;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-text {
  max-width: 100%;
  text-align: left;
}

.hero h1 {
  font-size: 1.82rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.2px;
  margin: 0 0 0.1rem;
}

.hero h1 strong {
  font-weight: 800;
}

.hero p {
  font-size: 0.85rem;
  font-weight: 400;
  color: #333;
  margin: 0;
}

.hero-img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.services {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0.5rem 1rem;
  flex-wrap: wrap;
  background: #f0f4f8;
}

.card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  width: 280px;
  position: relative;
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.featured {
  transform: scale(1.05);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card h2 {
  margin-bottom: 0.3rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.price-badge {
  display: inline-block;
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.15);
  color: white;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 10px;
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
}

.btn-card {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.orange { background: #ff8c42; }
.violet { background: #8e44ad; }
.blue { background: #1e90ff; }

.btn-card.orange { background: #e86800; }
.btn-card.violet { background: #6c2dbf; }
.btn-card.blue   { background: #0074e4; }

.card-info {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: white;
  font-weight: 500;
}

.badge-reco {
  position: absolute;
  top: -12px;
  right: -12px;
  background: gold;
  color: #222;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.75rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0.8rem 0.5rem;
  font-size: 0.9rem;
  background: #ffffff;
}

.proof {
  text-align: center;
  background: #eef2f5;
  padding: 2rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #444;
}

.footer-bar {
  background: #1e90ff;
  color: white;
  text-align: center;
  padding: 0.3rem 0.5rem;
  font-weight: bold;
  font-size: 0.8rem;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 1rem 0.5rem;
  font-size: 0.8rem;
  margin: 0;
}

footer a, .footer-mail {
  color: #bbb;
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 0.78rem;
}

.hero-text h1 + p {
  margin-top: 1.2rem;
}

/* SEO HIDDEN CONTENT */
.seo-hidden {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
