/* =====================
   BASE SYSTEM
===================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

body {
  background: #f6f3ee;
  color: #111;
  line-height: 1.5;
}

/* =====================
   LAYOUT
===================== */

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

/* =====================
   HEADER
===================== */

.header {
  padding: 20px 0;
  border-bottom: 1px solid #e7e2db;
}

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

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

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
}

/* =====================
   HERO
===================== */

.hero {
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.hero h2 {
  font-size: 22px;
  margin-top: 10px;
  color: #2f3b2f;
}

.hero p {
  margin-top: 20px;
  color: #555;
}

.hero-media img {
  width: 100%;
  border-radius: 12px;
}

/* =====================
   METRICS
===================== */

.metrics {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #444;
}

/* =====================
   BUTTONS
===================== */

.cta {
  margin-top: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  margin-right: 10px;
  font-weight: 500;
}

.primary {
  background: #2f3b2f;
  color: white;
}

.secondary {
  border: 1px solid #2f3b2f;
  color: #2f3b2f;
}

.large {
  padding: 16px 22px;
}

/* =====================
   SECTIONS
===================== */

.section {
  padding: 80px 0;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

/* =====================
   GRID SYSTEM
===================== */

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  padding: 15px;
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* =====================
   INTELLIGENCE
===================== */

.dark {
  background: #1f2a1f;
  color: white;
}

.feature h3 {
  margin-bottom: 10px;
}

/* =====================
   TRUST
===================== */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  color: #333;
}

/* =====================
   CTA SECTION
===================== */

.cta-section {
  padding: 80px 0;
  text-align: center;
  background: #fff;
}

.cta-section p {
  margin: 15px 0 25px;
  color: #555;
}

/* =====================
   FOOTER
===================== */

.footer {
  padding: 40px 0;
  border-top: 1px solid #e7e2db;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

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