:root {
  --bg: #0b0b0f;
  --bg-2: #111827;
  --card: rgba(22, 22, 26, 0.82);
  --text: #ffffff;
  --text-soft: #a1a1aa;
  --gold: #d4af37;
  --gold-2: #efcb57;
  --danger: #ff7b7b;
  --danger-soft: rgba(255, 90, 90, 0.12);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  --radius-xl: 28px;
  --container: 1180px;
  --transition: 0.3s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(212, 175, 55, 0.09), transparent 26%),
    radial-gradient(circle at 80% 12%, rgba(46, 72, 170, 0.15), transparent 25%),
    linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.hidden {
  display: none !important;
}

.topbar {
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
}

.topbar p {
  margin: 0;
  min-height: 36px;
  display: grid;
  place-items: center;
  font-size: 13px;
  color: var(--text-soft);
  text-align: center;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 7, 10, 0.56);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.16);
}

.brand-copy h1 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}

.brand-copy span {
  color: var(--text-soft);
  font-size: 0.8rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-btn,
.lang-btn,
.menu-btn {
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  display: grid;
  place-items: center;
}

.cart-btn:hover,
.lang-btn:hover,
.menu-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.3);
}

.mobile-menu {
  display: none;
  padding: 0 16px 16px;
  background: rgba(9, 9, 12, 0.95);
}

.mobile-menu.open {
  display: grid;
  gap: 10px;
}

.mobile-menu a {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-media,
.hero-video,
.hero-overlay,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.12) contrast(1.08) saturate(1.04);
}

.hero-overlay {
  background:
    linear-gradient(to bottom, rgba(5, 5, 8, 0.16), rgba(5, 5, 8, 0.38)),
    linear-gradient(to right, rgba(8, 8, 12, 0.34), rgba(8, 8, 12, 0.10));
}

.hero-glow {
  background:
    radial-gradient(circle at 22% 36%, rgba(212, 175, 55, 0.14), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(46, 72, 170, 0.12), transparent 28%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 86px 0 90px;
}

.hero-badge,
.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-title {
  margin: 18px 0 0;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 12ch;
}

.hero-subtitle {
  margin: 16px 0 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2.2vw, 1.08rem);
  line-height: 1.6;
}

.hero-offer-box {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.offer-chip {
  min-width: 130px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(20, 20, 24, 0.52);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.offer-chip.featured {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.32);
}

.offer-chip.save-chip {
  background: var(--danger-soft);
  border-color: rgba(255, 90, 90, 0.22);
}

.offer-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 6px;
}

.old-price {
  font-size: 1.05rem;
  color: var(--danger);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  font-weight: 600;
}

.new-price {
  font-size: 1.28rem;
  color: #f3d46a;
  font-weight: 800;
}

.save-price {
  font-size: 1.02rem;
  color: #ff8f8f;
  font-weight: 700;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
}

.trust-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: 1px solid transparent;
  transition: all var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #111;
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text);
}

.full-btn {
  width: 100%;
  cursor: pointer;
}

.stats-section {
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  gap: 14px;
}

.stat-card,
.gallery-card,
.feature-card,
.review-card,
.form-box,
.urgency-box,
.thankyou-box,
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.stat-card {
  padding: 20px;
  text-align: center;
}

.stat-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.4rem;
  color: var(--gold);
}

.stat-card span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.section {
  padding: 84px 0;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.section-head h2 {
  margin: 16px 0 0;
  font-size: clamp(1.9rem, 6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-head p {
  margin-top: 12px;
  color: var(--text-soft);
}

.gallery-grid,
.feature-grid,
.review-grid,
.footer-grid,
.order-grid {
  display: grid;
  gap: 18px;
}

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.feature-card,
.review-card {
  padding: 24px;
}

.feature-card h3,
.review-card strong {
  margin: 0 0 10px;
}

.feature-card p,
.review-card p {
  margin: 0;
  color: var(--text-soft);
}

.urgency-box {
  padding: 26px;
  display: grid;
  gap: 18px;
  align-items: center;
  border-color: rgba(212, 175, 55, 0.18);
}

.review-card .stars {
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.trust-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 0.9rem;
}

.order-grid {
  align-items: start;
}

.order-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.08;
}

.order-copy p {
  margin-top: 12px;
  color: var(--text-soft);
}

.offer-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}

.offer-points li {
  color: #dbdbe2;
  position: relative;
  padding-left: 20px;
}

.offer-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.form-box {
  padding: 22px;
}

.form-group {
  margin-bottom: 14px;
}

.form-row {
  display: grid;
  gap: 14px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
}

input[readonly] {
  background: rgba(255, 255, 255, 0.05);
  cursor: not-allowed;
}

input::placeholder,
textarea::placeholder {
  color: #7f7f88;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(212, 175, 55, 0.5);
}

.form-note {
  margin-top: 12px;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 18px 20px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  margin-top: 12px;
  color: var(--text-soft);
}

.thankyou-box {
  padding: 42px 24px;
  text-align: center;
}

.thankyou-box h2 {
  margin-top: 0;
  font-size: clamp(2rem, 6vw, 3rem);
}

.thankyou-box p {
  color: var(--text-soft);
  max-width: 56ch;
  margin: 12px auto 0;
}

.footer {
  padding: 70px 0 26px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 10px;
}

.footer-list li,
.footer-list a,
.footer-brand p {
  color: var(--text-soft);
}

.footer-list a i {
  margin-right: 8px;
  transition: 0.3s;
}

.footer-list a:hover i {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.sticky-order-btn {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  min-width: 140px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #111;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.28);
}

.sticky-order-btn:hover {
  transform: translateY(-2px);
}

.floating-contact-stack {
  position: fixed;
  right: 16px;
  bottom: 84px;
  z-index: 1199;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.floating-icon:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.06);
}

.whatsapp-icon {
  background: #25d366;
}

.messenger-icon {
  background: linear-gradient(135deg, #0084ff 0%, #7b61ff 100%);
}

@media (min-width: 768px) {
  .hero-cta-group {
    flex-direction: row;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1.1fr 1fr;
    grid-template-areas:
      "large a"
      "large b"
      "wide wide";
  }

  .gallery-card.large {
    grid-area: large;
  }

  .gallery-card.wide {
    grid-area: wide;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .order-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .urgency-box {
    grid-template-columns: 1fr auto;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 84vh;
  }

  .hero-content {
    padding: 76px 0 82px;
    max-width: 100%;
  }

  .hero-title {
    max-width: 11ch;
  }

  .hero-offer-box {
    gap: 10px;
  }

  .offer-chip {
    flex: 1 1 calc(50% - 10px);
    min-width: unset;
  }

  .offer-chip.save-chip {
    flex: 1 1 100%;
  }

  .floating-contact-stack {
    right: 14px;
    bottom: 82px;
    gap: 8px;
  }

  .floating-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}