/* Mafate.DJ — Site styles */
:root {
  --yellow: #FCC247;
  --yellow-deep: #F5A700;
  --black: #0A0A0A;
  --ink: #1A1A1A;
  --cream: #F5F2E8;
  --cream-2: #E9E6D9;
  --grey: #8A8578;
  --grey-2: #4A4740;
  --red: #E63946;
  --green: #2DBE6C;
  --font: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-display: 'Bricolage Grotesque', 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--cream);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ────────────────────────────────────────────────────── */
/* NAV                                                    */
/* ────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(10,10,10,0.7);
  border-bottom: 1px solid rgba(252,194,71,0.15);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  max-width: 1600px; margin: 0 auto;
}
.nav-logo {
  height: 38px;
  display: block;
}
.nav-links {
  display: flex; gap: 40px;
  font-size: 15px; font-weight: 500;
  color: rgba(245,242,232,0.75);
}
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--yellow); }
.nav-right {
  display: flex; align-items: center; gap: 14px;
}
.nav-cta {
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  transition: transform .15s, box-shadow .15s;
  letter-spacing: -0.01em;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(252,194,71,0.35); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  background: rgba(245,242,232,0.06);
  border: 1px solid rgba(245,242,232,0.1);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  font-family: var(--font);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(245,242,232,0.55);
  padding: 6px 10px;
  border-radius: 999px;
  transition: color .15s, background .15s;
  line-height: 1;
}
.lang-btn:hover { color: var(--cream); }
.lang-btn.active {
  background: var(--yellow);
  color: var(--black);
}

/* Georgian font fallback — slightly taller line-height for readability */
html.lang-ka { --font: 'Noto Sans Georgian', 'Space Grotesk', system-ui, sans-serif; }
html.lang-ka body { font-family: var(--font); }
html.lang-ka .hero-title,
html.lang-ka .section-title,
html.lang-ka .price-name,
html.lang-ka h2, html.lang-ka h3 {
  font-family: 'Noto Sans Georgian', 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.01em;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-inner { padding: 16px 24px; }
  .nav-right { gap: 10px; }
  .nav-cta { display: none; }
}

/* ────────────────────────────────────────────────────── */
/* HERO                                                   */
/* ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 100px;
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg-glow {
  position: absolute;
  top: 20%; left: 50%;
  width: 900px; height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(252,194,71,0.18), transparent 60%);
  pointer-events: none;
  filter: blur(40px);
  animation: heroGlow 8s ease-in-out infinite;
}
@keyframes heroGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50%      { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(252,194,71,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252,194,71,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 8px;
  border: 1px solid rgba(252,194,71,0.35);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: rgba(245,242,232,0.9);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
}
.eyebrow-dot::after {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--black);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.hero-title {
  font-size: clamp(48px, 7.2vw, 104px);
  color: var(--cream);
}
.hero-title .accent {
  background: linear-gradient(180deg, var(--yellow), var(--yellow-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero-title .strike {
  position: relative;
  display: inline-block;
  opacity: 0.45;
  color: var(--cream);
}
.hero-title .strike::after {
  content: '';
  position: absolute;
  left: -4%; right: -4%; top: 52%;
  height: 8px;
  background: var(--red);
  transform: rotate(-3deg);
  border-radius: 4px;
}

.hero-sub {
  font-size: 20px;
  color: rgba(245,242,232,0.7);
  margin-top: 28px;
  max-width: 520px;
  line-height: 1.5;
}

.hero-ctas {
  display: flex; gap: 14px; align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  padding: 18px 28px;
  border-radius: 14px;
  font-size: 17px;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 0 0 rgba(252,194,71,0);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(252,194,71,0.45);
}
.btn-primary svg { transition: transform .15s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
  color: var(--cream);
  font-weight: 600;
  padding: 18px 24px;
  border-radius: 14px;
  font-size: 16px;
  border: 1px solid rgba(245,242,232,0.18);
  display: inline-flex; align-items: center; gap: 10px;
  transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: rgba(252,194,71,0.5); background: rgba(252,194,71,0.06); }

.hero-stats {
  display: flex; gap: 48px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(245,242,232,0.1);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 700;
  color: var(--yellow);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px; font-weight: 500;
  color: rgba(245,242,232,0.55);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* Hero visual — phone mockup */
.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 600px;
}
.phone {
  position: relative;
  width: 340px; height: 690px;
  background: #0F0F0F;
  border-radius: 46px;
  border: 2px solid #1F1F1F;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(252,194,71,0.15),
    0 0 60px rgba(252,194,71,0.12);
  padding: 14px;
  overflow: hidden;
  transform: rotate(-3deg);
  transition: transform .5s ease;
}
.phone:hover { transform: rotate(-1deg) scale(1.02); }
.phone-screen {
  width: 100%; height: 100%;
  background: var(--cream);
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
}
.phone-notch {
  position: absolute; top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 28px;
  background: var(--black);
  border-radius: 16px;
  z-index: 3;
}

/* Floating cards around phone */
.float-card {
  position: absolute;
  background: var(--ink);
  border: 1px solid rgba(252,194,71,0.25);
  border-radius: 18px;
  padding: 18px 20px;
  font-family: var(--font);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.float-card-1 {
  top: 8%; left: -6%;
  animation-delay: 0s;
}
.float-card-2 {
  bottom: 12%; right: -8%;
  animation-delay: -3s;
}
.float-card-label {
  font-size: 11px; color: var(--yellow);
  font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.float-card-value {
  font-size: 22px; font-weight: 700;
  color: var(--cream); letter-spacing: -0.02em;
  font-family: var(--font-display);
}
.float-card-sub {
  font-size: 12px; color: rgba(245,242,232,0.5);
  margin-top: 4px;
}
@media (max-width: 980px) {
  .float-card-1 { top: 2%; left: 2%; }
  .float-card-2 { bottom: 2%; right: 2%; }
}

/* ────────────────────────────────────────────────────── */
/* DEADLINE BANNER                                        */
/* ────────────────────────────────────────────────────── */
.deadline {
  background: var(--yellow);
  color: var(--black);
  padding: 18px 0;
  overflow: hidden;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
.marquee {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item { display: flex; align-items: center; gap: 48px; }
.marquee-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--black);
  flex-shrink: 0;
}
