/* =========================
   GLOBAL VARIABLES
========================= */
:root {
  --accent: #2563eb;
}

/* =========================
   RESET & BASE
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #f9fafb;
  color: #111;
  line-height: 1.6;
}

/* =========================
   NAVBAR
========================= */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 12px 60px;
  background: #fff;

  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.logo img {
  height: 100px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-size: 15px;
  line-height: 1;
}

.nav-links a:hover {
  opacity: 0.6;
}

/* =========================
   LAYOUT
========================= */
.container {
  max-width: 900px;
  padding: 80px 40px;
}

.container > h1 {
  margin-bottom: 12px;
}

.container > p {
  max-width: 700px;
}

/* =========================
   HOME GRID
========================= */
.home-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: stretch;
}


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

/* =========================
   HOME LAYOUT OVERRIDE
========================= */
.home-container {
  max-width: 1200px;
}


/* =========================
   TYPOGRAPHY
========================= */
h1 {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #111;
}

p {
  font-size: 18px;
  color: #374151;
}

/* =========================
   CTA
========================= */
.cta {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 28px;
  border-radius: 12px;

  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.cta:hover {
  opacity: 0.9;
}

/* =========================
   CARDS
========================= */
.card-group {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 60px;
  max-width: 720px;
}

.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 32px;

  box-shadow: 0 1px 2px rgba(0,0,0,0.04);

  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}


.card p {
  font-size: 16px;
  color: #4b5563;
}


.card span {
  font-size: 14px;
  color: var(--accent);
}

/* =========================
   CARD ICONS (LUCIDE)
========================= */
.card-icon {
  margin-bottom: 16px;
}

.card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

/* =========================
   IMAGE CARDS
========================= */

.image-card {
  padding: 0;
  border: none;
  overflow: hidden;
  position: relative;
}

.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}
