/* ═══════════════════════════════════════════════════
   GIGUNA PORTFOLIO v2 — Premium Purple & Gold
   Glassmorphism UI • Deep luxury aesthetic
═══════════════════════════════════════════════════ */

:root {
  /* Core palette */
  --bg:         #0a070f;
  --bg-2:       #0f0b18;
  --bg-3:       #140f20;

  --purple:     #6b3fa0;
  --purple-2:   #8b5cc7;
  --purple-3:   #b08adc;
  --purple-glow: rgba(107,63,160,0.5);

  --gold:       #d4a843;
  --gold-2:     #ecc76a;
  --gold-3:     #f5dfa0;
  --gold-glow:  rgba(212,168,67,0.4);

  --rose:       #c4607a;

  --text:       #f0ecf8;
  --text-2:     #d0ced7;
  --text-3:     #c4bdd8;

  /* Glass */
  --glass-bg:    rgba(255,255,255,0.035);
  --glass-bg-2:  rgba(255,255,255,0.065);
  --glass-border: rgba(255,255,255,0.09);
  --glass-border-gold: rgba(212,168,67,0.25);

  --ff-d: 'Playfair Display', serif;
  --ff-b: 'Outfit', sans-serif;

  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-b);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}
body.no-scroll { overflow: hidden; }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── GLASS UTILITY ── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}
.glass-pill {
  background: var(--glass-bg-2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
}

/* ═══════════════════════════════════════
   LOADER
═══════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.loader-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: loaderFloat 6s ease-in-out infinite alternate;
}
.loader-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--purple), transparent 70%);
  top: -150px; left: -100px;
}
.loader-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  bottom: -100px; right: -80px;
  animation-delay: -3s;
}
@keyframes loaderFloat {
  from { transform: translate(0,0); }
  to   { transform: translate(40px, 30px); }
}

.loader-content {
  position: relative;
  text-align: center;
  z-index: 2;
}
.loader-logo {
  font-family: var(--ff-d);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  overflow: hidden;
  animation: logoReveal 0.9s var(--ease) 0.1s both;
}
@keyframes logoReveal {
  from { opacity: 0; transform: translateY(60px); filter: blur(10px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
.loader-g    { color: var(--gold); font-style: italic; }
.loader-rest { color: var(--text); }
.loader-dot  { color: var(--purple-3); }

.loader-tagline {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
}
.ltw {
  opacity: 0;
  animation: wordFadeIn 0.5s var(--ease) var(--d) both;
}
.ltw-gold { color: var(--gold); }
@keyframes wordFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.loader-progress {
  margin-top: 48px;
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--purple-2), var(--gold));
  border-radius: 2px;
  transition: width 0.05s linear;
}

/* ═══════════════════════════════════════
   CURSOR
═══════════════════════════════════════ */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.08s, background 0.2s;
  mix-blend-mode: screen;
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(212,168,67,0.6);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%,-50%);
  transition: all 0.4s var(--ease);
}
.cursor.hover   { transform: translate(-50%,-50%) scale(3); background: var(--purple-2); }
.cursor-ring.hover { transform: translate(-50%,-50%) scale(0.5); opacity: 0.3; }

@media (pointer: coarse) {
  .cursor, .cursor-ring { display: none; }
  body, a, button { cursor: auto; }
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 22px 0;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  padding: 14px 0;
  background: rgba(10,7,15,0.92);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-inner {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: var(--ff-d);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.logo-g   { color: var(--gold); font-style: italic; }
.logo-dot { color: var(--purple-3); }

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.25s;
  cursor: none;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 16px; }

/* Lang */
.lang-switcher {
  display: flex;
  gap: 4px;
  padding: 5px 6px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  backdrop-filter: blur(0px);
}
.lang-btn {
  display: flex; align-items: center; gap: 5px;
  background: none; border: none; cursor: none;
  padding: 4px 10px;
  border-radius: 30px;
  font-family: var(--ff-b);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--text-2);
  transition: all 0.25s var(--ease);
}
.lang-btn img {
  width: 16px; height: 11px;
  object-fit: cover; border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.1);
}
.lang-btn.active, .lang-btn:hover {
  background: linear-gradient(135deg, var(--purple), var(--gold));
  color: #fff;
}

/* Socials */
.nav-socials { display: flex; gap: 8px; }
.nav-social {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(10,7,15,0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.25s var(--ease);
}
.nav-social img {
  width: 17px; height: 17px;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.25s;
}
.nav-social:hover {
  border-color: var(--gold);
  background: rgba(212,168,67,0.12);
}
.nav-social:hover img { opacity: 1; }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--ff-b);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: none;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--bg);
  font-weight: 600;
  box-shadow: 0 8px 32px var(--gold-glow);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px var(--gold-glow);
}
.btn-gold svg { transition: transform 0.3s var(--ease-spring); }
.btn-gold:hover svg { transform: translateX(4px); }

.btn-glass {
  background: var(--glass-bg-2);
  border: 1px solid var(--glass-border);
  color: var(--text);
  backdrop-filter: blur(16px);
}
.btn-glass:hover {
  border-color: var(--glass-border-gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

/* BG layers */
.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-photo {
  position: absolute; inset: 0;
  background: url('assets/hero.jpg') center center / cover no-repeat;
  z-index: 0;
}
.hero-photo-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10,7,15,0.55) 0%,
      rgba(10,7,15,0.35) 40%,
      rgba(10,7,15,0.70) 100%),
    linear-gradient(to right,
      rgba(107,63,160,0.25) 0%,
      transparent 60%);
  z-index: 1;
}

.mesh {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(10,7,15,0.8) 0%, transparent 70%);
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.18;
  animation: orbFloat 15s ease-in-out infinite alternate;
  z-index: 2;
}
.o1 { width: 600px; height: 600px; background: radial-gradient(circle, var(--purple) 0%, transparent 70%); top: -200px; left: -150px; }
.o2 { width: 400px; height: 400px; background: radial-gradient(circle, var(--gold) 0%, transparent 70%); bottom: -100px; right: -80px; animation-delay: -5s; }
.o3 { width: 300px; height: 300px; background: radial-gradient(circle, var(--rose) 0%, transparent 70%); top: 40%; right: 10%; animation-delay: -10s; }

.grid-lines {
  position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

@keyframes orbFloat {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(50px, 40px) scale(1.15); }
}

.hero-inner {
  position: relative; z-index: 10;
  width: 90%; max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 20px;
  font-size: 0.78rem; font-weight: 500;
  color: var(--text);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.1s both;
  align-self: center;
  background: rgba(10,7,15,0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.badge-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 var(--gold-glow);
  animation: pulse 2s infinite;
}
.badge-icon {
  color: var(--gold);
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(212,168,67,0.6));
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 var(--gold-glow); }
  70%  { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.hero-title {
  font-family: var(--ff-d);
  font-size: clamp(3.6rem, 9vw, 8.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  text-align: center;
  padding-top: 0.1em;
}
.ht-row {
  display: block;
  overflow: visible;
  padding: 0.04em 0.05em;
}
.ht-row em, .ht-row span {
  display: inline-block;
  opacity: 0;
  animation: slideUp 0.8s var(--ease) both;
}
.ht-row:nth-child(1) span { animation-delay: 0.2s; }
.ht-row-3 .ht-dim         { animation-delay: 0.45s; color: var(--text-2); font-style: italic; font-weight: 400; }
.ht-row-3 .ht-you         { animation-delay: 0.6s; }

.ht-accent {
  background: linear-gradient(120deg, var(--text) 0%, var(--purple-3) 35%, var(--gold) 70%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.ht-you {
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-2);
  font-weight: 300;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.7s both;
  text-align: center;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.85s both;
}
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1s both;
}
.stat {
  padding: 18px 28px;
  border-radius: 16px;
  text-align: center;
  min-width: 120px;
  background: rgba(10,7,15,0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.stat:hover {
  border-color: var(--glass-border-gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(212,168,67,0.2);
}
.stat-n {
  display: block;
  font-family: var(--ff-d);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-l {
  display: block;
  font-size: 0.72rem;
  color: var(--text-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 5px;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 0; right: 0;
  margin: 0 auto;
  width: fit-content;
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-2);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 1.4s both;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel-inner {
  width: 3px; height: 8px;
  background: var(--gold);
  border-radius: 3px;
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ═══════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════ */
section { padding: 110px 0; }
.container { width: 90%; max-width: 1260px; margin: 0 auto; }

.sec-head { margin-bottom: 60px; }
.sec-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.sec-tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}
.sec-title {
  font-family: var(--ff-d);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
}
.sec-title em { color: var(--gold); font-style: italic; }
.sec-desc {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 500px;
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services { background: var(--bg-2); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.svc-card {
  padding: 40px 36px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}
.svc-card:hover {
  transform: translateY(-10px);
  border-color: var(--glass-border-gold);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}

.svc-glow {
  position: absolute;
  top: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.svc-card:hover .svc-glow { opacity: 0.4; }
.svc-glow-purple { background: var(--purple); }
.svc-glow-gold   { background: var(--gold); }
.svc-glow-rose   { background: var(--rose); }

.svc-num {
  position: absolute;
  top: 22px; right: 28px;
  font-family: var(--ff-d);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}
.svc-card:hover .svc-num { color: rgba(255,255,255,0.06); }

.svc-icon {
  width: 54px; height: 54px;
  color: var(--gold);
  margin-bottom: 24px;
}
.svc-icon svg { width: 100%; height: 100%; }

.svc-card h3 {
  font-family: var(--ff-d);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.svc-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 26px;
}
.svc-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.svc-tags span {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--purple-3);
  background: rgba(107,63,160,0.15);
  border: 1px solid rgba(139,92,199,0.25);
  border-radius: 30px;
  padding: 5px 13px;
  transition: all 0.25s;
}
.svc-card:hover .svc-tags span {
  color: var(--gold);
  background: rgba(212,168,67,0.1);
  border-color: rgba(212,168,67,0.25);
}

/* ═══════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════ */
.portfolio { background: var(--bg); }

.pf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pf-item { position: relative; }
.pf-wide { grid-column: 1 / -1; }

.pf-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 16/10;
  background: var(--bg-3);
  border: 1px solid var(--glass-border);
  transition: border-color 0.3s;
}
.pf-wide .pf-img { aspect-ratio: 21/9; }
.pf-item:hover .pf-img { border-color: var(--glass-border-gold); }

.pf-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.pf-item:hover .pf-img img { transform: scale(1.06); }

.pf-hover {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-d);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  background: rgba(10,7,15,0.6);
  backdrop-filter: blur(8px);
  border-color: var(--glass-border-gold);
}
.pf-item:hover .pf-hover { opacity: 1; }

.pf-meta {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 4px 0;
}
.pf-n {
  font-family: var(--ff-d);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--gold);
}
.pf-meta h4 {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-3);
}
.pf-meta small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-2);
  margin-top: 2px;
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact { background: var(--bg-2); }

.contact-card {
  padding: 60px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  border-color: var(--glass-border-gold);
}
.contact-glow {
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple), transparent 70%);
  filter: blur(100px);
  opacity: 0.2;
  pointer-events: none;
}
.contact-left { flex: 1; min-width: 260px; }
.contact-left .sec-title { margin-top: 12px; margin-bottom: 16px; }
.contact-left p { font-size: 0.95rem; color: var(--text-2); line-height: 1.8; max-width: 420px; }
.contact-tagline {
  margin-top: 20px;
  font-family: var(--ff-d);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--purple-3);
}

.contact-right {
  display: flex; flex-direction: column; gap: 14px;
  flex-shrink: 0; min-width: 240px;
}

.cta-link {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 24px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  transition: all 0.35s var(--ease);
  cursor: none;
}
.cta-link:hover {
  border-color: var(--glass-border-gold);
  background: rgba(212,168,67,0.07);
  transform: translateX(6px);
}
.cta-wa:hover {
  border-color: rgba(37,211,102,0.4);
  background: rgba(37,211,102,0.07);
}

.cta-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--glass-bg-2);
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta-icon img {
  width: 22px; height: 22px;
  object-fit: contain;
  opacity: 0.85;
}
.cta-text { flex: 1; }
.cta-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}
.cta-text span {
  font-size: 0.78rem;
  color: var(--text-2);
}
.cta-arr { color: var(--text-2); flex-shrink: 0; transition: transform 0.3s var(--ease-spring), color 0.2s; }
.cta-link:hover .cta-arr { transform: translateX(4px); color: var(--gold); }
.cta-wa:hover .cta-arr { color: #25d366; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--glass-border);
  padding: 32px 0;
}
.footer-row {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-sub {
  font-size: 0.75rem;
  color: var(--text-2);
  margin-top: 4px;
  font-style: italic;
  font-family: var(--ff-d);
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-2);
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  transition: border-color 0.25s;
}
.footer-socials a img {
  width: 15px; height: 15px;
  object-fit: contain;
  opacity: 0.55;
}
.footer-socials a:hover { border-color: var(--glass-border-gold); }

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.svc-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.svc-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.pf-item.reveal:nth-child(2)  { transition-delay: 0.1s; }
.pf-item.reveal:nth-child(3)  { transition-delay: 0.2s; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
/* ═══════════════════════════════════════
   BURGER & MOBILE MENU
═══════════════════════════════════════ */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(10,7,15,0.45);
  backdrop-filter: blur(12px);
  cursor: none;
  padding: 0;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 400;
  background: rgba(10,7,15,0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  text-align: center;
}
.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-link {
  font-family: var(--ff-d);
  font-size: clamp(2.2rem, 8vw, 3rem);
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: -0.02em;
  transition: color 0.25s, transform 0.25s var(--ease);
  display: block;
  padding: 6px 20px;
  opacity: 0;
  transform: translateY(30px);
}
.mobile-menu.open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open .mobile-link:nth-child(1) { transition: color 0.25s, opacity 0.4s 0.1s var(--ease), transform 0.4s 0.1s var(--ease); }
.mobile-menu.open .mobile-link:nth-child(2) { transition: color 0.25s, opacity 0.4s 0.18s var(--ease), transform 0.4s 0.18s var(--ease); }
.mobile-menu.open .mobile-link:nth-child(3) { transition: color 0.25s, opacity 0.4s 0.26s var(--ease), transform 0.4s 0.26s var(--ease); }
.mobile-menu.open .mobile-link:nth-child(4) { transition: color 0.25s, opacity 0.4s 0.34s var(--ease), transform 0.4s 0.34s var(--ease); }
.mobile-link:hover { color: var(--gold); transform: translateX(6px); }

.mobile-lang {
  display: flex;
  gap: 8px;
  padding: 6px 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
}
.mobile-socials {
  display: flex;
  gap: 20px;
}
.mobile-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  transition: all 0.25s var(--ease);
}
.mobile-socials a img {
  width: 26px; height: 26px;
  object-fit: contain;
}
.mobile-socials a:hover { border-color: var(--gold); background: rgba(212,168,67,0.1); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-socials { display: none; }
  .burger { display: flex; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET 768px
═══════════════════════════════════════ */
@media (max-width: 768px) {
  section { padding: 70px 0; }

  /* Hero */
  .hero { padding-top: 80px; align-items: center; }
  .hero-inner { width: 92%; padding: 0 0 60px; }
  .hero-title { font-size: clamp(2.8rem, 13vw, 5rem); line-height: 1.08; }
  .hero-badge { font-size: 0.72rem; padding: 7px 14px; }
  .hero-desc { font-size: 0.9rem; padding: 0 8px; }
  .hero-cta { flex-direction: column; align-items: center; gap: 12px; }
  .hero-cta .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-stats { gap: 10px; justify-content: center; }
  .stat { flex: 1; min-width: 0; padding: 14px 10px; }
  .stat-n { font-size: 1.6rem; }

  /* Services */
  .svc-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc-card { padding: 28px 24px; }

  /* Portfolio */
  .pf-grid { grid-template-columns: 1fr; gap: 16px; }
  .pf-wide { grid-column: auto; }
  .pf-wide .pf-img { aspect-ratio: 16/10; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card-wide { grid-column: auto; }
  .web-packages { grid-template-columns: 1fr; gap: 24px; }
  .pkg-divider { display: none; }
  .web-pkg + .web-pkg { border-top: 1px solid var(--glass-border); padding-top: 24px; }

  /* Contact */
  .contact-card { padding: 32px 24px; flex-direction: column; gap: 32px; }
  .contact-right { width: 100%; }
  .cta-link { padding: 14px 18px; }

  /* Footer */
  .footer-row { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .footer-socials { justify-content: center; }

  /* Lang in nav */
  .lang-btn span { display: none; }
  .lang-btn { padding: 4px 7px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE 480px
═══════════════════════════════════════ */
@media (max-width: 480px) {
  /* Hero */
  .hero-title { font-size: clamp(2.4rem, 12vw, 3.8rem); }
  .hero-badge { font-size: 0.68rem; }
  .hero-stats { gap: 8px; }
  .stat { padding: 12px 8px; }
  .stat-n { font-size: 1.4rem; }
  .stat-l { font-size: 0.62rem; }

  /* Scroll hint */
  .scroll-hint { bottom: 20px; }

  /* Nav */
  .nav { padding: 14px 0; }
  .nav-inner { width: 92%; }
  .logo { font-size: 1.35rem; }
  .lang-switcher { padding: 4px 5px; }

  /* Sections */
  section { padding: 60px 0; }
  .sec-title { font-size: 2rem; }
  .container { width: 92%; }

  /* Services */
  .svc-card { padding: 24px 20px; }
  .svc-card h3 { font-size: 1.35rem; }

  /* Pricing */
  .price-card { padding: 26px 20px; }
  .price-num { font-size: 2.8rem; }
  .price-agreement { font-size: 1.8rem; }

  /* Contact */
  .contact-card { padding: 26px 20px; }
  .cta-link { flex-wrap: nowrap; }

  /* Section header */
  .sec-head { margin-bottom: 36px; }
}

/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.pricing { background: var(--bg-3); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 22px;
  align-items: start;
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card-wide { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card-wide { grid-column: auto; }
}

/* Card */
.price-card {
  padding: 36px 32px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}
.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-gold);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.price-glow {
  position: absolute;
  top: -80px; right: -80px;
  width: 220px; height: 220px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.price-card:hover .price-glow { opacity: 0.3; }
.price-glow-purple { background: var(--purple); }
.price-glow-gold   { background: var(--gold); }
.price-glow-blue   { background: #4a7fc1; }
.price-glow-rose   { background: var(--rose); }

/* Header */
.price-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.price-icon {
  width: 48px; height: 48px;
  color: var(--gold);
  flex-shrink: 0;
}
.price-icon svg { width: 100%; height: 100%; }
.price-cat {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-3);
  margin-bottom: 3px;
}
.price-header h3 {
  font-family: var(--ff-d);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

/* Popular badge */
.price-badge-popular {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  padding: 5px 12px;
  border-radius: 30px;
}

/* Amount */
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.price-num {
  font-family: var(--ff-d);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--text) 0%, var(--gold-3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-cur {
  font-family: var(--ff-d);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
}
.price-agreement {
  font-family: var(--ff-d);
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.price-note {
  font-size: 0.78rem;
  color: var(--text-2);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

/* Features list */
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-3);
  line-height: 1.5;
}
.pf-check {
  color: var(--purple-3);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.pf-check-gold { color: var(--gold); }

/* Price btn */
.price-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ── WEBSITE PACKAGES (inside wide card) ── */
.web-packages {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin-bottom: 28px;
  align-items: start;
}
.pkg-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--glass-border), transparent);
  margin: 0 24px;
  align-self: stretch;
}
.web-pkg { padding: 4px 0; }

.web-pkg-featured {
  position: relative;
}
.pkg-featured-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.pkg-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 10px;
  flex-wrap: wrap;
}
.pkg-name {
  font-family: var(--ff-d);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}
.pkg-sub {
  font-size: 0.75rem;
  color: var(--text-2);
  margin-top: 3px;
}
.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-shrink: 0;
}
.pkg-from {
  font-size: 0.7rem;
  color: var(--text-2);
  letter-spacing: 0.06em;
  margin-right: 4px;
}
.pkg-num {
  font-family: var(--ff-d);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.pkg-num-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.4rem;
}
.pkg-cur { font-size: 1rem; color: var(--text-2); }
.pkg-cur-gold { color: var(--gold); font-size: 1.2rem; }
.pkg-to { font-size: 0.85rem; color: var(--text-2); margin-left: 2px; }

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.84rem;
  color: var(--text-3);
  line-height: 1.5;
}

/* Bottom note */
.pricing-bottom {
  margin-top: 28px;
  font-size: 0.78rem;
  color: var(--text-2);
  text-align: center;
  font-style: italic;
}