:root {
  --bg: #080808;
  --bg-soft: #101010;
  --card: rgba(255, 255, 255, 0.04);
  --gold: #d4af37;
  --gold-light: #f3d982;
  --text: #f5f5f5;
  --muted: #b9b9b9;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
  --radius: 24px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.06), transparent 24%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 105px 0;
}

.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 16px;
}

h1,
h2,
h3,
.logo-text strong,
.hero-stat-box strong,
.number-card strong {
  font-family: "Cinzel", serif;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.96;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.5rem;
}

p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-gold {
  background: linear-gradient(135deg, #b88c1a, #f3d77d);
  color: #111;
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.28);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.06);
  border-color: rgba(212, 175, 55, 0.35);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  min-height: 86px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.24), rgba(212, 175, 55, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 1rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {
  color: #fff;
  font-size: 1.35rem;
}

.logo-text span {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: #ededed;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav-btn {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  background:
    url("https://images.unsplash.com/photo-1622286342621-4bd786c2447c?auto=format&fit=crop&w=1600&q=80")
    center center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.82) 15%,
      rgba(5, 5, 5, 0.45) 52%,
      rgba(5, 5, 5, 0.72) 100%
    );
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 34px;
}

.hero-text {
  max-width: 620px;
  font-size: 1.08rem;
  margin-bottom: 28px;
  color: #dddddd;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
  max-width: 760px;
}

.hero-stat-box {
  padding: 22px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.hero-stat-box strong {
  display: block;
  font-size: 1.7rem;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.hero-stat-box span {
  display: block;
  color: #e2e2e2;
  font-size: 0.95rem;
  line-height: 1.4;
}

.hero-panel {
  background: rgba(12, 12, 12, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 30px;
  padding: 34px 30px;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  max-width: 460px;
  justify-self: end;
}

.panel-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.22);
  color: var(--gold-light);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}

.hero-panel h3 {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 12px;
}

.panel-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.panel-list li {
  color: #f0f0f0;
  padding-left: 28px;
  position: relative;
  font-size: 1rem;
}

.panel-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: -1px;
  color: var(--gold);
  font-size: 1.2rem;
}

.brands {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
}

.brands-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brands-row span {
  color: #cfcfcf;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-images img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-images img:last-child {
  margin-top: 48px;
}

.about-content p {
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.about-item {
  padding: 16px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  color: #ededed;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.advantages {
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.02));
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.advantage-card,
.service-card,
.testimonial-card,
.contact-card,
.number-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.advantage-card {
  padding: 28px;
  transition: 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.28);
}

.advantage-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.18);
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.advantage-card h3 {
  margin-bottom: 10px;
}

.services {
  background: linear-gradient(180deg, #0c0c0c 0%, #111111 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  padding: 28px;
  transition: 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.28);
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.service-price {
  color: var(--gold-light);
  font-weight: 700;
}

.service-card h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.service-card p {
  margin-bottom: 18px;
}

.service-card a {
  color: var(--gold-light);
  font-weight: 600;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.number-card {
  padding: 26px;
  text-align: center;
}

.number-card strong {
  display: block;
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.number-card span {
  color: #d6d6d6;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.gallery-text {
  max-width: 500px;
}

.gallery-text p {
  margin-bottom: 20px;
}

.gallery-list {
  list-style: none;
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.gallery-list li {
  padding-left: 20px;
  position: relative;
  color: #eaeaea;
}

.gallery-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: repeat(2, 250px);
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #111;
  min-height: 250px;
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.88) contrast(1.02);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  padding: 28px;
}

.stars {
  color: var(--gold-light);
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.testimonial-card p {
  color: #e3e3e3;
  margin-bottom: 18px;
}

.testimonial-card strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 42px;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background:
    radial-gradient(circle at top left, rgba(212,175,55,0.12), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
}

.contact-list {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.contact-item strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.contact-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card h3 {
  font-size: 1.9rem;
  margin-bottom: 10px;
}

.contact-card p {
  margin-bottom: 22px;
}

.contact-card .btn + .btn {
  margin-top: 12px;
}

.footer {
  padding: 42px 0 20px;
  background: #070707;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  color: var(--muted);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  background: linear-gradient(135deg, #1db954, #25d366);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-self: start;
    max-width: 100%;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .testimonials-grid,
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 240px);
  }

  .gallery-item.large {
    grid-row: span 1;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: 86px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    border-radius: 22px;
    background: rgba(8, 8, 8, 0.97);
    border: 1px solid var(--border);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.3s ease;
  }

  .nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: flex;
  }

  .nav-btn {
    display: none;
  }

  .hero-stats-grid,
  .about-features,
  .advantages-grid,
  .services-grid,
  .testimonials-grid,
  .numbers-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 80px 0;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .about-images img {
    height: 300px;
  }

  .about-images img:last-child {
    margin-top: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item,
  .gallery-item.large {
    height: 240px;
  }

  .brands-row {
    justify-content: center;
  }

  .hero {
    background-position: 65% center;
  }
}