* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, sans-serif; color: #1f2937; background: #ffffff; line-height: 1.6; }
.topbar { display: flex; justify-content: space-between; align-items: center; padding: 18px 6%; background: #111827; color: white; position: sticky; top: 0; z-index: 5; }
.brand { display: flex; align-items: center; gap: 12px; }
.logo { width: 58px; height: 58px; background: #f59e0b; color: #111827; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 22px; }
.brand h1 { margin: 0; font-size: 24px; }
.brand p { margin: 0; color: #d1d5db; font-size: 14px; }
nav a { color: white; text-decoration: none; margin-left: 20px; font-weight: bold; }
.hero { display: grid; grid-template-columns: 1.6fr 1fr; gap: 28px; padding: 80px 6%; background: linear-gradient(120deg, #111827, #374151); color: white; }
.eyebrow { color: #fbbf24; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }
.hero h2 { font-size: 48px; line-height: 1.1; margin: 10px 0; }
.hero p { font-size: 18px; color: #e5e7eb; }
.buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn { padding: 14px 20px; border: 2px solid #f59e0b; color: white; text-decoration: none; border-radius: 8px; font-weight: bold; }
.btn.primary { background: #f59e0b; color: #111827; }
.hero-card { background: white; color: #111827; padding: 26px; border-radius: 18px; box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
.hero-card h3 { margin-top: 0; }
.section { padding: 64px 6%; }
.section h2 { text-align: center; font-size: 36px; margin-top: 0; }
.light { background: #f3f4f6; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { padding: 24px; border: 1px solid #e5e7eb; border-radius: 16px; background: white; box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.card h3 { margin-top: 0; color: #111827; }
.center { text-align: center; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
.placeholder { height: 180px; border-radius: 14px; background: #d1d5db; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #374151; }
.socials { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin: 24px 0; }
.socials a { background: #111827; color: white; padding: 14px 24px; border-radius: 8px; text-decoration: none; font-weight: bold; }
.quote { background: #111827; color: white; }
.quote p { text-align: center; color: #e5e7eb; }
form { max-width: 760px; margin: 24px auto 0; display: grid; gap: 14px; }
input, select, textarea { padding: 15px; border: none; border-radius: 8px; font-size: 16px; }
textarea { min-height: 130px; }
button { padding: 16px; border: none; border-radius: 8px; background: #f59e0b; color: #111827; font-size: 18px; font-weight: bold; cursor: pointer; }
footer { text-align: center; padding: 38px 6%; background: #0b1220; color: white; }
.small { font-size: 14px; color: #9ca3af; }

@media (max-width: 800px) {
  .topbar { flex-direction: column; gap: 14px; text-align: center; position: static; }
  nav a { display: inline-block; margin: 5px 8px; }
  .hero { grid-template-columns: 1fr; padding: 48px 6%; }
  .hero h2 { font-size: 36px; }
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
}
