@font-face {
  font-family: "Emmanuel Sans";
  src: url("sf-pro-rounded.ttf");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #101214;
  --muted: #5e6872;
  --line: rgba(16, 18, 20, 0.12);
  --paper: #fbfcf9;
  --mint: #baf4d4;
  --green: #0f8f67;
  --teal: #156f85;
  --coral: #ff775f;
  --amber: #f5bc3b;
  --blue: #2954d6;
  --shadow: 0 24px 80px rgba(16, 18, 20, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(186, 244, 212, 0.48), transparent 28rem),
    radial-gradient(circle at 85% 8%, rgba(255, 119, 95, 0.16), transparent 24rem),
    linear-gradient(180deg, #f7fbf5 0%, #ffffff 46%, #f4faf8 100%);
  cursor: none;
  font-family: "Emmanuel Sans", Arial, sans-serif;
  overflow-x: hidden;
}

body::selection {
  background: var(--mint);
}

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

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

.custom-cursor,
.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 999px;
  transform: translate(-100px, -100px);
  z-index: 1000;
}

.custom-cursor {
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  background: var(--ink);
  transition: width 180ms ease, height 180ms ease, margin 180ms ease, background 180ms ease;
}

.custom-cursor-follower {
  width: 38px;
  height: 38px;
  margin: -19px 0 0 -19px;
  border: 1px solid rgba(16, 18, 20, 0.36);
  transition: transform 100ms ease-out, border-color 180ms ease, scale 180ms ease;
}

.cursor-hover .custom-cursor {
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  background: var(--coral);
}

.cursor-hover .custom-cursor-follower {
  border-color: var(--green);
  scale: 1.4;
}

.ambient-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(16, 18, 20, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 18, 20, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(1120px, calc(100% - 32px));
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 50px rgba(16, 18, 20, 0.08);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
  transition: background 220ms ease, box-shadow 220ms ease, top 220ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 60px rgba(16, 18, 20, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  width: 150px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.96rem;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--mint);
  transform: translateY(-1px);
}

.nav-cta,
.mobile-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  justify-self: end;
  padding: 0 18px;
  color: #fff;
  background: var(--ink);
}

.nav-cta:hover,
.button:hover,
.mobile-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint);
}

.menu-toggle img {
  width: 22px;
  margin: auto;
}

.mobile-menu {
  position: fixed;
  top: 102px;
  left: 16px;
  right: 16px;
  z-index: 45;
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(16, 18, 20, 0.04);
  font-size: 1.08rem;
}

.mobile-menu.is-open {
  display: flex;
  animation: menuIn 220ms ease both;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 1.05fr);
  gap: 44px;
  align-items: center;
  padding: 124px 0 72px;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(15, 143, 103, 0.22);
  border-radius: 999px;
  color: var(--green);
  background: rgba(186, 244, 212, 0.46);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(3.8rem, 8vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.hero-text,
.section-heading p,
.experience-copy p,
.service-card p {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.65;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: 1.25rem;
}

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

.button {
  min-width: 166px;
  padding: 0 22px;
}

.button.primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(16, 18, 20, 0.2);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(16, 18, 20, 0.1);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.hero-visual,
.phone-panel,
.service-card {
  transform: perspective(1000px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg));
  transform-style: preserve-3d;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(90%, 530px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from 120deg, rgba(15, 143, 103, 0.2), rgba(255, 119, 95, 0.24), rgba(41, 84, 214, 0.18), rgba(15, 143, 103, 0.2));
  filter: blur(10px);
  animation: slowSpin 14s linear infinite;
}

.hero-visual img {
  position: relative;
  width: min(92%, 620px);
  border-radius: var(--radius);
  filter: drop-shadow(0 28px 48px rgba(16, 18, 20, 0.18));
  animation: floatImage 5.5s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  font-size: 0.92rem;
}

.floating-card strong {
  font-size: 1.2rem;
}

.card-payment {
  top: 18%;
  left: 2%;
}

.card-appointment {
  right: 0;
  bottom: 21%;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(15, 143, 103, 0.48);
  animation: pulse 1.8s infinite;
}

.orbital-ring {
  position: absolute;
  width: min(76%, 460px);
  aspect-ratio: 1;
  border: 1px dashed rgba(16, 18, 20, 0.24);
  border-radius: 50%;
  animation: slowSpin 18s linear infinite reverse;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 12px 0 112px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 20px 60px rgba(16, 18, 20, 0.08);
}

.stats-band div {
  padding: 34px;
  background: rgba(255, 255, 255, 0.82);
}

.stats-band strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
}

.stats-band span {
  color: var(--muted);
  font-size: 1rem;
}

.services-section {
  padding: 0 0 118px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-card {
  position: relative;
  min-height: 350px;
  padding: 24px;
  border: 1px solid rgba(16, 18, 20, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 56px rgba(16, 18, 20, 0.08);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -35% -40% 18%;
  height: 180px;
  background: rgba(186, 244, 212, 0.54);
  rotate: -10deg;
  transition: transform 220ms ease;
}

.service-card:nth-child(2)::after {
  background: rgba(255, 119, 95, 0.2);
}

.service-card:nth-child(3)::after {
  background: rgba(245, 188, 59, 0.25);
}

.service-card:nth-child(4)::after {
  background: rgba(41, 84, 214, 0.16);
}

.service-card:hover {
  background: #fff;
  box-shadow: 0 28px 70px rgba(16, 18, 20, 0.13);
}

.service-card:hover::after {
  transform: translateY(-16px);
}

.service-card img {
  width: 38px;
  height: 38px;
  margin-bottom: 36px;
}

.card-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(16, 18, 20, 0.22);
  font-weight: 900;
}

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

.experience-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 68px;
  align-items: center;
  padding: 0 0 118px;
}

.phone-panel {
  max-width: 410px;
  min-height: 520px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(16, 18, 20, 0.98), rgba(21, 111, 133, 0.92)),
    var(--ink);
  box-shadow: var(--shadow);
}

.phone-header {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 10px 0 24px;
}

.phone-header span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.wallet-card {
  min-height: 190px;
  padding: 24px;
  border-radius: 18px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(186, 244, 212, 0.96), rgba(245, 188, 59, 0.82)),
    var(--mint);
}

.wallet-card p {
  margin-bottom: 42px;
  color: rgba(16, 18, 20, 0.72);
}

.wallet-card strong {
  font-size: 2.35rem;
}

.mini-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.mini-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.mini-list strong {
  color: var(--mint);
}

.experience-copy {
  max-width: 680px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 36px max(16px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: var(--ink);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 120px;
}

.footer-brand span,
footer p,
.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  gap: 18px;
}

footer p {
  justify-self: end;
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes slowSpin {
  to {
    rotate: 360deg;
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(15, 143, 103, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(15, 143, 103, 0);
  }
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-section,
  .experience-section {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    min-height: 480px;
  }

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

  footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  footer p {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  body {
    cursor: default;
  }

  .custom-cursor,
  .custom-cursor-follower {
    display: none;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 66px;
    padding: 10px;
  }

  .logo-img {
    width: 124px;
  }

  .hero-section {
    min-height: auto;
    padding: 112px 0 60px;
    gap: 20px;
  }

  h1 {
    font-size: clamp(3.25rem, 18vw, 4.9rem);
  }

  h2 {
    font-size: clamp(2.05rem, 11vw, 3.2rem);
  }

  .hero-text,
  .section-heading p,
  .experience-copy p,
  .service-card p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 390px;
  }

  .floating-card {
    max-width: 180px;
    padding: 12px;
  }

  .card-payment {
    top: 4%;
    left: 0;
  }

  .card-appointment {
    right: 0;
    bottom: 8%;
  }

  .stats-band {
    grid-template-columns: 1fr;
    margin-bottom: 72px;
  }

  .stats-band div {
    padding: 24px;
  }

  .services-section,
  .experience-section {
    padding-bottom: 76px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 280px;
  }

  .phone-panel {
    min-height: 470px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
