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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #F5F5F5;
  color: #212121;
  line-height: 1.5;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

:root {
  --primary-blue: #1E88E5;
  --secondary-green: #43A047;
  --dark-gray: #212121;
  --light-gray: #F5F5F5;
  --white: #FFFFFF;
}

header {
  background-color: var(--dark-gray);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 18px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  align-items: center;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

.header-cta {
  padding: 8px 16px;
  border-radius: 999px;
  background-color: var(--secondary-green);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.hero {
  background: radial-gradient(circle at top left, #263238, #000000);
  color: var(--white);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url('https://images.pexels.com/photos/845451/pexels-photo-845451.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.hero-content {
  flex: 1 1 320px;
}

.hero-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #B0BEC5;
  margin-bottom: 10px;
}

.hero h1 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-sub {
  font-size: 15px;
  color: #CFD8DC;
  margin-bottom: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.badge {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 12px;
  font-size: 12px;
  color: #ECEFF1;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.btn-primary,
.btn-secondary {
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: var(--secondary-green);
  color: var(--white);
  border: none;
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  background-color: #fff;
}

.hero-note {
  font-size: 12px;
  color: #B0BEC5;
}

.hero-visual {
  flex: 1 1 260px;
  min-height: 260px;
  border-radius: 16px;
  background: radial-gradient(circle at top, #1E88E5, #000000);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-visual-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.metric-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 10px;
  font-size: 12px;
}

.metric-label {
  color: #B0BEC5;
  margin-bottom: 4px;
}

.metric-value {
  font-size: 16px;
  font-weight: 700;
}

.hero-zones {
  margin-top: 16px;
  font-size: 11px;
  color: #CFD8DC;
}

.section {
  padding: 45px 0;
  background-color: var(--light-gray);
}

.section.alt {
  background-color: var(--white);
}

.section h2 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--dark-gray);
}

.section-sub {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.icon-card {
  background-color: var(--white);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.icon-card-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-card-title img {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  object-fit: cover;
}

.icon-card-text {
  font-size: 13px;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.service-card {
  background-color: var(--white);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  color: #555;
  margin-bottom: 12px;
}

.service-card ul {
  font-size: 13px;
  color: #555;
  margin-left: 18px;
  margin-bottom: 12px;
}

.service-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  max-height: 140px;
  object-fit: cover;
}

.faq-item {
  margin-bottom: 14px;
}

.faq-question {
  font-weight: 600;
  font-size: 14px;
}

.faq-answer {
  font-size: 13px;
  color: #555;
}

.cta-banner {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
  color: var(--white);
  padding: 28px 0;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

footer {
  background-color: #111;
  color: #CFD8DC;
  padding: 26px 0 18px;
  font-size: 12px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.footer-col {
  max-width: 260px;
}

.footer-col h4 {
  font-size: 13px;
  margin-bottom: 8px;
  color: #ECEFF1;
}

.footer-links a {
  display: block;
  color: #B0BEC5;
  text-decoration: none;
  margin-bottom: 4px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #263238;
  padding-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.page-hero {
  padding: 40px 0 20px;
  background: #ECEFF1;
}

.page-hero h1 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 26px;
  margin-bottom: 6px;
}

.page-hero p {
  font-size: 14px;
  color: #555;
}

.page-body {
  padding: 30px 0 50px;
}

.page-body p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #444;
}

.page-body ul {
  margin-left: 20px;
  margin-bottom: 14px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 10px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero-inner {
    flex-direction: column;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top {
    flex-direction: column;
  }
}
