/* =====================================================
   DESIGN TOKENS
===================================================== */

:root {
  --primary: #1f4fd8;
  --primary-dark: #163ca8;
  --accent: #22c1dc;
  --bg-light: #f6f8fc;
  --text-dark: #1a1a1a;
  --text-muted: #666;
  --card-bg: #ffffff;
  --radius: 10px;
}


/* =====================================================
   GLOBAL BASE
===================================================== */

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}


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

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.3px;
}

nav a {
  margin-left: 22px;
  color: var(--text-muted);
  font-weight: 500;
}

nav a:hover {
  color: var(--primary);
}


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

.hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #eef3ff, #f9fbff);
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.hero p {
  max-width: 680px;
  margin: auto;
  color: var(--text-muted);
  font-size: 18px;
}


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

.section {
  padding: 80px 0;
}

.section.light {
  background: var(--bg-light);
}

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

.section p {
  color: var(--text-muted);
  max-width: 720px;
}


/* =====================================================
   GRID & CARDS
===================================================== */

.grid,
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}

.card h3 {
  margin-top: 0;
}


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

.btn,
.btn-outline {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all .2s ease;
}

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

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}


/* =====================================================
   CONTACT FORM
===================================================== */

.contact-form {
  max-width: 640px;
  margin-top: 30px;
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 16px;
}


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

.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
}
