:root {
  --bg-deep: #07121e;
  --bg-mid: #10243a;
  --ink: #e9f4ff;
  --ink-soft: #b4cce5;
  --card: rgba(8, 24, 42, 0.68);
  --line: rgba(168, 223, 255, 0.26);
  --aqua: #64f3f8;
  --amber: #ffb84d;
  --mint: #7cffd5;
  --coral: #ff7f7f;
  --shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 15%, #1e486d 0%, rgba(30, 72, 109, 0) 34%),
    radial-gradient(circle at 80% 10%, #4b2748 0%, rgba(75, 39, 72, 0) 38%),
    linear-gradient(140deg, var(--bg-deep), var(--bg-mid));
  overflow-x: hidden;
}

.page {
  width: min(1080px, 92vw);
  margin: 2rem auto 3rem;
  display: grid;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

.card {
  backdrop-filter: blur(12px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero {
  padding: clamp(1.6rem, 3.2vw, 2.8rem);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -14% -90px;
  height: 170px;
  background: linear-gradient(90deg, var(--aqua), var(--amber), var(--mint), var(--coral));
  filter: blur(42px);
  opacity: 0.55;
  pointer-events: none;
}

.eyebrow {
  margin: 0;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
}

h1 {
  margin: 0.55rem 0 0.4rem;
  font-size: clamp(1.9rem, 5vw, 3.6rem);
  line-height: 1;
}

.subtitle {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 2.1vw, 1.2rem);
}

.address {
  margin: 0.85rem 0 0;
  color: #d8ebff;
  font-size: 0.95rem;
}

.services {
  padding: clamp(1.2rem, 2.4vw, 1.7rem);
}

.services h2 {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
}

.service-grid {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.service-grid span {
  border: 1px solid rgba(168, 223, 255, 0.35);
  border-radius: 999px;
  padding: 0.45rem 0.88rem;
  color: #daf6ff;
  background: rgba(17, 53, 76, 0.6);
  font-size: 0.92rem;
}

.profiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.profile {
  padding: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.profile-head {
  border-bottom: 1px solid rgba(168, 223, 255, 0.25);
  padding-bottom: 0.8rem;
}

.tag {
  margin: 0;
  color: var(--aqua);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

h3 {
  margin: 0.42rem 0 0.25rem;
  font-size: 1.35rem;
}

.role {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 600;
}

.profile-body p {
  margin: 0.45rem 0;
  color: #e4f2ff;
}

.profile a {
  color: #e8fff9;
  text-decoration: none;
}

.profile a:hover {
  text-decoration: underline;
}

.save-btn {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 0.68rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: #042b26;
  background: linear-gradient(96deg, var(--mint), var(--aqua));
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 8px 26px rgba(100, 243, 248, 0.3);
}

.whatsapp-btn {
  color: #04211b;
  background: linear-gradient(96deg, #a8ffab, #5af7cf);
  box-shadow: 0 8px 26px rgba(132, 255, 191, 0.35);
}

.save-btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(100, 243, 248, 0.38);
}

.whatsapp-btn:hover {
  box-shadow: 0 12px 30px rgba(132, 255, 191, 0.42);
}

.qr {
  padding: clamp(1.2rem, 2.6vw, 1.8rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.qr h2 {
  margin: 0.45rem 0 0.35rem;
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
}

.qr-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.qr-image {
  width: min(45vw, 190px);
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  border: 1px solid rgba(168, 223, 255, 0.38);
  background: #ffffff;
  padding: 0.55rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.paper-note {
  text-align: center;
  padding: 0.35rem 0.6rem 0.1rem;
}

.paper-note p {
  margin: 0;
  display: inline-block;
  font-family: "Syne", sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 0.02em;
  color: #dbf9eb;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(168, 255, 207, 0.45);
  background: linear-gradient(96deg, rgba(38, 95, 75, 0.62), rgba(17, 58, 46, 0.72));
  box-shadow: 0 10px 28px rgba(64, 186, 139, 0.22);
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(35px);
  pointer-events: none;
  opacity: 0.55;
}

.orb-a {
  width: 320px;
  height: 320px;
  background: #ff9e5e;
  top: -80px;
  right: -40px;
  animation: driftA 10s ease-in-out infinite alternate;
}

.orb-b {
  width: 260px;
  height: 260px;
  background: #7de1ff;
  bottom: -70px;
  left: -40px;
  animation: driftB 11s ease-in-out infinite alternate;
}

.grid-noise {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(194, 231, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194, 231, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 95%);
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  animation: enter 620ms ease forwards;
}

.reveal-delay-1 {
  animation-delay: 130ms;
}

.reveal-delay-2 {
  animation-delay: 260ms;
}

@keyframes enter {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes driftA {
  from {
    transform: translateY(0) translateX(0);
  }
  to {
    transform: translateY(18px) translateX(-18px);
  }
}

@keyframes driftB {
  from {
    transform: translateY(0) translateX(0);
  }
  to {
    transform: translateY(-22px) translateX(12px);
  }
}

@media (max-width: 860px) {
  .profiles {
    grid-template-columns: 1fr;
  }

  .qr {
    flex-direction: column;
    align-items: flex-start;
  }

  .page {
    margin-top: 1.25rem;
  }
}

@media (max-width: 520px) {
  .hero,
  .services,
  .profile,
  .qr {
    border-radius: 18px;
  }

  .save-btn,
  .whatsapp-btn {
    width: 100%;
  }

  .qr-image {
    width: min(70vw, 230px);
  }
}
