:root {
  --bg: #07000f;
  --bg-two: #160026;
  --panel: rgba(255, 255, 255, 0.085);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --muted: #dfd1eb;
  --pink: #ff168d;
  --magenta: #d100ff;
  --purple: #651cff;
  --yellow: #ffe23b;
  --orange: #ff9c1a;
  --line: rgba(255, 255, 255, 0.17);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --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 14% 6%, rgba(101, 28, 255, 0.55), transparent 34%),
    radial-gradient(circle at 84% 5%, rgba(255, 22, 141, 0.5), transparent 34%),
    radial-gradient(circle at 50% 96%, rgba(255, 226, 59, 0.18), transparent 28%),
    linear-gradient(145deg, var(--bg), var(--bg-two) 52%, var(--bg));
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.2), transparent);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.48));
}

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

img {
  display: block;
  max-width: 100%;
}

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

.navbar {
  position: sticky;
  top: 16px;
  z-index: 50;
  width: min(100% - 34px, var(--max));
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 0, 15, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.32);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.nav-links a {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--panel);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--panel-strong);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 10px;
  transition: 0.25s ease;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 110px;
  width: min(920px, 92vw);
  height: min(920px, 92vw);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 22, 141, 0.18), transparent 62%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 44px;
  padding: 70px 0 88px;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.label::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--yellow), var(--pink));
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 7vw, 6.75rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  text-shadow: 0 0 36px rgba(255, 22, 141, 0.46);
}

.lead {
  max-width: 660px;
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: clamp(1.14rem, 2.2vw, 1.58rem);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn.primary {
  color: #180016;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 18px 46px rgba(255, 226, 59, 0.23);
}

.btn.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card {
  position: relative;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 26px;
}

.glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(36px);
  opacity: 0.75;
}

.glow-one {
  width: 230px;
  height: 230px;
  left: -36px;
  top: -24px;
  background: var(--pink);
}

.glow-two {
  width: 220px;
  height: 220px;
  right: -28px;
  bottom: -32px;
  background: var(--yellow);
}

.section {
  padding: 86px 0;
}

.section-title {
  margin-bottom: 34px;
}

.section-title.center {
  text-align: center;
}

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

.section h2,
.showcase-copy h2,
.contact-heading h2 {
  font-size: clamp(2.2rem, 5.4vw, 5.1rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.9fr 0.72fr;
  gap: 18px;
}

.profile-card,
.service-card,
.showcase-panel,
.contact-panel {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.profile-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border-radius: var(--radius-lg);
}

.main-card {
  min-height: 335px;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 226, 59, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 22, 141, 0.22), rgba(255,255,255,0.055));
}

.card-tag,
.icon,
.number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin-bottom: auto;
  color: #170016;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  font-weight: 950;
}

.card-tag {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.icon,
.number {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  font-size: 1.2rem;
}

.profile-card h3,
.service-card h3 {
  margin-top: 44px;
  margin-bottom: 14px;
  font-size: clamp(1.24rem, 2vw, 1.78rem);
  line-height: 1.08;
}

.profile-card p,
.service-card p,
.showcase-copy p,
.contact-heading p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.profile-card a {
  color: var(--yellow);
  font-weight: 900;
}

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

.service-card {
  position: relative;
  min-height: 328px;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius-lg);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 185px;
  height: 185px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 22, 141, 0.48), transparent 68%);
}

.service-card h3,
.service-card p,
.service-card .number {
  position: relative;
  z-index: 1;
}

.showcase {
  padding-top: 36px;
}

.showcase-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 30px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius-xl);
}

.showcase-copy {
  padding: 18px 10px 18px 18px;
}

.showcase-copy h2 {
  margin-bottom: 20px;
}

.showcase-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 26px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 30px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 226, 59, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255,22,141,0.17), rgba(255,255,255,0.055));
}

.contact-heading h2 {
  margin-bottom: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-item {
  display: grid;
  gap: 7px;
  min-height: 105px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.22);
  transition: 0.25s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.09);
}

.contact-item.wide {
  grid-column: 1 / -1;
}

.contact-item span {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-item strong {
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #170016;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 18px 42px rgba(255, 226, 59, 0.35);
  font-size: 1.45rem;
  font-weight: 950;
}

.footer {
  width: min(100% - 34px, var(--max));
  margin: 0 auto;
  padding: 30px 0 42px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}

@media (max-width: 1000px) {
  .hero-content,
  .profile-grid,
  .showcase-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: auto;
    padding-top: 64px;
  }

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

  .profile-card,
  .main-card,
  .service-card {
    min-height: 230px;
  }
}

@media (max-width: 720px) {
  .container,
  .navbar,
  .footer {
    width: min(100% - 26px, var(--max));
  }

  .navbar {
    align-items: flex-start;
    border-radius: 28px;
  }

  .brand span {
    max-width: 150px;
    font-size: 0.83rem;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .nav-links {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(7, 0, 15, 0.96);
    backdrop-filter: blur(18px);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    text-align: center;
  }

  .hero h1,
  .section h2,
  .showcase-copy h2,
  .contact-heading h2 {
    letter-spacing: -0.045em;
  }

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

  .section {
    padding: 62px 0;
  }

  .services-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .showcase-panel,
  .contact-panel {
    padding: 18px;
    border-radius: 26px;
  }

  .showcase-copy {
    padding: 10px 4px;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand {
    gap: 8px;
  }

  .profile-card,
  .service-card {
    padding: 22px;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
  }
}
