* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background: #ffffff;
}

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

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

.header {
  position: sticky;
  top: 0;
  background: #0d0d0d;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

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

.logo {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.logo span { color: #d4a017; }

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: #f0f0f0;
  font-weight: 400;
  transition: color 0.2s;
}

.nav a:hover { color: #d4a017; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 3px;
  background: #fff;
}

.hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #262626 100%);
  color: #fff;
  padding: 120px 0 100px;
  text-align: center;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  max-width: 750px;
  margin: 0 auto 20px;
}

.hero h1 span { color: #d4a017; }

.hero p {
  max-width: 600px;
  margin: 0 auto 32px;
  color: #cfcfcf;
  font-size: 1.05rem;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s;
}

.btn-primary {
  background: #d4a017;
  color: #0d0d0d;
}

.btn-primary:hover { background: #b8880f; }

.btn-outline {
  border: 2px solid #d4a017;
  color: #d4a017;
  background: transparent;
}

.btn-outline:hover { background: #d4a017; color: #0d0d0d; }

.usp {
  background: #f7f5f0;
  padding: 50px 0;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.usp-item h3 {
  color: #d4a017;
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.usp-item p { color: #444; font-size: 0.95rem; }

.section { padding: 90px 0; }
.section.alt { background: #f7f5f0; }

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #0d0d0d;
}

.section-title.left { text-align: left; margin-bottom: 24px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card h3 {
  margin-bottom: 12px;
  color: #0d0d0d;
  font-size: 1.15rem;
}

.card p { color: #555; font-size: 0.95rem; }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.about-text p { margin-bottom: 16px; color: #444; }

.check-list {
  list-style: none;
  margin-top: 20px;
}

.check-list li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  color: #333;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d4a017;
  font-weight: 700;
}

.about-image {
  height: 360px;
  border-radius: 10px;
  background: url('https://images.unsplash.com/photo-1552519507-da3b142c6e3d?auto=format&fit=crop&w=800&q=80') center/cover;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.price-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 34px 28px;
  text-align: center;
}

.price-card.featured {
  border: 2px solid #d4a017;
  transform: scale(1.03);
}

.price-card h3 { margin-bottom: 12px; font-size: 1.2rem; }

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4a017;
  margin-bottom: 20px;
}

.price-card ul {
  list-style: none;
  margin-bottom: 24px;
  text-align: left;
}

.price-card ul li {
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #444;
  font-size: 0.92rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info p { margin-bottom: 12px; color: #333; }

.socials {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.socials a {
  padding: 8px 16px;
  border: 1px solid #0d0d0d;
  border-radius: 20px;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.socials a:hover { background: #0d0d0d; color: #fff; }

.contact-form {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form h3 { margin-bottom: 10px; }

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-note {
  color: #2a8f4b;
  font-size: 0.9rem;
  min-height: 20px;
}

.footer {
  background: #0d0d0d;
  color: #cfcfcf;
  padding: 34px 0;
  text-align: center;
  font-size: 0.88rem;
}

.footer-inner { display: flex; flex-direction: column; gap: 8px; }

.footer a { color: #d4a017; }

.policy { max-width: 800px; padding: 40px 20px; }
.policy h1 { margin-bottom: 24px; }
.policy h2 { margin: 28px 0 10px; color: #0d0d0d; }
.policy p { color: #444; margin-bottom: 8px; }
.policy .updated { margin-top: 30px; font-style: italic; color: #888; }

@media (max-width: 900px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #0d0d0d; padding: 20px; gap: 16px; }
  .nav.open { display: flex; }
  .burger { display: flex; }
  .cards { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}