/* ---------- Reset ---------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f6f4f1;
  color: #1a1a1a;
  line-height: 1.6;
}

/* ---------- Navigation ---------- */

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.logo {
  font-weight: 500;
}

/* ---------- Hero Section ---------- */

.hero {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  max-width: 500px;
}

.cta-primary {
  display: inline-block;
  padding: 12px 26px;
  background: #1a1a1a;
  color: white;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
}

.meta {
  margin-top: 20px;
  font-size: 13px;
  color: #777;
}

/* ---------- Card ---------- */

.hero-card {
  background: white;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hero-card h3 {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
}

.hero-card textarea {
  width: 100%;
  height: 120px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  resize: none;
  margin-bottom: 16px;
}

.hero-card button {
  width: 100%;
  padding: 12px;
  background: #2a66d9;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}

/* ---------- Footer ---------- */

.footer {
  max-width: 1200px;
  margin: 120px auto 40px;
  padding: 0 20px;
  font-size: 13px;
  color: #777;
  display: flex;
  justify-content: space-between;
}

.footer a {
  margin-left: 16px;
  text-decoration: none;
  color: #777;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 42px;
  }
}
