:root {
  --teal: #4ec5c1;
  --blue: #3a7bd5;
  --indigo: #3d3a8c;
  --bg: #f5f7fa;
  --white: #ffffff;
  --text: #1a1d2e;
  --muted: #6b7280;
  --grad: linear-gradient(135deg, #4ec5c1 0%, #3a7bd5 55%, #3d3a8c 100%);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 20px;
  height: 20px;
  background: var(--indigo);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s,
    background-color 0.3s,
    opacity 0.3s;
  mix-blend-mode: multiply;
}
#cursor.hovered {
  width: 72px;
  height: 72px;
  opacity: 0.18;
  background: var(--blue);
  mix-blend-mode: multiply;
}
@media (hover: none) {
  #cursor {
    display: none;
  }
  body {
    cursor: auto;
  }
}

/* NOISE */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* BLOBS — light version */
.liquid-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.liquid-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  animation: blobFloat 18s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}
.blob-a {
  width: 560px;
  height: 560px;
  background: #4ec5c1;
  top: -160px;
  left: -160px;
  opacity: 0.08;
}
.blob-b {
  width: 450px;
  height: 450px;
  background: #3a7bd5;
  top: 45%;
  right: -120px;
  opacity: 0.07;
  animation-duration: 22s;
  animation-delay: -7s;
}
.blob-c {
  width: 600px;
  height: 600px;
  background: #3d3a8c;
  bottom: -180px;
  left: 15%;
  opacity: 0.06;
  animation-duration: 26s;
  animation-delay: -13s;
}
@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(30px, 50px) scale(1.08);
  }
}

/* GLASS — light */
.glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 4px 24px rgba(61, 58, 140, 0.07),
    0 1px 2px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
  pointer-events: none;
  z-index: 20;
}
.glass:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(78, 197, 193, 0.35);
  transform: translateY(-4px);
  box-shadow:
    0 12px 40px rgba(58, 123, 213, 0.12),
    0 2px 6px rgba(0, 0, 0, 0.05);
}
.glass:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(78, 197, 193, 0.4);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--teal);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 5vw;
}
.nav-pill {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.2rem 0.65rem 0.9rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-wrap {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.nav-brand:hover .nav-logo-wrap {
  transform: scale(1.08);
}
.nav-logo-wrap img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.nav-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--indigo);
  letter-spacing: 0.05em;
}
.nav-name span {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-links a:hover {
  color: var(--indigo);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  background: var(--grad);
  box-shadow: 0 4px 18px rgba(58, 123, 213, 0.3);
  transition:
    opacity 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(58, 123, 213, 0.42);
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(78, 197, 193, 0.15);
  animation: ringPulse 7s ease-in-out infinite;
}
.ring-1 {
  width: 360px;
  height: 360px;
}
.ring-2 {
  width: 580px;
  height: 580px;
  animation-delay: 2s;
}
.ring-3 {
  width: 800px;
  height: 800px;
  animation-delay: 4s;
}
@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.15;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(1.025);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
  animation: floatIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.hero-badge span {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.8rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--text);
  position: relative;
  z-index: 2;
}
.hero-line {
  display: block;
  overflow: hidden;
}
.hero-line-inner {
  display: block;
  transform: translateY(100%);
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.hero-revealed .hero-line-inner {
  transform: translateY(0);
}
.hero h1 em {
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  max-width: 480px;
  margin: 2rem auto 0;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  animation: floatIn 1s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
  animation: floatIn 1s 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  border-radius: 100px;
  background: var(--grad);
  color: white;
  font-size: 0.87rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(58, 123, 213, 0.3);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(58, 123, 213, 0.42);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  border-radius: 100px;
  border: 1.5px solid rgba(61, 58, 140, 0.18);
  color: var(--indigo);
  font-size: 0.87rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.6);
  transition:
    border-color 0.25s,
    color 0.25s,
    transform 0.25s,
    background 0.25s;
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
  background: rgba(78, 197, 193, 0.05);
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: floatIn 1s 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.scroll-hint span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(107, 114, 128, 0.6);
}
.scroll-bar {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.9;
    transform: scaleY(1.1);
  }
}
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── SECTIONS ── */
section {
  padding: 7rem 5vw;
  position: relative;
}
.sec {
  max-width: 1200px;
  margin: 0 auto;
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.9rem;
}
.sec-tag::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--teal);
}
.sec-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text);
}
.sec-title em {
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-label {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(61, 58, 140, 0.06);
  border: 1px solid rgba(61, 58, 140, 0.08);
  margin-bottom: 2rem;
}

.grad-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--teal),
    var(--blue),
    var(--indigo),
    transparent
  );
  opacity: 0.15;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}
.s-card {
  border-radius: 24px;
  padding: 2.2rem 2rem;
  cursor: default;
  background: var(--white);
}
.s-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(78, 197, 193, 0.12),
    rgba(61, 58, 140, 0.08)
  );
  border: 1px solid rgba(78, 197, 193, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.s-card:hover .s-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(78, 197, 193, 0.18);
}
.s-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.s-card p {
  font-size: 0.83rem;
  line-height: 1.7;
  color: var(--muted);
}
.s-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  opacity: 0.15;
  transition: opacity 0.3s;
  color: var(--teal);
}
.s-card:hover .s-arrow {
  opacity: 1;
}

/* ── ABOUT ── */
.about-grid {
  display: flex;
  gap: 5rem;
  align-items: center;
  flex-wrap: wrap;
}
.about-left {
  flex: 1;
  min-width: 280px;
}
.about-left p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 1.3rem;
  max-width: 480px;
}
.about-right {
  flex: 1;
  min-width: 260px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat {
  border-radius: 20px;
  padding: 1.8rem 1.4rem;
  text-align: center;
  background: var(--white);
}
.stat-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-l {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 0.4rem;
  text-transform: uppercase;
}

/* ── CAROUSEL ── */
.ig-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.ig-ext {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
}
.ig-ext:hover {
  color: var(--teal);
}

.c-viewport {
  position: relative;
  overflow: hidden;
  margin: 0 -5vw;
  padding: 0 5vw;
}
.c-track {
  display: flex;
  gap: 1.2rem;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  padding: 1rem 0;
  align-items: center;
}


.ig-card {
  flex: 0 0 calc(28% - 0.8rem);
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9/16;
  position: relative;
  cursor: pointer;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--white);
  transform: scale(0.85);
  opacity: 0.5;
}
.ig-card.in-focus {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 16px 50px rgba(58, 123, 213, 0.18);
}
.ig-card:hover {
  opacity: 0.85;
}
.ig-card.in-focus:hover {
  transform: scale(1.02);
  opacity: 1;
  box-shadow: 0 20px 60px rgba(58, 123, 213, 0.22);
}
@media (max-width: 768px) {
  .ig-card {
    flex: 0 0 calc(55% - 0.8rem);
  }
}
@media (max-width: 480px) {
  .ig-card {
    flex: 0 0 calc(75% - 0.8rem);
  }
}

.ig-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.sound-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  opacity: 0.7;
}
.sound-btn:hover {
  background: rgba(0, 0, 0, 0.65);
  transform: scale(1.1);
  opacity: 1;
}
.sound-btn.active {
  background: rgba(78, 197, 193, 0.6);
  opacity: 1;
}
.ig-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ig-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 29, 46, 0.8) 0%,
    transparent 55%
  );
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
  transition: opacity 0.3s;
}
.ig-card:hover .ig-ov {
  opacity: 1;
}
.ig-ov-txt {
  color: white;
  font-size: 0.82rem;
  line-height: 1.45;
}
.ig-ov-txt strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

.c-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2rem;
}
.c-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
  background: var(--white);
  box-shadow: 0 2px 14px rgba(61, 58, 140, 0.1);
  transition:
    transform 0.2s,
    background 0.25s,
    color 0.25s;
}
.c-btn:hover {
  transform: scale(1.08);
  background: var(--grad);
  color: white;
}

.c-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.c-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(61, 58, 140, 0.15);
  cursor: pointer;
  padding: 0;
  transition:
    background 0.25s,
    transform 0.25s;
}
.c-dot.active {
  background: var(--teal);
  transform: scale(1.35);
  box-shadow: 0 0 8px var(--teal);
}

.ig-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 2.4rem;
  border-radius: 100px;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(238, 42, 123, 0.25);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.btn-ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(238, 42, 123, 0.38);
}
@media (max-width: 768px) {
  .ig-card {
    flex: 0 0 calc(50% - 0.6rem);
  }
}
@media (max-width: 480px) {
  .ig-card {
    flex: 0 0 82%;
  }
}

/* ── CTA ── */
.cta-wrap {
  position: relative;
  overflow: hidden;
  padding: 8rem 5vw;
  background: var(--grad);
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 120%,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: white;
  margin-bottom: 1.2rem;
}
.cta-inner h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}
.cta-inner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 460px;
  margin: 0 auto 2.8rem;
}
.cta-label {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.1rem 2.8rem;
  border-radius: 100px;
  background: white;
  color: var(--indigo);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.25);
}

/* ── FOOTER ── */
footer {
  padding: 2.5rem 5vw;
  border-top: 1px solid rgba(61, 58, 140, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--white);
}
.f-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--indigo);
  letter-spacing: 0.08em;
}
.f-brand span {
  font-family: "Montserrat", sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-left: 0.4rem;
}
footer p {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ── WA FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 200;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  animation: waPop 0.9s 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.55);
}
@keyframes waPop {
  from {
    opacity: 0;
    transform: scale(0.3);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
