/* =====================================================
   SYMCOSYS – DESIGN SYSTEM
   ===================================================== */

:root {
  --green: #1FA76C;
  --green-dark: #0f3d2b;
  --text-primary: #0b1220;
  --text-muted: #5f6f7a;
  --bg-light: #f4fdf8;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(0,0,0,0.05);
}

/* ===============================
   RESET
   =============================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg-light);
  color: var(--text-muted);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* ===============================
   LAYOUT
   =============================== */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* ===============================
   TYPOGRAPHY
   =============================== */
h1, h2, h3, h4 {
  color: var(--text-primary);
  margin-bottom: 12px;
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.4rem; }

/* ===============================
   LINKS & BUTTONS
   =============================== */
a {
  color: var(--green);
  text-decoration: none;
}

.btn {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
}

/* ===============================
   HEADER
   =============================== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid #e6f2ec;
}

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

.logo a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
}

.main-nav a {
  margin-left: 20px;
  font-weight: 500;
  color: var(--text-primary);
}

.main-nav a:hover {
  color: var(--green);
}

/* ===============================
   SECTIONS
   =============================== */
section {
  background: var(--white);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ===============================
   HERO
   =============================== */
.hero {
  background: linear-gradient(135deg, #e9fbf3, #f4fdf8);
  text-align: center;
  padding: 70px 30px;
}

/* ===============================
   CTA
   =============================== */
.cta {
  background: var(--green);
  color: var(--white);
  text-align: center;
}

/* ===============================
   FAQ
   =============================== */
.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

/* ===============================
   🔥 CARDS — FIXED GRID 🔥
   =============================== */
.cards-grid {
  display: grid;
  gap: 20px;
  width: 100%;
}

.cards-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.cards-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* ===============================
   SERVICE
   =============================== */
.service-block {
  display: flex;
  gap: 30px;
  align-items: center;
}

.service-image {
  max-width: 40%;
  border-radius: 12px;
}

/* ===============================
   FOOTER
   =============================== */
.site-footer {
  background: var(--green-dark);
  color: #cfe8dd;
  padding: 30px 20px;
  text-align: center;
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr !important;
  }

  .service-block {
    flex-direction: column;
  }

  .service-image {
    max-width: 100%;
  }
}