:root {
  --bg: #090713;
  --bg-2: #130f24;
  --panel: rgba(255, 255, 255, 0.09);
  --panel-2: rgba(255, 255, 255, 0.14);
  --text: #fbf7ff;
  --muted: #d8cde7;
  --soft: #ad9dc4;
  --purple: #9e75ff;
  --purple-2: #e0c7ff;
  --gold: #d6b36a;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
  --radius: 30px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(158, 117, 255, 0.28), transparent 32rem),
    radial-gradient(circle at 82% 18%, rgba(214, 179, 106, 0.2), transparent 26rem),
    linear-gradient(135deg, #080611 0%, #130f24 50%, #080611 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font-family: inherit;
}

.container {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 7, 19, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(100% - 36px, var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(158, 117, 255, 0.95), rgba(214, 179, 106, 0.92));
  box-shadow: 0 14px 38px rgba(158, 117, 255, 0.35);
  color: #090713;
  font-size: 1.35rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  padding: 12px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  outline: none;
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: 116px 0 86px;
  overflow: hidden;
}

.shape {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.75;
}

.shape-one {
  width: 260px;
  height: 260px;
  left: -95px;
  top: 140px;
  background: radial-gradient(circle, rgba(158, 117, 255, 0.32), transparent 68%);
}

.shape-two {
  width: 310px;
  height: 310px;
  right: -110px;
  top: 40px;
  background: radial-gradient(circle, rgba(214, 179, 106, 0.24), transparent 67%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 46px;
  align-items: center;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.label::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4.35rem);
  letter-spacing: -0.045em;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero-text {
  max-width: 680px;
  font-size: clamp(1.12rem, 2vw, 1.48rem);
  color: #eee7f8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  color: #0a0713;
  background: linear-gradient(135deg, var(--gold), #ffe5a8);
  box-shadow: 0 16px 36px rgba(214, 179, 106, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 46px rgba(214, 179, 106, 0.42);
}

.btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.btn-light {
  color: #100c21;
  background: #fff8e6;
  box-shadow: 0 16px 40px rgba(255, 248, 230, 0.18);
}

.big {
  min-height: 62px;
  font-size: 1.02rem;
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.info-row span {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-panel {
  position: relative;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055)),
    radial-gradient(circle at top right, rgba(158, 117, 255, 0.26), transparent 20rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  pointer-events: none;
}

.circle-mark {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--gold);
  font-size: 3.5rem;
  background: rgba(9, 7, 19, 0.5);
  border: 1px solid rgba(214, 179, 106, 0.45);
  box-shadow: inset 0 0 32px rgba(214, 179, 106, 0.12), 0 18px 48px rgba(0, 0, 0, 0.22);
}

.hero-panel h2 {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  letter-spacing: -0.035em;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.service-pills span {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(158, 117, 255, 0.18);
  border: 1px solid rgba(224, 199, 255, 0.18);
  font-size: 0.88rem;
  font-weight: 800;
}

.section {
  padding: 88px 0;
}

.center {
  max-width: 820px;
  text-align: center;
}

.center .label {
  justify-content: center;
}

.center .label::after {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head.left {
  margin: 0;
  text-align: left;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.card {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 179, 106, 0.4);
  background: linear-gradient(160deg, rgba(214, 179, 106, 0.13), rgba(255, 255, 255, 0.055));
}

.number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 16px;
  color: var(--gold);
  background: rgba(214, 179, 106, 0.12);
  border: 1px solid rgba(214, 179, 106, 0.25);
  font-size: 0.85rem;
  font-weight: 900;
}

.featured-card {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(158, 117, 255, 0.24), rgba(214, 179, 106, 0.12)),
    rgba(255, 255, 255, 0.07);
}

.visual {
  padding-top: 30px;
}

.visual-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 20%, rgba(214, 179, 106, 0.16), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  box-shadow: var(--shadow);
}

.visual-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.visual-list span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 900;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.location-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid rgba(214, 179, 106, 0.28);
  background:
    radial-gradient(circle at top right, rgba(214, 179, 106, 0.2), transparent 18rem),
    rgba(255, 255, 255, 0.075);
}

.pin {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 22px;
  color: #0a0713;
  background: var(--gold);
  font-size: 2rem;
  font-weight: 900;
}

.contact {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(158, 117, 255, 0.06));
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: center;
}

.contact-copy {
  padding-right: 22px;
}

.contact-copy .btn {
  margin-top: 26px;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.contact-item span {
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-item strong {
  color: var(--text);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.copy-btn {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(214, 179, 106, 0.32);
  border-radius: 999px;
  color: var(--text);
  background: rgba(214, 179, 106, 0.12);
  cursor: pointer;
  font-weight: 900;
}

.final {
  padding-top: 78px;
}

.final-box {
  padding: 46px;
  border-radius: var(--radius);
  text-align: center;
  background:
    radial-gradient(circle at center top, rgba(255, 255, 255, 0.2), transparent 18rem),
    linear-gradient(135deg, rgba(158, 117, 255, 0.8), rgba(214, 179, 106, 0.64));
  box-shadow: var(--shadow);
}

.final-box .label,
.final-box p {
  color: #fff7df;
}

.final-box .label::before {
  background: #fff7df;
}

.final-box h2 {
  color: #ffffff;
}

.final-box .btn {
  margin-top: 25px;
}

.footer {
  padding: 28px 0 86px;
  border-top: 1px solid var(--line);
  background: rgba(6, 5, 11, 0.48);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer p {
  color: var(--soft);
  font-size: 0.94rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  color: #0b0713;
  background: linear-gradient(135deg, #25d366, #c8f7dd);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.34);
  font-weight: 900;
}

.top-btn {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 60;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--text);
  background: rgba(9, 7, 19, 0.84);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 70;
  transform: translate(-50%, 18px);
  padding: 12px 18px;
  border-radius: 999px;
  color: #0a0713;
  background: #fff8e6;
  box-shadow: var(--shadow);
  font-weight: 900;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

@media (max-width: 980px) {
  .hero-grid,
  .visual-box,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-card {
    grid-column: span 1;
  }

  .contact-copy {
    padding-right: 0;
  }
}

@media (max-width: 760px) {
  .container,
  .nav {
    width: min(100% - 28px, var(--max));
  }

  .menu-btn {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(9, 7, 19, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu a {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.06);
  }

  .hero {
    padding: 78px 0 58px;
  }

  .section {
    padding: 64px 0;
  }

  .hero-panel,
  .visual-box,
  .final-box {
    padding: 26px;
    border-radius: 24px;
  }

  .cards,
  .visual-list {
    grid-template-columns: 1fr;
  }

  .contact-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .copy-btn {
    width: fit-content;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    left: 16px;
    right: 16px;
  }

  .top-btn {
    bottom: 88px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 0.98rem;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .hero-buttons .btn,
  .btn.big {
    width: 100%;
  }

  .info-row span {
    width: 100%;
    border-radius: 18px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.5rem);
  }
}
