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

:root {
  --primary: #d4a017;
  --primary-dark: #b3860e;
  --dark: #14161a;
  --dark-2: #1e2127;
  --gray: #6b7280;
  --light-bg: #f7f7f8;
  --white: #ffffff;
  --radius: 12px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all .25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}
.btn--primary { background: var(--primary); color: var(--dark); }
.btn--primary:hover { background: var(--primary-dark); }
.btn--outline { border-color: var(--dark); color: var(--dark); }
.btn--outline:hover { background: var(--dark); color: var(--white); }
.btn--light { background: var(--white); color: var(--dark); }
.btn--light:hover { background: var(--light-bg); }
.btn--small { padding: 10px 20px; font-size: 14px; }
.btn--full { width: 100%; }

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(20,22,26,0.95);
  z-index: 999;
  backdrop-filter: blur(6px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.logo span { color: var(--primary); }
.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  transition: color .2s;
}
.nav a:hover { color: var(--primary); }
.nav-cta { display: inline-block; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
}

/* Hero */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #14161a 0%, #232730 100%);
  color: var(--white);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}
.hero__text h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero__text p {
  font-size: 17px;
  color: #cbd0d8;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__image {
  height: 340px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #d4a017 0%, #8a6a0e 100%);
  box-shadow: 0 30px 60px rgba(212,160,23,0.25);
}

/* Trust */
.trust {
  background: var(--dark-2);
  padding: 32px 0;
}
.trust__inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
}
.trust__item strong {
  display: block;
  color: var(--primary);
  font-size: 26px;
  font-weight: 700;
}
.trust__item span {
  color: #cbd0d8;
  font-size: 14px;
}

/* Sections */
.section { padding: 90px 0; }
.section--alt { background: var(--light-bg); }
.section__title {
  font-size: 34px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}
.section__title--left { text-align: left; }
.section__subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 50px;
  font-size: 16px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform .25s, box-shadow .25s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.card__icon { font-size: 34px; margin-bottom: 16px; }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--gray); font-size: 15px; }

/* About */
.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.about__text p { color: var(--gray); margin-bottom: 18px; }
.checklist li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  color: var(--dark);
  font-weight: 500;
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.about__image {
  height: 340px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #232730 0%, #14161a 100%);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery__item {
  height: 220px;
  border-radius: var(--radius);
}
.g1 { background: linear-gradient(135deg,#d4a017,#8a6a0e); }
.g2 { background: linear-gradient(135deg,#232730,#14161a); }
.g3 { background: linear-gradient(135deg,#b3860e,#d4a017); }
.g4 { background: linear-gradient(135deg,#1e2127,#3a3f4a); }
.g5 { background: linear-gradient(135deg,#d4a017,#232730); }
.g6 { background: linear-gradient(135deg,#3a3f4a,#14161a); }

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.price-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  position: relative;
}
.price-card--featured {
  border: 2px solid var(--primary);
  transform: scale(1.03);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.price-card h3 { margin-bottom: 12px; font-size: 20px; }
.price { font-size: 30px; font-weight: 700; color: var(--primary); margin-bottom: 20px; }
.price-card ul { margin-bottom: 24px; text-align: left; }
.price-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  color: var(--gray);
  font-size: 15px;
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 30px;
}
.review p { font-style: italic; margin-bottom: 16px; color: var(--dark); }
.review strong { color: var(--primary); }

/* CTA */
.cta {
  background: linear-gradient(135deg, #d4a017 0%, #b3860e 100%);
  color: var(--dark);
  padding: 70px 0;
  text-align: center;
}
.cta h2 { font-size: 30px; margin-bottom: 12px; }
.cta p { margin-bottom: 26px; font-size: 16px; }

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact__list li { margin-bottom: 14px; color: var(--gray); }
.contact__list a { color: var(--dark); font-weight: 600; }
.socials { display: flex; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.socials a {
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 14px;
  transition: all .2s;
}
.socials a:hover { background: var(--dark); color: var(--white); }

.contact__form {
  background: var(--light-bg);
  padding: 36px;
  border-radius: var(--radius);
}
.contact__form h3 { margin-bottom: 20px; font-size: 20px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-size: 14px; font-weight: 500; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.checkbox-group input { width: auto; }
.checkbox-group label { font-size: 13px; color: var(--gray); }
.checkbox-group a { color: var(--primary); font-weight: 600; }
.form-success {
  display: none;
  margin-top: 14px;
  color: #157a3f;
  font-weight: 500;
  font-size: 14px;
}

/* Footer */
.footer {
  background: var(--dark);
  color: #cbd0d8;
  padding: 50px 0 20px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #2a2d33;
}
.footer__brand p { margin-top: 8px; font-size: 14px; color: #9aa0aa; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; color: #cbd0d8; }
.footer__links a:hover { color: var(--primary); }
.footer__socials a { border-color: #2a2d33; color: #cbd0d8; }
.footer__bottom {
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
}

/* Legal page */
.legal { padding-top: 140px; }
.legal__content h1 { font-size: 32px; margin-bottom: 20px; }
.legal__content h2 { font-size: 20px; margin: 26px 0 10px; }
.legal__content p, .legal__content ul { color: var(--gray); margin-bottom: 10px; }
.legal__content ul { padding-left: 20px; list-style: disc; }

/* Responsive */
@media (max-width: 900px) {
  .hero__inner, .about, .contact { grid-template-columns: 1fr; }
  .cards, .pricing, .reviews, .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; }
  .nav { display: none; }
  .burger { display: flex; }
  .nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 20px 24px;
    gap: 16px;
  }
  .nav-cta { display: none; }
}

@media (max-width: 600px) {
  .hero__text h1 { font-size: 32px; }
  .cards, .pricing, .reviews, .gallery { grid-template-columns: 1fr; }
  .trust__inner { justify-content: center; gap: 30px; }
}
