/* Webeye.tech — shared site styles. Link this on every page:
   <link rel="stylesheet" href="style.css"> */

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: #18211F;
  background: #ffffff;
  line-height: 1.6;
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* Nav */
.site-nav {
  border-bottom: 1px solid #eee;
  padding: 18px 0;
}
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 18px; font-weight: 700; text-decoration: none; color: #18211F; }
.nav-links { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; color: #333; font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: #0F6E56; }
.has-dropdown { position: relative; }
.has-dropdown:hover .dropdown { display: flex; }
.dropdown {
  display: none; flex-direction: column; position: absolute; top: 26px; left: 0;
  background: #fff; border: 1px solid #eee; border-radius: 10px; padding: 8px;
  min-width: 200px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); z-index: 10;
}
.dropdown a { padding: 8px 10px; border-radius: 6px; font-size: 14px; }
.dropdown a:hover { background: #f7f7f5; }
.nav-cta {
  background: #0F6E56; color: #fff; text-decoration: none;
  padding: 9px 18px; border-radius: 8px; font-size: 14px; font-weight: 600;
}

/* Hero */
.hero { text-align: center; padding: 64px 0 56px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #E1F5EE; color: #085041; font-size: 13px;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 16px;
}
h1 { font-size: 38px; font-weight: 700; line-height: 1.25; margin: 0 0 16px; }
h2 { font-size: 26px; font-weight: 700; margin: 0 0 12px; }
h3 { font-size: 18px; font-weight: 600; margin: 0 0 8px; }
.lead { font-size: 17px; color: #555; max-width: 560px; margin: 0 auto 28px; }

.btn-primary {
  display: inline-block; background: #0F6E56; color: #fff;
  text-decoration: none; padding: 14px 30px; border-radius: 8px;
  font-size: 16px; font-weight: 600;
}
.btn-secondary {
  display: inline-block; background: transparent; color: #0F6E56;
  text-decoration: none; padding: 13px 28px; border-radius: 8px;
  font-size: 16px; font-weight: 600; border: 1.5px solid #0F6E56;
}

/* Sections */
section { padding: 56px 0; }
section.alt { background: #f7f7f5; }
.section-label { font-size: 13px; font-weight: 700; color: #0F6E56; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }

/* Cards / grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: #f7f7f5; border-radius: 12px; padding: 24px;
}
.card p { color: #555; font-size: 15px; margin: 0; }
.num {
  width: 32px; height: 32px; border-radius: 50%;
  background: #E1F5EE; color: #085041; display: flex; align-items: center;
  justify-content: center; font-size: 14px; font-weight: 700; margin-bottom: 12px;
}

/* Footer */
footer { border-top: 1px solid #eee; padding: 40px 0; margin-top: 40px; }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
footer a { color: #555; text-decoration: none; font-size: 14px; }
.foot-links { display: flex; gap: 20px; list-style: none; padding: 0; margin: 0; }
.copyright { font-size: 13px; color: #999; }

@media (max-width: 640px) {
  .nav-links { display: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  h1 { font-size: 28px; }
}
