:root {
  --green: #9bc01c;
  --gold: #ffd64d;
  --rose: #fa6775;
  --red: #f52549;
  --dark: #09090d;
  --panel: #15151d;
  --text: #fff;
  --muted: #c9c9d4;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: radial-gradient(circle at 20% 0, #2a1727, var(--dark) 42%, #000);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background: rgba(5, 5, 8, .82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 214, 77, .18);
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.35rem;
}
.brand img { width: 46px; }
.nav { display: flex; gap: 26px; }
.nav a { text-decoration: none; color: #eee; }
.nav a:hover, .nav a.active { color: var(--gold); }
.burger { display: none; background: none; border: 0; cursor: pointer; }
.burger span { display: block; width: 28px; height: 3px; margin: 5px; background: #fff; border-radius: 2px; }

main section { padding: 88px 6%; }
.hero, .split, .form-map {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.hero {
  min-height: 78vh;
  background: linear-gradient(135deg, rgba(245, 37, 73, .18), rgba(155, 192, 28, .08));
}
.subhero {
  text-align: center;
  padding: 110px 8%;
  background: linear-gradient(135deg, rgba(255, 214, 77, .16), rgba(245, 37, 73, .16));
}
h1 { font-size: clamp(2.4rem, 6vw, 5.8rem); line-height: 1.02; margin: 10px 0; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.1; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--green));
  color: #111;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 0;
  box-shadow: 0 0 24px rgba(255, 214, 77, .35);
  cursor: pointer;
  transition: transform .25s;
}
.btn:hover { transform: translateY(-3px); }
.small { padding: 10px 18px; }

.cards, .price-grid, .feature-grid, .contact-grid, .testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-grid, .contact-grid { grid-template-columns: repeat(4, 1fr); }

article, blockquote, form, .warning, .legal {
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
}
article { transition: transform .3s, box-shadow .3s; }
article:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(250, 103, 117, .18);
}
.price { font-size: 2rem; color: var(--gold); font-weight: 900; }
.alt { grid-template-columns: .9fr 1.1fr; }
.stat-row { display: grid; grid-template-columns: auto 1fr auto 1fr; gap: 12px; align-items: center; }
.stat-row b { font-size: 3rem; color: var(--green); }
.fr { background: linear-gradient(135deg, rgba(155, 192, 28, .12), rgba(250, 103, 117, .14)); }
.warning { border-color: var(--gold); box-shadow: 0 0 34px rgba(255, 214, 77, .2); }
.testimonials { grid-template-columns: repeat(4, 1fr); }
blockquote { margin: 0; }
cite { display: block; color: var(--gold); margin-top: 18px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
  transition: transform .3s, box-shadow .3s;
}
.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 0 30px rgba(255, 214, 77, .25);
}

.timeline { display: grid; gap: 18px; }
.timeline div {
  display: flex;
  gap: 18px;
  align-items: center;
  background: #12121a;
  border-radius: 20px;
  padding: 18px;
}
.timeline span {
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  font-weight: 900;
}
.expanded { grid-template-columns: repeat(3, 1fr); }

label { display: grid; gap: 8px; margin: 14px 0; }
input, textarea {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #444;
  background: #0d0d12;
  color: #fff;
}
textarea { min-height: 140px; }
.map iframe { width: 100%; border-radius: 24px; }

.faq details {
  background: #14141c;
  margin: 14px 0;
  padding: 18px;
  border-radius: 16px;
  cursor: pointer;
}
.faq summary { font-weight: 700; }

.legal { max-width: 950px; margin: auto; }

.footer {
  padding: 58px 6% 24px;
  background: #050507;
  border-top: 1px solid rgba(255, 214, 77, .18);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 30px;
}
.social { display: flex; flex-wrap: wrap; gap: 12px; }
.social a { display: block; }
.social a img {
  width: 28px;
  height: 28px;
  transition: transform .25s, filter .25s;
}
.social a:hover img {
  transform: scale(1.15);
  filter: brightness(1.2);
}
.copy { text-align: center; color: var(--muted); }

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  border: 0;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: #111;
  font-size: 1.4rem;
  cursor: pointer;
  display: none;
  z-index: 15;
}
.to-top.show { display: block; }

.reveal { opacity: 0; transform: translateY(22px); transition: .7s; }
.reveal.visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(5, 5, 8, .96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 214, 77, .25);
  padding: 20px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: .95rem; color: var(--muted); }
.cookie-banner p a { color: var(--gold); }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-actions button {
  border: 0;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s;
}
.cookie-actions button:hover { transform: translateY(-2px); }
.cookie-accept {
  background: linear-gradient(135deg, var(--gold), var(--green));
  color: #111;
}
.cookie-decline {
  background: transparent;
  border: 1px solid #555 !important;
  color: #fff;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .8);
  backdrop-filter: blur(8px);
}
.modal-content {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .06));
  border: 1px solid rgba(255, 214, 77, .3);
  border-radius: 28px;
  padding: 48px;
  max-width: 480px;
  text-align: center;
  box-shadow: 0 0 60px rgba(255, 214, 77, .25);
  transform: scale(.9);
  transition: transform .3s ease;
}
.modal[aria-hidden="false"] .modal-content {
  transform: scale(1);
}
.modal-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold));
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  color: #111;
  font-weight: 900;
}
.modal-content h2 {
  margin: 0 0 16px;
  color: var(--gold);
}
.modal-content p {
  color: var(--muted);
  margin: 0 0 28px;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
  .hero, .split, .alt, .form-map { grid-template-columns: 1fr; }
  .testimonials, .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .burger { display: block; }
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    display: none;
    flex-direction: column;
    background: #07070a;
    padding: 24px 6%;
  }
  .nav.open { display: flex; }
  .cards, .price-grid, .feature-grid, .contact-grid, .testimonials { grid-template-columns: 1fr; }
  main section { padding: 62px 5%; }
  .cookie-banner { flex-direction: column; text-align: center; }
        .stat-row {
          display: flex;
          flex-direction: column;
        }
                .gallery-grid {grid-template-columns: repeat(1, 1fr);}
}
@media (max-width: 576px) {
  h1 { font-size: 2.3rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-header { padding: 14px 4%; }

}
