*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --teal: #2ECECA;
  --teal-dark: #0D7C7A;
  --teal-dim: rgba(46,206,202,0.10);
  --dark: #07100F;
  --card: #0C1A19;
  --card2: #112120;
  --border: rgba(46,206,202,0.15);
  --border-soft: rgba(255,255,255,0.06);
  --text: #E8F5F4;
  --muted: #6B8C8B;
  --serif: 'Syne', sans-serif;
  --sans: 'DM Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--dark); color: var(--text); overflow-x: hidden; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 5vw; display: flex; align-items: center; justify-content: space-between;
  transition: all 0.3s ease;
}
nav.scrolled { background: rgba(7,16,15,0.94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.78rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--teal); }
.nav-cta { font-family: var(--serif); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; color: var(--dark); background: var(--teal); padding: 0.6rem 1.5rem; border-radius: 3px; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: #45E8E4; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 1.5px; background: var(--text); transition: all 0.3s; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5vw;
  overflow: hidden;
}
#preloader {
  position: fixed;
  inset: 0;
  background: #07100F;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#loader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}
.ld-sub {
  position: relative;
  z-index: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(46,206,202,0.45);
  margin-top: 6px;
  opacity: 0;
  animation: ldFadeIn 0.5s ease 2.2s forwards;
}
@keyframes ldFadeIn { to { opacity: 1; } }
#stars-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border-soft) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 20% 55%, rgba(46,206,202,0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 8px 2px rgba(46,206,202,0.4); }
  50%       { box-shadow: 0 0 20px 6px rgba(46,206,202,0.9); }
}

.hero-content > * {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.15s; }
.hero-content > *:nth-child(2) { animation-delay: 0.35s; }
.hero-content > *:nth-child(3) { animation-delay: 0.55s; }
.hero-content > *:nth-child(4) { animation-delay: 0.75s; }
.hero-content > *:nth-child(5) { animation-delay: 0.95s; }

.hero-micro { font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 1.6rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--teal);
  animation: glowPulse 2.5s ease-in-out infinite; animation-delay: 1.5s;
}

h1 { font-family: var(--serif); font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: var(--text); margin-bottom: 1.4rem; }
h1 span { color: var(--teal); }
.hero-sub { font-size: 1.05rem; font-weight: 300; color: var(--muted); line-height: 1.7; max-width: 520px; margin-bottom: 2.4rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  font-family: var(--serif); font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.05em; color: var(--dark); background: var(--teal);
  padding: 0.85rem 2rem; border-radius: 3px; text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: #45E8E4; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(46,206,202,0.35); }
.btn-ghost {
  font-family: var(--serif); font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.05em; color: var(--teal); border: 1px solid var(--border);
  padding: 0.85rem 2rem; border-radius: 3px; text-decoration: none; transition: all 0.2s;
}
.btn-ghost:hover { background: var(--teal-dim); border-color: var(--teal); }

/* Animated scroll indicator */
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 5vw;
  display: flex; align-items: center; gap: 10px; z-index: 2;
  opacity: 0; animation: fadeIn 1s ease forwards; animation-delay: 1.6s;
}
.scroll-hint span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ─── MARQUEE ─── */
.marquee-wrap { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1rem 0; overflow: hidden; }
.marquee-track { display: flex; gap: 3rem; white-space: nowrap; animation: marquee 22s linear infinite; }
.marquee-track span { font-family: var(--serif); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.marquee-track .dot { color: var(--teal); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SECTIONS ─── */
section { padding: 6rem 5vw; }
.section-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; display: flex; align-items: center; gap: 8px; }
.section-label::before { content: ''; display: block; width: 22px; height: 1px; background: var(--teal); }
h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--text); }
h2 span { color: var(--teal); }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── ABOUT ─── */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-lead { font-size: 1.05rem; font-weight: 300; color: var(--text); line-height: 1.7; margin: 1.5rem 0 1rem; }
.about-body { font-size: 0.92rem; color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }
.about-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  font-size: 0.78rem; font-family: var(--serif); font-weight: 500;
  color: var(--teal); border: 1px solid var(--border); padding: 0.35rem 0.9rem;
  border-radius: 2px; letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s;
}
.chip:hover { background: var(--teal-dim); border-color: var(--teal); }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-card {
  background: var(--card2); border: 1px solid var(--border); padding: 1.8rem 1.5rem; border-radius: 4px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.about-card:hover {
  border-color: rgba(46,206,202,0.5); transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 0 20px rgba(46,206,202,0.08);
}
.about-card-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--teal); line-height: 1; margin-bottom: 8px; }
.about-card-lbl { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-cards { grid-template-columns: 1fr 1fr; }
}
.card-img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 16/9;
}
.card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.75) saturate(0.8);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --teal: #2ECECA;
  --teal-dark: #0D7C7A;
  --teal-dim: rgba(46,206,202,0.10);
  --dark: #07100F;
  --card: #0C1A19;
  --card2: #112120;
  --border: rgba(46,206,202,0.15);
  --border-soft: rgba(255,255,255,0.06);
  --text: #E8F5F4;
  --muted: #6B8C8B;
  --serif: 'Syne', sans-serif;
  --sans: 'DM Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--dark); color: var(--text); overflow-x: hidden; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 5vw; display: flex; align-items: center; justify-content: space-between;
  transition: all 0.3s ease;
}
nav.scrolled { background: rgba(7,16,15,0.94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.78rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--teal); }
.nav-cta { font-family: var(--serif); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; color: var(--dark); background: var(--teal); padding: 0.6rem 1.5rem; border-radius: 3px; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: #45E8E4; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 1.5px; background: var(--text); transition: all 0.3s; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5vw;
  overflow: hidden;
}
#preloader {
  position: fixed;
  inset: 0;
  background: #07100F;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#loader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}
.ld-sub {
  position: relative;
  z-index: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(46,206,202,0.45);
  margin-top: 6px;
  opacity: 0;
  animation: ldFadeIn 0.5s ease 2.2s forwards;
}
@keyframes ldFadeIn { to { opacity: 1; } }
#stars-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border-soft) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 20% 55%, rgba(46,206,202,0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 8px 2px rgba(46,206,202,0.4); }
  50%       { box-shadow: 0 0 20px 6px rgba(46,206,202,0.9); }
}

.hero-content > * {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.15s; }
.hero-content > *:nth-child(2) { animation-delay: 0.35s; }
.hero-content > *:nth-child(3) { animation-delay: 0.55s; }
.hero-content > *:nth-child(4) { animation-delay: 0.75s; }
.hero-content > *:nth-child(5) { animation-delay: 0.95s; }

.hero-micro { font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 1.6rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--teal);
  animation: glowPulse 2.5s ease-in-out infinite; animation-delay: 1.5s;
}

h1 { font-family: var(--serif); font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: var(--text); margin-bottom: 1.4rem; }
h1 span { color: var(--teal); }
.hero-sub { font-size: 1.05rem; font-weight: 300; color: var(--muted); line-height: 1.7; max-width: 520px; margin-bottom: 2.4rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  font-family: var(--serif); font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.05em; color: var(--dark); background: var(--teal);
  padding: 0.85rem 2rem; border-radius: 3px; text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: #45E8E4; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(46,206,202,0.35); }
.btn-ghost {
  font-family: var(--serif); font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.05em; color: var(--teal); border: 1px solid var(--border);
  padding: 0.85rem 2rem; border-radius: 3px; text-decoration: none; transition: all 0.2s;
}
.btn-ghost:hover { background: var(--teal-dim); border-color: var(--teal); }

/* Animated scroll indicator */
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 5vw;
  display: flex; align-items: center; gap: 10px; z-index: 2;
  opacity: 0; animation: fadeIn 1s ease forwards; animation-delay: 1.6s;
}
.scroll-hint span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ─── MARQUEE ─── */
.marquee-wrap { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1rem 0; overflow: hidden; }
.marquee-track { display: flex; gap: 3rem; white-space: nowrap; animation: marquee 22s linear infinite; }
.marquee-track span { font-family: var(--serif); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.marquee-track .dot { color: var(--teal); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SECTIONS ─── */
section { padding: 6rem 5vw; }
.section-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; display: flex; align-items: center; gap: 8px; }
.section-label::before { content: ''; display: block; width: 22px; height: 1px; background: var(--teal); }
h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--text); }
h2 span { color: var(--teal); }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── ABOUT ─── */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-lead { font-size: 1.05rem; font-weight: 300; color: var(--text); line-height: 1.7; margin: 1.5rem 0 1rem; }
.about-body { font-size: 0.92rem; color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }
.about-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  font-size: 0.78rem; font-family: var(--serif); font-weight: 500;
  color: var(--teal); border: 1px solid var(--border); padding: 0.35rem 0.9rem;
  border-radius: 2px; letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s;
}

.chip svg {
  width: 14px;
  height: 14px;
  stroke: #00BFA5; /* your teal */
  margin-right: 6px;
  vertical-align: middle;
  flex-shrink: 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chip:hover { background: var(--teal-dim); border-color: var(--teal); }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-card {
  background: var(--card2); border: 1px solid var(--border); padding: 1.8rem 1.5rem; border-radius: 4px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.about-card:hover {
  border-color: rgba(46,206,202,0.5); transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 0 20px rgba(46,206,202,0.08);
}
.about-card-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--teal); line-height: 1; margin-bottom: 8px; }
.about-card-lbl { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-cards { grid-template-columns: 1fr 1fr; }
}
.card-img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 16/9;
}
.card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.75) saturate(0.8);
}

/* ─── SERVICES  vahi images ─── 
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem; }
.services-sub { font-size: 0.95rem; color: var(--muted); max-width: 360px; line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--border); border: 1px solid var(--border); }

.service-card {
  position: relative;
  overflow: hidden;
  cursor: default;
  aspect-ratio: 4/3;
  min-height: 240px;
}*/


.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem; }
.services-sub { font-size: 0.95rem; color: var(--muted); max-width: 360px; line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--border); border: 1px solid var(--border); }
.service-card {
  background: var(--dark); padding: 2.2rem 2rem;
  transition: background 0.3s, transform 0.3s;
  position: relative; overflow: hidden; cursor: default;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--teal); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(46,206,202,0.07) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { background: var(--card); }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 1.4rem; margin-bottom: 1.2rem; display: block; transition: transform 0.3s; }
.service-card:hover .service-icon { transform: scale(1.15) rotate(-4deg); }
.service-name { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--text); margin-bottom: 0.7rem; }
.service-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }


/* Background image layer */
.service-card-bg {
  position: absolute; inset: 0;
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
  filter: brightness(0.35) saturate(0.6);
  transform: scale(1.05);
}
.service-card:hover .service-card-bg {
  transform: scale(1.12);
  filter: brightness(0.18) saturate(0.4);
}

/* Dark overlay */
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,16,15,0.95) 0%, rgba(7,16,15,0.4) 60%, transparent 100%);
  transition: background 0.4s ease;
  z-index: 1;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(7,16,15,0.98) 0%, rgba(7,16,15,0.85) 100%);
}

/* Default state — icon + name, bottom-left */
.service-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.6rem 1.8rem;
  z-index: 2;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.service-card:hover .service-card-content {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

/* Hover state — full content */
.service-card-hover {
  position: absolute; inset: 0;
  padding: 1.8rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover .service-card-hover {
  opacity: 1;
  transform: translateY(0);
}

/* Teal left border accent on hover */
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 2px;
  background: var(--teal);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 4;
}
.service-card:hover::after { transform: scaleY(1); }

.service-icon { font-size: 1.6rem; margin-bottom: 0.8rem; display: block; }
.service-name { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--text); margin-bottom: 0.7rem; }
.service-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.service-cta {
  font-family: var(--serif); font-size: 0.78rem; font-weight: 600;
  color: var(--teal); letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: border-color 0.2s, letter-spacing 0.2s;
}
.service-card:hover .service-cta { border-color: var(--teal); letter-spacing: 0.1em; }

@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .services-grid { grid-template-columns: 1fr; } }

/* ─── SERVICES ─── */
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem; }
.services-sub { font-size: 0.95rem; color: var(--muted); max-width: 360px; line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--border); border: 1px solid var(--border); }
.service-card {
  background: var(--dark); padding: 2.2rem 2rem;
  transition: background 0.3s, transform 0.3s;
  position: relative; overflow: hidden; cursor: default;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--teal); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(46,206,202,0.07) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { background: var(--card); }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 1.4rem; margin-bottom: 1.2rem; display: block; transition: transform 0.3s; }
.service-card:hover .service-icon { transform: scale(1.15) rotate(-4deg); }
.service-name { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--text); margin-bottom: 0.7rem; }
.service-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: #00BFA5; /* replace with your accent color */
}
/* ─── WHY ─── */
.why-sub { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }
.why-section { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.why-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.why-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.why-num { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--teal); opacity: 0.35; line-height: 1; min-width: 40px; }
.why-text strong { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--text); display: block; margin-bottom: 4px; }
.why-text p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.metric-box {
  background: var(--card2); border: 1px solid var(--border); padding: 1.6rem 1.4rem; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.metric-box:hover {
  border-color: rgba(46,206,202,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 0 20px rgba(46,206,202,0.08);
}

/* ─── STAT RINGS ─── */
.stat-ring-wrap {
  position: relative; width: 96px; height: 96px;
  display: flex; align-items: center; justify-content: center;
}
.stat-ring-svg {
  position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible;
}
.stat-ring-inner { position: relative; z-index: 1; text-align: center; }
.stat-num { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--teal); line-height: 1; }
.stat-label { font-size: 0.58rem; font-weight: 400; color: var(--muted); letter-spacing: 0.05em; margin-top: 3px; max-width: 64px; line-height: 1.3; }

.sring-1 { animation: spinCW  12s linear infinite; transform-origin: 50px 50px; }
.sring-2 { animation: spinCCW  9s linear infinite; transform-origin: 50px 50px; }
.sring-3 { animation: spinCW  15s linear infinite; transform-origin: 50px 50px; }
.sring-dot-1 { transform-origin: 50px 50px; animation: spinCW  12s linear infinite; }
.sring-dot-2 { transform-origin: 50px 50px; animation: spinCCW  9s linear infinite; }
.sring-dot-3 { transform-origin: 50px 50px; animation: spinCW  15s linear infinite; }

@keyframes spinCW  { from { transform: rotate(0deg);   } to { transform: rotate(360deg);  } }
@keyframes spinCCW { from { transform: rotate(0deg);   } to { transform: rotate(-360deg); } }

/* ─── PROCESS ─── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 3rem; }
.process-step {
  background: var(--dark); padding: 2rem 1.6rem;
  transition: background 0.2s; position: relative; overflow: hidden;
}
.process-step::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--teal); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.process-step:hover { background: var(--card); }
.process-step:hover::before { transform: scaleX(1); }
.step-n { font-family: var(--serif); font-size: 3rem; font-weight: 700; color: var(--teal); opacity: 0.18; line-height: 1; margin-bottom: 1rem; }
.step-title { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 0.6rem; }
.step-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* ─── PACKAGES ─── */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.pkg {
  border: 1px solid var(--border); padding: 2.2rem 2rem; position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pkg:hover { border-color: rgba(46,206,202,0.4); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(46,206,202,0.07); }
.pkg.featured { border-color: var(--teal); }
.pkg.featured:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(46,206,202,0.15); }
.pkg-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--teal); color: var(--dark); font-family: var(--serif); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 16px; }
.pkg-name { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem; }
.pkg-price { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 0.4rem; }
.pkg-price sub { font-size: 0.9rem; font-weight: 400; color: var(--muted); }
.pkg-sub { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.6rem; }
.pkg-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 1.4rem; }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.8rem; }
.pkg-features li { font-size: 0.85rem; color: var(--muted); padding-left: 1.2rem; position: relative; line-height: 1.5; }
.pkg-features li::before { content: '—'; position: absolute; left: 0; color: var(--teal); font-size: 0.7rem; top: 2px; }
.pkg-btn { display: block; text-align: center; font-family: var(--serif); font-size: 0.85rem; font-weight: 600; padding: 0.75rem; border: 1px solid var(--border); color: var(--muted); text-decoration: none; transition: all 0.2s; letter-spacing: 0.06em; }
.pkg.featured .pkg-btn { background: var(--teal); color: var(--dark); border-color: var(--teal); }
.pkg-btn:hover { border-color: var(--teal); color: var(--teal); }
.pkg.featured .pkg-btn:hover { background: #45E8E4; }

/* ─── CONTACT ─── */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info { padding-top: 0.5rem; }
.contact-info p { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin: 1.5rem 0 2.5rem; }
.contact-detail { display: flex; flex-direction: column; gap: 1rem; }
.contact-row { display: flex; align-items: center; gap: 1rem; }
.contact-icon { width: 38px; height: 38px; background: var(--teal-dim); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; transition: background 0.2s, border-color 0.2s; }
.contact-row:hover .contact-icon { background: rgba(46,206,202,0.2); border-color: rgba(46,206,202,0.5); }
.contact-row span { font-size: 0.88rem; color: var(--muted); }
.contact-row a { font-size: 0.88rem; color: var(--text); text-decoration: none; transition: color 0.2s; }
.contact-row a:hover { color: var(--teal); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.form-field input, .form-field select, .form-field textarea {
  background: var(--card); border: 1px solid var(--border); color: var(--text);
  padding: 0.75rem 1rem; font-family: var(--sans); font-size: 0.9rem;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; resize: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(46,206,202,0.08);
}
.form-field select option { background: var(--card); }
.form-submit {
  font-family: var(--serif); font-size: 0.88rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--dark); background: var(--teal); border: none; padding: 0.9rem 2rem;
  cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; text-align: center;
}
.form-submit:hover { background: #45E8E4; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(46,206,202,0.35); }

/* ─── FOOTER ─── */
footer { border-top: 1px solid var(--border); padding: 2.5rem 5vw; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-logo img { height: 36px; }
.footer-copy { font-size: 0.78rem; color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.78rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  nav { padding: 1rem 5vw; }
  .hero { padding-top: 6rem; min-height: auto; padding-bottom: 4rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; max-width: 400px; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; }
  .scroll-hint { display: none; }
}
@media (max-width: 580px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .why-visual { grid-template-columns: 1fr 1fr; }
}

/* Custom cursor glow (desktop only) */
@media (pointer: fine) {
  .cursor-glow {
    position: fixed; width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(46,206,202,0.06) 0%, transparent 70%);
    pointer-events: none; z-index: 9999; transform: translate(-50%, -50%);
    transition: left 0.08s ease, top 0.08s ease;
  }
}

/* ─── ROTATING CUBE LOGO ─── */
.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-cube { width: 32px; height: 32px; perspective: 120px; flex-shrink: 0; }
.logo-cube--sm { width: 26px; height: 26px; perspective: 100px; }
.logo-cube {
  position: relative; transform-style: preserve-3d;
  animation: cubeRotate 6s linear infinite;
}
@keyframes cubeRotate {
  0%   { transform: rotateX(0deg)   rotateY(0deg); }
  100% { transform: rotateX(360deg) rotateY(360deg); }
}
.cube-face {
  position: absolute; width: 32px; height: 32px;
  border: 1px solid rgba(46,206,202,0.55); background: rgba(7,16,15,0.85);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 13px; font-weight: 700; color: var(--teal);
  backface-visibility: visible;
}
.logo-cube--sm .cube-face { width: 26px; height: 26px; font-size: 11px; }
.cube-face.front  { transform: translateZ(16px); }
.cube-face.back   { transform: rotateY(180deg) translateZ(16px); }
.cube-face.right  { transform: rotateY(90deg)  translateZ(16px); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(16px); }
.cube-face.top    { transform: rotateX(90deg)  translateZ(16px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(16px); }
.logo-cube--sm .cube-face.front  { transform: translateZ(13px); }
.logo-cube--sm .cube-face.back   { transform: rotateY(180deg) translateZ(13px); }
.logo-cube--sm .cube-face.right  { transform: rotateY(90deg)  translateZ(13px); }
.logo-cube--sm .cube-face.left   { transform: rotateY(-90deg) translateZ(13px); }
.logo-cube--sm .cube-face.top    { transform: rotateX(90deg)  translateZ(13px); }
.logo-cube--sm .cube-face.bottom { transform: rotateX(-90deg) translateZ(13px); }
.logo-text { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.logo-text--sm { font-size: 0.95rem; }

/* ─── WHY ─── */
.why-section { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.why-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.why-num { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--teal); opacity: 0.35; line-height: 1; min-width: 40px; }
.why-text strong { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--text); display: block; margin-bottom: 4px; }
.why-text p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.metric-box {
  background: var(--card2); border: 1px solid var(--border); padding: 1.6rem 1.4rem; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.metric-box:hover {
  border-color: rgba(46,206,202,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 0 20px rgba(46,206,202,0.08);
}

/* ─── STAT RINGS ─── */
.stat-ring-wrap {
  position: relative; width: 96px; height: 96px;
  display: flex; align-items: center; justify-content: center;
}
.stat-ring-svg {
  position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible;
}
.stat-ring-inner { position: relative; z-index: 1; text-align: center; }
.stat-num { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--teal); line-height: 1; }
.stat-label { font-size: 0.58rem; font-weight: 400; color: var(--muted); letter-spacing: 0.05em; margin-top: 3px; max-width: 64px; line-height: 1.3; }

.sring-1 { animation: spinCW  12s linear infinite; transform-origin: 50px 50px; }
.sring-2 { animation: spinCCW  9s linear infinite; transform-origin: 50px 50px; }
.sring-3 { animation: spinCW  15s linear infinite; transform-origin: 50px 50px; }
.sring-dot-1 { transform-origin: 50px 50px; animation: spinCW  12s linear infinite; }
.sring-dot-2 { transform-origin: 50px 50px; animation: spinCCW  9s linear infinite; }
.sring-dot-3 { transform-origin: 50px 50px; animation: spinCW  15s linear infinite; }

@keyframes spinCW  { from { transform: rotate(0deg);   } to { transform: rotate(360deg);  } }
@keyframes spinCCW { from { transform: rotate(0deg);   } to { transform: rotate(-360deg); } }

/* ─── PROCESS ─── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 3rem; }
.process-step {
  background: var(--dark); padding: 2rem 1.6rem;
  transition: background 0.2s; position: relative; overflow: hidden;
}
.process-step::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--teal); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.process-step:hover { background: var(--card); }
.process-step:hover::before { transform: scaleX(1); }
.step-n { font-family: var(--serif); font-size: 3rem; font-weight: 700; color: var(--teal); opacity: 0.18; line-height: 1; margin-bottom: 1rem; }
.step-title { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 0.6rem; }
.step-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* ─── PACKAGES ─── */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.pkg {
  border: 1px solid var(--border); padding: 2.2rem 2rem; position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pkg:hover { border-color: rgba(46,206,202,0.4); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(46,206,202,0.07); }
.pkg.featured { border-color: var(--teal); }
.pkg.featured:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(46,206,202,0.15); }
.pkg-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--teal); color: var(--dark); font-family: var(--serif); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 16px; }
.pkg-name { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem; }
.pkg-price { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 0.4rem; }
.pkg-price sub { font-size: 0.9rem; font-weight: 400; color: var(--muted); }
.pkg-sub { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.6rem; }
.pkg-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 1.4rem; }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.8rem; }
.pkg-features li { font-size: 0.85rem; color: var(--muted); padding-left: 1.2rem; position: relative; line-height: 1.5; }
.pkg-features li::before { content: '—'; position: absolute; left: 0; color: var(--teal); font-size: 0.7rem; top: 2px; }
.pkg-btn { display: block; text-align: center; font-family: var(--serif); font-size: 0.85rem; font-weight: 600; padding: 0.75rem; border: 1px solid var(--border); color: var(--muted); text-decoration: none; transition: all 0.2s; letter-spacing: 0.06em; }
.pkg.featured .pkg-btn { background: var(--teal); color: var(--dark); border-color: var(--teal); }
.pkg-btn:hover { border-color: var(--teal); color: var(--teal); }
.pkg.featured .pkg-btn:hover { background: #45E8E4; }

/* ─── CONTACT ─── */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info { padding-top: 0.5rem; }
.contact-info p { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin: 1.5rem 0 2.5rem; }
.contact-detail { display: flex; flex-direction: column; gap: 1rem; }
.contact-row { display: flex; align-items: center; gap: 1rem; }
.contact-icon { width: 38px; height: 38px; background: var(--teal-dim); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; transition: background 0.2s, border-color 0.2s; }
.contact-row:hover .contact-icon { background: rgba(46,206,202,0.2); border-color: rgba(46,206,202,0.5); }
.contact-row span { font-size: 0.88rem; color: var(--muted); }
.contact-row a { font-size: 0.88rem; color: var(--text); text-decoration: none; transition: color 0.2s; }
.contact-row a:hover { color: var(--teal); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.form-field input, .form-field select, .form-field textarea {
  background: var(--card); border: 1px solid var(--border); color: var(--text);
  padding: 0.75rem 1rem; font-family: var(--sans); font-size: 0.9rem;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; resize: none;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: #00BFA5; /* swap with your exact teal */
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(46,206,202,0.08);
}
.form-field select option { background: var(--card); }
.form-submit {
  font-family: var(--serif); font-size: 0.88rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--dark); background: var(--teal); border: none; padding: 0.9rem 2rem;
  cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; text-align: center;
}
.form-submit:hover { background: #45E8E4; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(46,206,202,0.35); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #aaa;
}

.form-field label svg {
  width: 14px;
  height: 14px;
  stroke: #00BFA5; /* your teal */
  flex-shrink: 0;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: #111;
  border: 1px solid #252525;
  border-radius: 10px;
  padding: 12px 16px;
  color: #f0f0f0;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
  resize: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #444;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #00BFA5;
  box-shadow: 0 0 0 3px rgba(0, 191, 165, 0.08);
}

.form-field select {
  appearance: none;
  cursor: pointer;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #00BFA5;
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.2s;
  margin-top: 4px;
}

.form-submit svg {
  width: 18px;
  height: 18px;
  stroke: #000;
  transition: transform 0.2s;
}

.form-submit:hover {
  background: #00897B;
  transform: translateY(-2px);
}

.form-submit:hover svg {
  transform: translateX(4px);
}

/* ─── FOOTER ─── */
footer { border-top: 1px solid var(--border); padding: 2.5rem 5vw; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-logo img { height: 36px; }
.footer-copy { font-size: 0.78rem; color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.78rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  nav { padding: 1rem 5vw; }
  .hero { padding-top: 6rem; min-height: auto; padding-bottom: 4rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; max-width: 400px; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; }
  .scroll-hint { display: none; }
}
@media (max-width: 580px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .why-visual { grid-template-columns: 1fr 1fr; }
}

/* Custom cursor glow (desktop only) */
@media (pointer: fine) {
  .cursor-glow {
    position: fixed; width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(46,206,202,0.06) 0%, transparent 70%);
    pointer-events: none; z-index: 9999; transform: translate(-50%, -50%);
    transition: left 0.08s ease, top 0.08s ease;
  }
}

/* ─── ROTATING CUBE LOGO ─── */
.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-cube { width: 32px; height: 32px; perspective: 120px; flex-shrink: 0; }
.logo-cube--sm { width: 26px; height: 26px; perspective: 100px; }
.logo-cube {
  position: relative; transform-style: preserve-3d;
  animation: cubeRotate 6s linear infinite;
}
@keyframes cubeRotate {
  0%   { transform: rotateX(0deg)   rotateY(0deg); }
  100% { transform: rotateX(360deg) rotateY(360deg); }
}
.cube-face {
  position: absolute; width: 32px; height: 32px;
  border: 1px solid rgba(46,206,202,0.55); background: rgba(7,16,15,0.85);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 13px; font-weight: 700; color: var(--teal);
  backface-visibility: visible;
}
.logo-cube--sm .cube-face { width: 26px; height: 26px; font-size: 11px; }
.cube-face.front  { transform: translateZ(16px); }
.cube-face.back   { transform: rotateY(180deg) translateZ(16px); }
.cube-face.right  { transform: rotateY(90deg)  translateZ(16px); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(16px); }
.cube-face.top    { transform: rotateX(90deg)  translateZ(16px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(16px); }
.logo-cube--sm .cube-face.front  { transform: translateZ(13px); }
.logo-cube--sm .cube-face.back   { transform: rotateY(180deg) translateZ(13px); }
.logo-cube--sm .cube-face.right  { transform: rotateY(90deg)  translateZ(13px); }
.logo-cube--sm .cube-face.left   { transform: rotateY(-90deg) translateZ(13px); }
.logo-cube--sm .cube-face.top    { transform: rotateX(90deg)  translateZ(13px); }
.logo-cube--sm .cube-face.bottom { transform: rotateX(-90deg) translateZ(13px); }
.logo-text { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.logo-text--sm { font-size: 0.95rem; }
