/* ============================================================
   TEJASHREE SURYAWANSHI — Premium Vedic Astrology Landing Page
   Luxury · Royal · Dark · Black + Gold + Purple · Glassmorphism
   ============================================================ */

/* ===== Design Tokens / CSS Variables ===== */
:root {
  /* Core palette */
  --black: #060409;
  --bg: #0a0612;
  --bg-2: #0f0a1c;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.10);
  --border-gold: rgba(212, 175, 90, 0.35);

  /* Gold */
  --gold: #e6c167;
  --gold-2: #d4af37;
  --gold-soft: #f3e0a3;
  --gold-grad: linear-gradient(135deg, #f6e7ad 0%, #e6c167 35%, #c9952f 100%);

  /* Purple / Royal */
  --purple: #7b3fe4;
  --purple-2: #9d5cff;
  --violet: #b388ff;
  --purple-grad: linear-gradient(135deg, #9d5cff 0%, #6a2bd9 100%);

  /* Text */
  --text: #f5f1ff;
  --text-soft: #c7bfd8;
  --text-dim: #8e85a3;

  /* Effects */
  --glow-gold: 0 0 40px rgba(230, 193, 103, 0.35);
  --glow-purple: 0 0 50px rgba(124, 63, 228, 0.45);
  --shadow-lg: 0 30px 70px -20px rgba(0, 0, 0, 0.7);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-body: "Noto Sans Devanagari", "Poppins", system-ui, -apple-system, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

/* Reduce custom cursor reliance on touch / coarse pointers */
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: none; border: none; background: none; color: inherit; }

::selection { background: var(--gold); color: #1a1206; }

/* ===== Layout helpers ===== */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(18px, 4vw, 40px); }

.section { padding: clamp(70px, 9vw, 130px) 0; position: relative; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px, 6vw, 70px); }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding: 7px 18px;
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  background: rgba(230, 193, 103, 0.06);
  margin-bottom: 22px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.section-lead { color: var(--text-soft); margin-top: 18px; font-size: 1.02rem; }

.grad-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ===== Glassmorphism utilities ===== */
.glass {
  background: linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.glass-soft {
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

/* ===== Buttons ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 100px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  white-space: nowrap;
  overflow: hidden;
}
.btn i { font-size: 1em; }
.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-gold {
  background: var(--gold-grad);
  color: #2a1d05;
  box-shadow: 0 10px 30px -8px rgba(230, 193, 103, 0.5);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 45px -8px rgba(230, 193, 103, 0.65); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-gold);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: var(--glow-gold); color: var(--gold-soft); }

/* Sheen sweep on buttons */
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.btn:hover::after { transform: translateX(120%); }

/* ===== Custom Cursor ===== */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}
.cursor-dot { width: 7px; height: 7px; background: var(--gold); }
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(230, 193, 103, 0.7);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s, background 0.25s;
}
.cursor-ring.active { width: 60px; height: 60px; background: rgba(230,193,103,0.12); border-color: var(--gold); }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ===== Page Loader ===== */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 26px;
  background: radial-gradient(circle at 50% 40%, #150d28, #060409 70%);
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-orbit {
  width: 80px; height: 80px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.8rem; color: var(--gold);
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--purple-2);
  animation: spin 1s linear infinite;
}
.loader-orbit i { animation: spin 1s linear infinite reverse; }
.loader-text { color: var(--text-dim); letter-spacing: 0.25em; text-transform: uppercase; font-size: 0.72rem; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Scroll progress bar ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--gold-grad);
  z-index: 9998;
  box-shadow: 0 0 12px rgba(230,193,103,0.7);
}

/* ============================================================
   COSMIC BACKGROUND — aurora, stars, galaxy, particles
   ============================================================ */
.cosmos { position: fixed; inset: 0; z-index: -2; overflow: hidden; background:
    radial-gradient(1200px 800px at 80% -10%, rgba(124,63,228,0.22), transparent 60%),
    radial-gradient(900px 700px at 10% 10%, rgba(230,193,103,0.10), transparent 55%),
    linear-gradient(180deg, #0a0612 0%, #0d0820 45%, #070410 100%);
}
/* Aurora drifting glow */
.aurora {
  position: absolute; inset: -30%;
  background:
    radial-gradient(40% 30% at 30% 30%, rgba(157,92,255,0.35), transparent 60%),
    radial-gradient(35% 25% at 70% 60%, rgba(230,193,103,0.18), transparent 60%),
    radial-gradient(30% 30% at 50% 80%, rgba(124,63,228,0.25), transparent 60%);
  filter: blur(40px);
  animation: auroraMove 22s ease-in-out infinite alternate;
}
@keyframes auroraMove {
  0% { transform: translate3d(-4%, -2%, 0) rotate(0deg) scale(1); }
  100% { transform: translate3d(4%, 3%, 0) rotate(8deg) scale(1.1); }
}
/* Twinkling stars (generated in JS) */
.stars, .shooting-stars, .particles { position: absolute; inset: 0; }
.star {
  position: absolute; border-radius: 50%;
  background: #fff;
  animation: twinkle var(--dur, 3s) ease-in-out infinite alternate;
  will-change: opacity, transform;
}
@keyframes twinkle { from { opacity: 0.15; transform: scale(0.6); } to { opacity: 1; transform: scale(1); } }

.shooting-star {
  position: absolute;
  width: 120px; height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.9), transparent);
  border-radius: 2px;
  filter: drop-shadow(0 0 6px #fff);
  transform: rotate(-30deg);
  animation: shoot linear forwards;
}
@keyframes shoot {
  0% { opacity: 0; transform: translate(0,0) rotate(-30deg); }
  10% { opacity: 1; }
  100% { opacity: 0; transform: translate(-520px, 300px) rotate(-30deg); }
}
/* Floating golden particles */
.particle {
  position: absolute; bottom: -10px;
  width: 5px; height: 5px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-soft), rgba(230,193,103,0));
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  to { transform: translateY(-110vh) translateX(var(--drift, 30px)); opacity: 0; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, box-shadow 0.4s, padding 0.4s;
  padding: 8px 0;
}
.navbar.scrolled {
  background: rgba(10, 6, 18, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 40px -18px rgba(0,0,0,0.8);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 12px;
  background: var(--gold-grad); color: #251a05;
  font-size: 1.1rem;
  box-shadow: var(--glow-gold);
}
.brand-name { font-size: 1.12rem; letter-spacing: 0.02em; font-weight: 600; }
.brand-accent { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.92rem; font-weight: 400; color: var(--text-soft);
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--gold-grad); transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { padding: 11px 24px; }

.lang-toggle {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-soft);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.04em;
  transition: border-color 0.3s, background 0.3s, color 0.3s, box-shadow 0.3s;
  cursor: pointer;
  flex-shrink: 0;
}
.lang-toggle:hover {
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
  box-shadow: 0 0 20px -6px rgba(212, 175, 55, 0.35);
}
.lang-toggle i { font-size: 0.95rem; opacity: 0.85; }
.lang-current { min-width: 1.4em; text-align: center; line-height: 1; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.35s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; max-width: 920px; margin-inline: auto; }

/* Moon */
.hero-moon {
  position: absolute; top: 12%; right: 8%;
  width: clamp(120px, 18vw, 230px); height: clamp(120px, 18vw, 230px);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fefcf5, #e8e2cf 45%, #c9c2a8 70%, #aaa389);
  box-shadow: 0 0 70px 12px rgba(246, 231, 173, 0.45), inset -20px -16px 40px rgba(0,0,0,0.25);
  z-index: 1;
  animation: floatMoon 9s ease-in-out infinite alternate;
}
.hero-moon::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 60% 65%, rgba(0,0,0,0.10) 6%, transparent 7%),
              radial-gradient(circle at 40% 55%, rgba(0,0,0,0.08) 5%, transparent 6%),
              radial-gradient(circle at 55% 40%, rgba(0,0,0,0.06) 4%, transparent 5%);
}
@keyframes floatMoon { to { transform: translateY(-22px); } }

.hero-glow {
  position: absolute; bottom: -40%; left: 50%; transform: translateX(-50%);
  width: 120%; height: 90%;
  background: radial-gradient(ellipse at center, rgba(230,193,103,0.18), transparent 60%);
  z-index: 0;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--gold-soft); font-size: 0.82rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 500;
  padding: 9px 20px; border-radius: 100px;
  border: 1px solid var(--border-gold);
  background: rgba(230,193,103,0.05);
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.hero-title .grad-text { display: block; margin-top: 6px; }

.hero-sub {
  margin-top: 26px; font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-weight: 400; color: var(--text);
  line-height: 1.55;
}
.hero-sub .grad-text { display: inline; }

.hero-features {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px;
  margin-top: 28px; max-width: 640px; margin-inline: auto;
}
.hero-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.98rem; color: var(--text-soft); font-weight: 500;
}
.hero-features i { color: var(--gold); font-size: 0.9rem; }

.hero-desc { margin: 18px auto 0; max-width: 620px; color: var(--text-soft); font-size: 1rem; }

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }

.hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(24px, 5vw, 64px);
  margin-top: 60px;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: var(--text); line-height: 1; }
.stat-plus { display: inline; color: var(--gold); font-size: 1.4rem; font-weight: 700; margin-top: -10px; }
.stat-label { margin-top: 10px; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); }
.stat:not(:last-child) { position: relative; }

/* Scroll hint */
.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; }
.mouse { display: block; width: 24px; height: 40px; border: 2px solid var(--border-gold); border-radius: 14px; position: relative; }
.wheel { position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; border-radius: 4px; background: var(--gold); animation: wheel 1.6s ease-in-out infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 14px); } }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about-visual { position: relative; }
.about-card { padding: 30px; position: relative; aspect-ratio: 4/5; max-width: 420px; }
.about-portrait {
  width: 100%; height: 100%; border-radius: 16px;
  display: grid; place-items: center; font-size: 6rem; color: var(--gold);
  background:
    radial-gradient(circle at 50% 35%, rgba(230,193,103,0.18), transparent 60%),
    linear-gradient(160deg, rgba(157,92,255,0.18), rgba(0,0,0,0.2));
  border: 1px solid var(--border-gold);
}
.about-badge {
  position: absolute; display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; right: -18px; top: 26px;
}
.about-badge i { color: var(--gold); font-size: 1.3rem; }
.about-badge strong { display: block; font-size: 0.95rem; }
.about-badge span { font-size: 0.74rem; color: var(--text-dim); }
.about-badge-2 { top: auto; bottom: 30px; right: auto; left: -18px; }

.about-content p { color: var(--text-soft); margin-top: 18px; }
.about-content strong { color: var(--text); font-weight: 600; }
.about-points { margin-top: 26px; display: grid; gap: 12px; }
.about-points li { display: flex; align-items: center; gap: 12px; color: var(--text-soft); }
.about-points i { color: var(--gold); }
.about-content .btn { margin-top: 32px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.service-card {
  padding: 30px 26px;
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s, background 0.45s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(230,193,103,0.16), transparent 45%);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { transform: translateY(-8px); border-color: var(--border-gold); box-shadow: var(--shadow-lg), var(--glow-gold); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center; font-size: 1.5rem; color: var(--gold);
  background: linear-gradient(160deg, rgba(230,193,103,0.16), rgba(157,92,255,0.10));
  border: 1px solid var(--border-gold);
  margin-bottom: 20px;
  transition: transform 0.45s var(--ease);
}
.service-card:hover .service-icon { transform: rotate(-8deg) scale(1.08); }
.service-card h3 { font-size: 1.12rem; font-weight: 600; margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; color: var(--text-soft); position: relative; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.price-card {
  padding: 36px 28px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}
.price-card::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(230,193,103,0.14), transparent 45%);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.price-card:hover::after { opacity: 1; }
.price-card::before {
  content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(230,193,103,0.12), transparent 30%);
  opacity: 0; transition: opacity 0.5s; animation: rotateGlow 6s linear infinite; pointer-events: none;
}
@keyframes rotateGlow { to { transform: rotate(360deg); } }
.price-card:hover { transform: translateY(-10px); border-color: var(--border-gold); box-shadow: var(--shadow-lg), 0 0 50px -8px rgba(230,193,103,0.4); }
.price-card:hover::before { opacity: 1; }

.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(165deg, rgba(230,193,103,0.12), rgba(124,63,228,0.10));
  box-shadow: 0 0 60px -10px rgba(230,193,103,0.45);
}
.price-flag {
  position: absolute; top: 18px; right: -38px;
  transform: rotate(45deg);
  background: var(--gold-grad); color: #2a1d05;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 44px;
}
.price-icon {
  width: 62px; height: 62px; border-radius: 18px;
  display: grid; place-items: center; font-size: 1.6rem; color: var(--gold);
  background: linear-gradient(160deg, rgba(230,193,103,0.18), rgba(157,92,255,0.10));
  border: 1px solid var(--border-gold);
  margin-bottom: 20px;
}
.price-name { font-size: 1.18rem; font-weight: 600; line-height: 1.3; margin-bottom: 14px; min-height: 2.6em; }
.price-name small { display: block; font-size: 0.78rem; color: var(--text-dim); font-weight: 400; margin-top: 2px; }
.price-amount {
  font-family: var(--font-display); font-weight: 700;
  font-size: 2.8rem; line-height: 1; margin-bottom: 22px;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.price-amount .rupee { font-size: 1.6rem; vertical-align: super; }
.price-features { display: grid; gap: 12px; margin-bottom: 26px; flex: 1; }
.price-features li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.92rem; color: var(--text-soft); }
.price-features i { color: var(--gold); margin-top: 5px; font-size: 0.78rem; }
.price-btn { width: 100%; justify-content: center; margin-top: auto; }

/* Premium packages — notice, meta, global banner */
.premium-packages { position: relative; }
.premium-packages::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(124,63,228,0.12), transparent 70%);
  pointer-events: none;
}
.price-notice {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 16px; margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(230,193,103,0.10);
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 24px -6px rgba(230,193,103,0.35);
}
.price-notice i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.price-notice p { font-size: 0.88rem; color: var(--gold-soft); line-height: 1.5; font-weight: 500; }
.price-meta {
  display: grid; gap: 8px; margin-bottom: 18px; padding-top: 4px;
}
.price-meta p {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.86rem; color: var(--text-dim);
}
.price-meta i { color: var(--gold); width: 18px; text-align: center; }
.price-amount-sm { font-size: 2.2rem; }
.price-unit {
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  -webkit-text-fill-color: var(--text-soft); color: var(--text-soft);
}
.global-notice {
  margin-top: 40px; padding: 28px 32px;
  display: grid; gap: 18px;
  border-color: var(--border-gold);
  box-shadow: var(--glow-gold);
}
.notice-item { display: flex; align-items: center; gap: 16px; }
.notice-icon { font-size: 1.6rem; flex-shrink: 0; }
.notice-item p { font-size: 1rem; color: var(--text-soft); font-weight: 500; }
@media (min-width: 640px) {
  .global-notice { grid-template-columns: 1fr 1fr; gap: 24px; }
}

.form-error {
  color: #ff8a8a; font-size: 0.88rem; margin-bottom: 16px;
  padding: 10px 14px; border-radius: 10px;
  background: rgba(255,100,100,0.08); border: 1px solid rgba(255,120,120,0.25);
}
.form-error[hidden] { display: none; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.why-card {
  padding: 32px 28px; transition: transform 0.45s var(--ease), box-shadow 0.45s, border-color 0.45s;
}
.why-card:hover { transform: translateY(-6px); border-color: var(--border-gold); box-shadow: var(--glow-gold); }
.why-card i {
  font-size: 1.7rem; color: var(--gold); margin-bottom: 16px;
  display: inline-grid; place-items: center; width: 56px; height: 56px;
  border-radius: 14px; background: rgba(230,193,103,0.08); border: 1px solid var(--border-gold);
}
.why-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.why-card p { color: var(--text-soft); font-size: 0.92rem; }

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; }
.timeline::before {
  content: ""; position: absolute; top: 32px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-2), var(--purple-2), transparent);
  opacity: 0.5;
}
.timeline-step { text-align: center; position: relative; }
.step-dot {
  width: 66px; height: 66px; margin: 0 auto 18px;
  border-radius: 50%; display: grid; place-items: center; font-size: 1.4rem; color: var(--gold);
  background: var(--bg-2); border: 2px solid var(--border-gold);
  box-shadow: var(--glow-gold); position: relative; z-index: 1;
  transition: transform 0.4s var(--ease), background 0.4s;
}
.timeline-step:hover .step-dot { transform: translateY(-6px) scale(1.06); background: rgba(230,193,103,0.1); }
.step-no { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); font-weight: 700; margin-bottom: 4px; }
.timeline-step h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: 6px; }
.timeline-step p { font-size: 0.85rem; color: var(--text-soft); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.testimonial-card { padding: 30px; display: flex; flex-direction: column; gap: 16px; transition: transform 0.45s var(--ease), box-shadow 0.45s, border-color 0.45s; }
.testimonial-card:hover { transform: translateY(-6px); border-color: var(--border-gold); box-shadow: var(--shadow-lg); }
.stars-row { color: var(--gold); display: flex; gap: 3px; font-size: 0.85rem; }
.testimonial-card blockquote { font-size: 0.98rem; color: var(--text); line-height: 1.7; font-style: italic; }
.testimonial-card figcaption { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.t-avatar {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 700; font-size: 0.9rem; color: #2a1d05;
  background: var(--gold-grad); flex-shrink: 0;
}
.testimonial-card figcaption strong { display: block; font-size: 0.95rem; font-weight: 600; }
.testimonial-card figcaption span { font-size: 0.8rem; color: var(--text-dim); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-wrap { max-width: 860px; }
.accordion { display: grid; gap: 14px; }
.acc-item { overflow: hidden; transition: border-color 0.4s, box-shadow 0.4s; }
.acc-item.open { border-color: var(--border-gold); box-shadow: var(--glow-gold); }
.acc-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px; text-align: left; font-weight: 500; font-size: 1.02rem; color: var(--text);
}
.acc-head i { color: var(--gold); transition: transform 0.4s var(--ease); flex-shrink: 0; }
.acc-item.open .acc-head i { transform: rotate(135deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.acc-body p { padding: 0 26px 24px; color: var(--text-soft); font-size: 0.95rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 34px; align-items: start; }
.contact-info { display: grid; gap: 16px; }
.contact-card { display: flex; align-items: center; gap: 18px; padding: 20px 24px; transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s; }
.contact-card:hover { transform: translateX(6px); border-color: var(--border-gold); box-shadow: var(--glow-gold); }
.contact-card i { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; font-size: 1.2rem; color: var(--gold); background: rgba(230,193,103,0.08); border: 1px solid var(--border-gold); flex-shrink: 0; }
.contact-card strong { display: block; font-size: 0.95rem; font-weight: 600; }
.contact-card span { font-size: 0.88rem; color: var(--text-dim); }

.contact-form { padding: 34px; }
.contact-form h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; margin-bottom: 24px; }
.field { position: relative; margin-bottom: 20px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 16px 16px 14px; font-family: inherit; font-size: 0.95rem;
  color: var(--text); background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); border-radius: 12px; outline: none;
  transition: border-color 0.3s, box-shadow 0.3s; cursor: none; resize: vertical;
}
.field select { appearance: none; cursor: none; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(230,193,103,0.15); }
.field label {
  position: absolute; left: 16px; top: 16px; color: var(--text-dim); font-size: 0.95rem;
  pointer-events: none; transition: 0.25s var(--ease); background: var(--bg-2); padding: 0 6px;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field select:focus + label, .field select:valid + label {
  top: -9px; font-size: 0.74rem; color: var(--gold);
}
.field .select-label { top: -9px; font-size: 0.74rem; color: var(--gold); }
.form-note { text-align: center; font-size: 0.82rem; color: var(--text-dim); margin-top: 14px; }

/* Invalid-submit shake feedback */
.contact-form.shake { animation: shake 0.45s var(--ease); }
@keyframes shake { 10%, 90% { transform: translateX(-2px); } 20%, 80% { transform: translateX(4px); } 30%, 50%, 70% { transform: translateX(-7px); } 40%, 60% { transform: translateX(7px); } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; padding-top: 70px; border-top: 1px solid var(--border); background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4)); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-brand p { color: var(--text-soft); font-size: 0.92rem; margin: 18px 0 22px; max-width: 320px; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px;
  color: var(--text-soft); background: var(--surface); border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), color 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.socials a:hover { transform: translateY(-4px); color: var(--gold); border-color: var(--border-gold); box-shadow: var(--glow-gold); }
.footer-col h4 { font-size: 1rem; font-weight: 600; margin-bottom: 18px; color: var(--text); }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col span { color: var(--text-soft); font-size: 0.9rem; transition: color 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.footer-col a:hover { color: var(--gold); }
.footer-col i { color: var(--gold); width: 16px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 24px 0; border-top: 1px solid var(--border); color: var(--text-dim); font-size: 0.84rem; }
.footer-disclaimer { max-width: 480px; text-align: right; }

/* ============================================================
   FLOATING WHATSAPP + BACK TO TOP
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.7rem; color: #fff;
  background: linear-gradient(135deg, #25d366, #128c4b);
  box-shadow: 0 12px 30px -6px rgba(37,211,102,0.6);
  transition: transform 0.4s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.1) rotate(6deg); }
.wa-pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: waPulse 2s ease-out infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.8); opacity: 0; } }

.to-top {
  position: fixed; bottom: 26px; left: 26px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; color: var(--gold);
  background: var(--surface-2); border: 1px solid var(--border-gold);
  backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: opacity 0.4s, visibility 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { box-shadow: var(--glow-gold); transform: translateY(-4px); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(38px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); will-change: opacity, transform; }
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* Staggered children within grids */
.services-grid [data-reveal].in,
.pricing-grid [data-reveal].in,
.why-grid [data-reveal].in,
.testimonial-grid [data-reveal].in { transition-delay: var(--d, 0s); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE — Tablet & Mobile
   ============================================================ */
@media (max-width: 980px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 420px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .timeline::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; gap: 8px;
    padding: 100px 32px 40px;
    background: rgba(10,6,18,0.96); backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    transform: translateX(100%); transition: transform 0.45s var(--ease);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.05rem; padding: 8px 0; width: 100%; }
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-cta { display: none; }
  .lang-toggle { padding: 8px 12px; font-size: 0.78rem; }
  .hero-moon { top: 8%; right: 4%; opacity: 0.85; }
  .footer-disclaimer { text-align: left; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .timeline { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px 36px; }
  .price-card, .contact-form { padding: 28px 22px; }
  .btn-lg { width: 100%; justify-content: center; }
  .hero-cta { width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
