:root {
  --bg-deep: #0a070f;
  --bg-mid: #1e1e2e;
  --bg-accent: #450a0a;
  --accent: #ff1d1d;
  --accent-soft: rgba(233, 29, 29, 0.18);
  --text: #f1edf6;
  --muted: #b6a9c8;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  --hero-x: 50%;
  --hero-y: 50%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  animation: none !important;
  transition: none !important;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background-color: var(--bg-deep);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}


body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: 
    url("../32f1c79d-2dea-4ba5-9b54-3ee290ce021d.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}


.section {
  position: relative;
  padding: 80px 6vw;
}

.section-title {
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: clamp(28px, 3vw, 44px);
  color: var(--text);
  letter-spacing: 0.6px;
  text-shadow: 0 0 15px rgba(255, 29, 29, 0.3);
  -webkit-text-stroke: 1.2px rgba(255, 29, 29, 0.8);
}

.section-title p {
  color: #ffffff;
  max-width: 680px;
  text-shadow: 0 2px 5px rgba(0,0,0,1);
  font-weight: 500;
  -webkit-text-stroke: 0.4px rgba(255, 29, 29, 0.6);
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  z-index: 50;
  background: rgba(12, 10, 16, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1.2px;
  -webkit-text-stroke: 0.8px var(--accent);
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: rgba(255, 29, 29, 0.65);
  transition: width 0.3s ease;
}

.nav a:hover {
  color: var(--accent);
}

.nav a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  width: 40px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 6px;
  flex-direction: column;
}

.hamburger span {
  display: block;
  height: 3px;
  background: var(--text);
  border-radius: 4px;
}


.mobile-menu {
  position: fixed;
  top: 70px;
  right: 24px;
  display: flex;
  flex-direction: column;
  background: rgba(11, 4, 16, 0.9);
  border: 1px solid rgba(255, 29, 29, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 45;
}

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}


.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding-top: 100px;
}

.hero-content {
  text-align: center;
  max-width: 720px;
  z-index: 3;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 70px);
  color: var(--text);
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(255, 29, 29, 0.4), 0 2px 10px rgba(0,0,0,0.9);
  -webkit-text-stroke: 1.5px rgba(255, 29, 29, 0.8);
}

.hero p {
  color: #ffffff;
  margin-bottom: 32px;
  font-size: clamp(16px, 2vw, 20px);
  text-shadow: 0 2px 8px rgba(0,0,0,1);
  font-weight: 500;
  max-width: 800px;
  -webkit-text-stroke: 0.5px rgba(255, 29, 29, 0.6);
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

.cta {
  background: rgba(43, 22, 54, 0.4);
  backdrop-filter: blur(10px);
  color: var(--text);
  border: 2px solid rgba(255, 29, 29, 0.6);
  padding: 16px 40px;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 29, 29, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 240px;
  text-align: center;
}

.cta.secondary {
  
  background: rgba(43, 22, 54, 0.4);
  border-color: rgba(255, 29, 29, 0.6);
  box-shadow: 0 0 15px rgba(255, 29, 29, 0.3);
}

.cta:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(255, 29, 29, 1);
  box-shadow: 0 0 35px rgba(255, 29, 29, 0.7), inset 0 0 15px rgba(255, 29, 29, 0.4);
}

.cta.secondary:hover {
  border-color: rgba(255, 29, 29, 1);
  box-shadow: 0 0 35px rgba(255, 29, 29, 0.7);
}

.hero-layer {
  display: none;
  position: absolute;
  inset: -20%;
  filter: blur(40px);
  z-index: 1;
}

.hero-layer.l1 {
  background: radial-gradient(circle at 20% 20%, rgba(80, 10, 10, 0.45), transparent 60%);
}

.hero-layer.l2 {
  background: radial-gradient(circle at 80% 60%, rgba(255, 29, 29, 0.12), transparent 65%);
  mix-blend-mode: screen;
}

.shape {
  display: none;
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 13, 173, 0.35), rgba(11, 4, 16, 0));
  filter: blur(6px);
  z-index: 2;
}

.s1 { width: 180px; height: 180px; top: 10%; left: 12%; }
.s2 { width: 260px; height: 260px; bottom: 12%; right: 18%; }
.s3 { width: 140px; height: 140px; top: 60%; left: 55%; }


.menu {
  padding-top: 100px;
}

.menu-stage {
  position: relative;
  min-height: 520px;
  overflow: visible;
}

.character {
  position: absolute;
  left: -140px;
  top: 20px;
  width: 110px;
  height: 200px;
  opacity: 0;
  z-index: 5;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.char-body {
  position: absolute;
  bottom: 0;
  left: 18px;
  width: 74px;
  height: 140px;
  background: linear-gradient(180deg, #1d1826, #0a070f);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.04);
}

.char-head {
  position: absolute;
  top: 12px;
  left: 24px;
  width: 62px;
  height: 62px;
  background: #16121d;
  border-radius: 14px;
  box-shadow: inset 0 0 10px rgba(255, 29, 29, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.char-head::before,
.char-head::after {
  content: "";
  position: absolute;
  top: 24px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 29, 29, 0.35);
  box-shadow: 0 0 10px rgba(255, 29, 29, 0.35);
}

.char-head::before { left: 16px; }
.char-head::after { right: 16px; }

.char-arm {
  position: absolute;
  right: -8px;
  top: 70px;
  width: 18px;
  height: 80px;
  background: linear-gradient(180deg, #1d1826, #0a070f);
  border-radius: 12px;
  transform-origin: top center;
  box-shadow: inset 0 0 10px rgba(255, 29, 29, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.06);
}


.menu-stage.is-css-animate .character {
  opacity: 1;
  animation: charEnter 1.4s ease-out forwards,
             charPull 1.6s 1.8s ease-in-out forwards,
             charExit 1.1s 3.8s ease-in forwards;
}

.menu-stage.is-css-animate .char-arm {
  animation: armReach 0.7s 1.1s ease-out forwards,
             armReset 0.6s 3.1s ease-out forwards;
}

.menu-stage.is-css-animate .menu-unfold {
  animation: menuUnfold 1.4s 1.6s ease-out forwards;
}

.menu-stage.is-css-animate .card {
  opacity: 0;
  transform: translateY(26px) translateX(50px) scale(0.98);
  animation: cardsIn 1.0s 2.2s ease-out forwards;
}

@keyframes charEnter {
  from { transform: translateX(0); }
  to { transform: translateX(360px); }
}

@keyframes charPull {
  from { transform: translateX(360px); }
  to { transform: translateX(-180px); }
}

@keyframes charExit {
  from { transform: translateX(-180px); opacity: 1; }
  to { transform: translateX(-280px); opacity: 0; }
}

@keyframes armReach {
  from { transform: rotate(0deg); }
  to { transform: rotate(-35deg) translateY(-6px); }
}

@keyframes armReset {
  from { transform: rotate(-35deg) translateY(-6px); }
  to { transform: rotate(-5deg) translateY(0); }
}

@keyframes menuUnfold {
  from { transform: translateX(140px) scaleX(0.7); }
  to { transform: translateX(0) scaleX(1); }
}

@keyframes cardsIn {
  to { opacity: 1; transform: translateY(0) translateX(0) scale(1); }
}

.menu-unfold {
  position: relative;
  margin-top: 20px;
  transform-origin: left center;
  transform: none;
  width: 100%;
  margin-left: 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  position: relative;
}

.menu-grid::before,
.menu-grid::after {
  display: none;
  content: "";
  position: absolute;
  inset: -12%;
  border-radius: 32px;
  background: radial-gradient(circle at 20% 30%, rgba(255, 29, 29, 0.12), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(80, 10, 10, 0.45), transparent 60%);
  filter: blur(40px);
  z-index: 0;
}

.menu-grid::after {
  background: radial-gradient(circle at 60% 40%, rgba(255, 29, 29, 0.08), transparent 55%);
  mix-blend-mode: screen;
}

.card {
  background: rgba(12, 8, 16, 0.45);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 29, 29, 0.5);
  box-shadow: 0 0 10px rgba(255, 29, 29, 0.2);
  border-radius: 18px;
  padding: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: none;
}

.card.is-revealed {
  opacity: 1;
  transform: none;
  animation: none;
}

.card:nth-child(2) {
  animation-delay: 1.2s;
}

.card:nth-child(3) {
  animation-delay: 2.4s;
}

.card:nth-child(4) {
  animation-delay: 0.6s;
}

.card:nth-child(5) {
  animation-delay: 1.8s;
}

.card:nth-child(6) {
  animation-delay: 3.0s;
}

.card:nth-child(7) {
  animation-delay: 0.9s;
}

.card:nth-child(8) {
  animation-delay: 2.1s;
}

.card:nth-child(9) {
  animation-delay: 3.3s;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 2px solid rgba(255, 29, 29, 0.7);
  box-shadow: 0 0 25px rgba(255, 29, 29, 0.5), inset 0 0 10px rgba(255, 29, 29, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 12px;
  background: #0b0410;
}

.card h3 {
  color: var(--text);
  margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.card p {
  color: #ffffff;
  font-size: 14px;
  text-shadow: 0 2px 4px rgba(0,0,0,1);
  font-weight: 500;
}

.price-list {
  line-height: 1.6;
  font-size: 13px !important;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 29, 29, 1);
  box-shadow: 0 0 35px rgba(255, 29, 29, 0.6);
}

.card.is-tilting {
  transition: none;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 35px rgba(255, 29, 29, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover::after {
  opacity: 1;
}

.card:hover::before {
  opacity: 1;
}


.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.info-card {
  background: rgba(12, 8, 16, 0.45);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 29, 29, 0.3);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.info-card h3 {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-card ul {
  list-style: none;
}

.info-card li {
  margin-bottom: 10px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.info-card li strong {
  color: var(--text);
  font-size: 16px;
}


.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}

.contact-item {
  background: rgba(12, 8, 16, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 29, 29, 0.4);
  box-shadow: 0 0 15px rgba(255, 29, 29, 0.2);
  border-radius: 16px;
  padding: 20px;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: all 0.35s ease;
}

.contact-item:hover {
  border-color: rgba(255, 29, 29, 0.8);
  box-shadow: 0 0 30px rgba(255, 29, 29, 0.5);
  transform: translateY(-3px);
}

.contact-item .label {
  display: block;
  font-size: 13px;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0,0,0,1);
  font-weight: 600;
}

.contact-item .value {
  display: block;
  margin-top: 8px;
  color: #ff3d3d;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.4), 0 2px 4px rgba(0,0,0,0.9);
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.35;
  font-weight: 700;
}

.copy-toast {
  margin-top: 16px;
  color: var(--accent);
  min-height: 20px;
}


.footer {
  padding: 30px 6vw 40px;
  border-top: 1px solid rgba(255, 29, 29, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  margin-left: 16px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(255, 29, 29, 0.35);
}


@media (max-width: 980px) {
  .menu-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .menu-unfold {
    transform: none;
    margin-left: 0;
  }
}
