/* --- Reset & base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg-deep: #07090f;
  --bg-mid: #0d111a;
  --text: #e8ecf4;
  --muted: #94a3b8;
  --cyan: #22d3ee;
  --blue: #38bdf8;
  --purple: #a855f7;
  --violet: #8b5cf6;
  --glass: rgba(15, 23, 42, 0.45);
  --glass-border: rgba(148, 163, 184, 0.18);
  --glow-blue: 0 0 40px rgba(56, 189, 248, 0.35);
  --glow-purple: 0 0 50px rgba(168, 85, 247, 0.35);
  --radius: 20px;
  --radius-sm: 14px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --nav-height: 76px;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .contact-panel-glow::before {
    animation: none !important;
    opacity: 0.35;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: radial-gradient(ellipse 120% 80% at 50% -20%, #1e1b4b 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(56, 189, 248, 0.08), transparent 45%),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(168, 85, 247, 0.12), transparent 45%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 40%, #06080e 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Noise overlay */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  z-index: 9999;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Ambient orbs */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}

.orb-a {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.5), transparent 70%);
  top: -120px;
  right: -80px;
  animation: float-orb 18s ease-in-out infinite;
}

.orb-b {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.45), transparent 70%);
  bottom: 10%;
  left: -100px;
  animation: float-orb 22s ease-in-out infinite reverse;
}

.orb-c {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.35), transparent 70%);
  top: 45%;
  right: 15%;
  animation: float-orb 16s ease-in-out infinite 2s;
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 25px) scale(0.98);
  }
}

/* Glass */
.glass-nav,
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 1.25rem 0;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.navbar.scrolled {
  box-shadow: var(--glow-blue), 0 12px 40px rgba(0, 0, 0, 0.45);
  border-color: rgba(56, 189, 248, 0.25);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.6));
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  font-size: 1.25rem;
  color: #020617;
  box-shadow: var(--glow-blue), var(--glow-purple);
}

.logo-accent {
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(56, 189, 248, 0.12);
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.2);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Sections */
main {
  position: relative;
  z-index: 1;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  background: linear-gradient(135deg, #fff 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title.align-left {
  text-align: left;
  background: linear-gradient(135deg, #fff 30%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
}

.section-desc {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-desc.align-left {
  margin: 0 0 1.5rem;
}

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-height) * 0.5) 1.25rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: min(92vh, 900px);
  position: relative;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(56, 189, 248, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: rgba(15, 23, 42, 0.5);
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.15);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4.25rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 1.25rem;
}

.gradient-text {
  background: linear-gradient(105deg, var(--cyan) 0%, var(--blue) 35%, var(--purple) 70%, #e879f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 40px rgba(56, 189, 248, 0.35));
}

.hero-sub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 32rem;
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue) 40%, var(--violet));
  color: #020617;
  box-shadow: var(--glow-blue), 0 4px 24px rgba(0, 0, 0, 0.35);
}

.glow-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  opacity: 0;
  z-index: -1;
  filter: blur(12px);
  transition: opacity 0.35s ease;
}

.glow-btn:hover::before {
  opacity: 0.85;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: inset 0 0 20px rgba(56, 189, 248, 0.08);
}

.glow-btn-outline:hover {
  border-color: rgba(168, 85, 247, 0.6);
  box-shadow: var(--glow-purple), inset 0 0 30px rgba(56, 189, 248, 0.15);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--glass-border);
  width: 100%;
  margin-top: auto;
}

.btn-ghost:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.2);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a 45%, #059669);
  color: #ecfdf5;
  border: 1px solid rgba(74, 222, 128, 0.45);
  box-shadow: 0 0 28px rgba(34, 197, 94, 0.35), 0 8px 28px rgba(0, 0, 0, 0.35);
}

.btn-whatsapp:hover {
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.55), 0 12px 36px rgba(0, 0, 0, 0.4);
}

.glow-wa::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  opacity: 0;
  z-index: -1;
  filter: blur(14px);
  transition: opacity 0.35s ease;
}

.glow-wa:hover::before {
  opacity: 0.75;
}

.full-width {
  width: 100%;
}

/* Hero visual */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.float-card {
  animation: float-card 6s ease-in-out infinite;
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-card {
  width: 100%;
  max-width: 380px;
  padding: 1.75rem;
  border-radius: 24px;
  transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}

.hero-card:hover {
  box-shadow: var(--glow-blue), var(--glow-purple), 0 24px 60px rgba(0, 0, 0, 0.45);
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-6px) scale(1.02);
}

.hero-card-inner {
  text-align: center;
}

.hero-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.hero-sculpture {
  position: relative;
  height: 220px;
  margin: 1.5rem 0;
  display: grid;
  place-items: center;
}

.layer {
  position: absolute;
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.layer-1 {
  width: 160px;
  height: 160px;
  background: conic-gradient(from 180deg, var(--cyan), var(--purple), var(--blue), var(--cyan));
  opacity: 0.35;
  filter: blur(20px);
}

.layer-2 {
  width: 120px;
  height: 120px;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.4), rgba(168, 85, 247, 0.5));
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.4), var(--glow-blue);
}

.layer-3 {
  width: 56px;
  height: 56px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--cyan));
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.8);
}

.hero-card:hover .layer-2 {
  transform: rotate(12deg) scale(1.08);
}

.hero-card:hover .layer-3 {
  transform: translateY(-8px);
}

.hero-card-caption {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Product cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.product-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: var(--glow-purple), 0 20px 50px rgba(0, 0, 0, 0.35);
}

.product-card-wide {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .product-card-wide {
    grid-column: span 2;
  }
}

.product-icon {
  font-size: 1.5rem;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.5));
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0;
  letter-spacing: -0.02em;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  flex-grow: 1;
  font-size: 0.98rem;
}

.product-chip {
  align-self: flex-start;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: var(--cyan);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
}

.gallery-item {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.4s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
  transition: box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--glow-blue), var(--glow-purple), 0 24px 48px rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.15) brightness(1.05);
}

.gallery-item:hover::after {
  box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.45), inset 0 0 60px rgba(168, 85, 247, 0.15);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  background: linear-gradient(transparent, rgba(7, 9, 15, 0.92));
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.gallery-item:hover figcaption {
  transform: translateY(0);
}

.gallery-item {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 4;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.price-card {
  padding: 2.15rem 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(155deg, rgba(17, 24, 39, 0.72) 0%, rgba(7, 9, 15, 0.88) 50%, rgba(15, 23, 42, 0.65) 100%);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35);
  transition: transform 0.45s cubic-bezier(0.34, 1.45, 0.64, 1), border-color 0.4s ease,
    box-shadow 0.45s ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(125deg, rgba(56, 189, 248, 0.35), rgba(168, 85, 247, 0.22), rgba(34, 211, 238, 0.15));
  opacity: 0.35;
  z-index: -2;
  transition: opacity 0.45s ease;
}

.price-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 80% at 10% 0%, rgba(56, 189, 248, 0.14), transparent 55%);
  opacity: 0.65;
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.55s ease;
}

.price-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 0 50px rgba(56, 189, 248, 0.22), 0 0 70px rgba(168, 85, 247, 0.12),
    0 28px 56px rgba(0, 0, 0, 0.55), inset 0 0 40px rgba(56, 189, 248, 0.06);
}

.price-card:hover::before {
  opacity: 0.85;
}

.price-card:hover::after {
  opacity: 1;
  transform: translate3d(6px, -4px, 0);
}

.price-card.featured {
  border-color: rgba(168, 85, 247, 0.42);
  box-shadow: 0 0 55px rgba(168, 85, 247, 0.18), 0 16px 48px rgba(0, 0, 0, 0.5),
    inset 0 0 80px rgba(56, 189, 248, 0.07);
}

.price-card.featured::before {
  opacity: 0.55;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.45), rgba(56, 189, 248, 0.28), rgba(236, 72, 153, 0.12));
}

.price-card.featured:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 0 60px rgba(168, 85, 247, 0.35), 0 0 80px rgba(56, 189, 248, 0.18),
    0 32px 64px rgba(0, 0, 0, 0.55), inset 0 0 48px rgba(168, 85, 247, 0.08);
}

.price-card.premium::before {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.35), rgba(56, 189, 248, 0.22), rgba(168, 85, 247, 0.25));
}

.price-card.premium:hover {
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 56px rgba(34, 211, 238, 0.22), 0 0 72px rgba(168, 85, 247, 0.15), 0 28px 56px rgba(0, 0, 0, 0.55);
}

.badge {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  color: #020617;
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.55);
  z-index: 1;
}

.price-card h3 {
  font-family: var(--font-display);
  margin: 0;
  padding-right: 5rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.price-card.premium h3 {
  padding-right: 0;
}

.price-tag {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.price-tag-muted {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
}

.price-inr {
  display: inline-block;
  font-size: 2.35rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(100deg, #e0f2fe 0%, var(--cyan) 25%, var(--blue) 45%, var(--purple) 75%, #f5d0fe 100%);
  background-size: 160% 160%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(56, 189, 248, 0.35));
  transition: filter 0.35s ease;
}

.price-card:hover .price-inr {
  filter: drop-shadow(0 0 32px rgba(168, 85, 247, 0.45));
}

.price-card ul {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: var(--muted);
  flex-grow: 1;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.price-card li + li {
  margin-top: 0.4rem;
}

.price-card .btn {
  position: relative;
  z-index: 1;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.75rem;
  align-items: stretch;
}

.contact-intro {
  padding: 2rem 2rem 2.15rem;
  border-radius: 26px;
}

.contact-panel-glow {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.42), 0 0 60px rgba(56, 189, 248, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: box-shadow 0.45s ease, border-color 0.45s ease, transform 0.45s ease;
}

.contact-panel-glow::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 140deg, rgba(56, 189, 248, 0.09), rgba(168, 85, 247, 0.14), rgba(34, 211, 238, 0.08), rgba(56, 189, 248, 0.09));
  opacity: 0.65;
  animation: contact-orbit 14s linear infinite;
  pointer-events: none;
}

.contact-panel-glow:hover {
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.48), 0 0 80px rgba(168, 85, 247, 0.12),
    0 0 48px rgba(56, 189, 248, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

@keyframes contact-orbit {
  to {
    transform: rotate(360deg);
  }
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.65rem;
  background: linear-gradient(120deg, #fff 0%, var(--cyan) 55%, var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  z-index: 1;
}

.contact-lead {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}

.contact-info-block {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.14);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-block:hover {
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.12);
}

.contact-info-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.contact-links-stack {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-value-link {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.contact-value-link:hover {
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(56, 189, 248, 0.45);
}

.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.contact-cta {
  flex: 1 1 auto;
  min-width: min(100%, 160px);
  justify-content: center;
}

.contact-social-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  position: relative;
  z-index: 1;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.social-pill:hover {
  transform: translateY(-3px);
}

.social-pill-icon {
  opacity: 0.85;
  font-size: 1rem;
}

.whatsapp-pill:hover {
  border-color: rgba(74, 222, 128, 0.55);
  box-shadow: 0 0 32px rgba(34, 197, 94, 0.35);
}

.instagram-pill:hover {
  border-color: rgba(236, 72, 153, 0.55);
  box-shadow: 0 0 32px rgba(236, 72, 153, 0.35);
}

.contact-form-glow {
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.42), 0 0 48px rgba(168, 85, 247, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.45s ease, border-color 0.45s ease;
}

.contact-form-glow:hover {
  border-color: rgba(168, 85, 247, 0.28);
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.48), 0 0 64px rgba(168, 85, 247, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.contact-form {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: rgba(15, 23, 42, 0.55);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15), 0 0 24px rgba(168, 85, 247, 0.15);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--cyan);
  min-height: 1.4em;
}

/* Footer */
.site-footer {
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: var(--radius);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-top {
  font-weight: 600;
  color: var(--cyan);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.footer-top:hover {
  color: var(--purple);
  text-shadow: 0 0 16px rgba(168, 85, 247, 0.5);
}

/* Responsive */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 1rem;
  }

  .hero-visual {
    order: -1;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 1.25rem;
    right: 1.25rem;
    flex-direction: column;
    padding: 1rem;
    border-radius: var(--radius);
    background: rgba(7, 9, 15, 0.92);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    gap: 0.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
  }

  .navbar {
    position: relative;
    flex-wrap: wrap;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .product-card-wide {
    grid-column: 1 / -1;
  }
}
