/* main.css - Golden Wave UA — Modern Neon Minimalist */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #050505;
  --surface: rgba(20, 20, 20, 0.7);
  --border: rgba(255, 255, 255, 0.1);
  --accent: #C9A84C;
  --accent-glow: rgba(201, 168, 76, 0.4);
  --text-primary: #F0F0F0;
  --text-secondary: #A0A0A0;
  --success: #4CAF50;
  --max-width: 1200px;
  --glass: blur(12px);
  --radius: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 40%);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── HEADER ─────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: var(--glass);
  border-bottom: 1px solid var(--border);
  height: 76px;
  display: flex;
  align-items: center;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 32px;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.5px;
  white-space: nowrap;
  color: var(--text-primary);
}

.logo::before {
  content: '';
  width: 9px;
  height: 9px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  flex-shrink: 0;
}

nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

nav a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--text-primary);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px;
}

.lang-btn {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  transition: all 0.2s;
  font-family: inherit;
}

.lang-btn:hover {
  color: var(--text-primary);
}

.lang-btn.active {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.3);
}

/* Burger (mobile) */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: var(--glass);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 16px 24px 24px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}

.mobile-nav a:last-child {
  border-bottom: none;
  margin-top: 8px;
  color: var(--accent);
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn-order-header {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-order-header:hover {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  height: 54px;
  padding: 0 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary:hover {
  box-shadow: 0 0 35px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  height: 54px;
  padding: 0 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: var(--glass);
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  border: 1px solid var(--border);
  font-family: inherit;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(201, 168, 76, 0.05);
  color: var(--accent);
}

.btn-sm {
  height: 40px;
  padding: 0 20px;
  font-size: 13px;
  border-radius: 8px;
}

/* ─── HERO ─────────────────────────────────────── */
.hero {
  padding: 140px 0 90px;
  text-align: center;
}

.tagline {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  background: linear-gradient(to bottom, #fff 40%, #666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtext {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
}

/* Social proof */
.social-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
  70%  { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* Hero Buttons */
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Trust items */
.trust-items {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ─── SECTIONS ─────────────────────────────────────── */
section {
  padding: 90px 0;
}

.section-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtext {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

/* ─── GRIDS ─────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

/* ─── GLASS CARDS ─────────────────────────────────── */
.card-glass {
  background: var(--surface);
  backdrop-filter: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
}

.card-glass:hover {
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  transform: translateY(-3px);
}

/* Step cards */
.step-card {
  padding: 40px 32px;
}

.step-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 18px;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* ─── EXAMPLES ─────────────────────────────────────── */
.example-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.example-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.example-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.example-occasion {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

/* ── Beautiful audio player ── */
.audio-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 14px;
  padding: 14px 20px;
}

.play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  padding-left: 3px; /* optical center for play triangle */
}

.play-btn.playing {
  padding-left: 0;
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.5);
}

.play-btn svg {
  width: 18px;
  height: 18px;
}

.player-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.audio-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.audio-track:hover {
  height: 8px;
  transition: height 0.1s;
}

.audio-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #e8c86a);
  border-radius: 6px;
  transition: width 0.25s linear;
}

.audio-time {
  font-size: 12px;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.examples-cta {
  text-align: center;
  margin-top: 48px;
}

/* ─── PRICING ─────────────────────────────────────── */
.pricing-grid {
  align-items: start;
}

.pricing-card {
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.pricing-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--bg);
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.pricing-name {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 12px;
}

.price {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.save-text {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  width: 100%;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-card.popular {
  border: 2px solid var(--accent);
  box-shadow: 0 0 40px rgba(201,168,76,0.08);
  padding: 48px 32px;
}

.pricing-footer {
  text-align: center;
  color: var(--text-secondary);
  margin-top: 36px;
  font-size: 14px;
}

/* ─── REVIEWS ─────────────────────────────────────── */
.review-card {
  padding: 28px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.avatar {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.1);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.user-info {
  flex: 1;
}

.name {
  font-weight: 600;
  font-size: 15px;
}

.city {
  font-size: 13px;
  color: var(--text-secondary);
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--accent);
}

.review-text {
  font-size: 15px;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.65;
}

/* ─── BONUSES ─────────────────────────────────────── */
.bonuses-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.bonus-card {
  padding: 44px;
}

.bonus-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.bonus-card p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.6;
}

/* ─── FAQ ─────────────────────────────────────── */
.faq-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 90px 24px;
}

.faq-heading {
  text-align: center;
  margin-bottom: 56px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: 17px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 24px 0;
  transition: color 0.2s;
  gap: 16px;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-secondary);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-bottom: 24px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ─── CTA SECTION ─────────────────────────────────── */
.cta-section {
  padding-bottom: 100px;
}

.cta-box {
  padding: 80px 60px;
  text-align: center;
  border-color: rgba(201,168,76,0.2);
}

.cta-box h2 {
  margin-bottom: 16px;
}

.cta-box p {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 36px;
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
}

.footer-inner {
  padding: 80px 24px 50px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-brand p {
  color: var(--text-secondary);
  max-width: 300px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 24px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links ul li a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links ul li a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.2s;
}

.social-link:hover {
  color: var(--accent);
}

/* ─── PROMO BANNER (BIG countdown) ──────────────────── */
.promo-banner {
  background: linear-gradient(135deg, #1a1200 0%, #2a1e00 50%, #1a1200 100%);
  border-bottom: 2px solid var(--accent);
  padding: 16px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}

.promo-fire { font-size: 22px; animation: shake 1.5s infinite; }

@keyframes shake {
  0%,100% { transform: rotate(-8deg); }
  50%      { transform: rotate(8deg); }
}

.promo-text {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
}

.promo-price-old {
  text-decoration: line-through;
  color: var(--text-secondary);
  font-size: 18px;
  font-weight: 600;
}

.promo-price-new {
  font-weight: 900;
  font-size: 28px;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(201,168,76,0.5);
}

.promo-timer-label {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.promo-timer {
  font-weight: 900;
  font-size: 28px;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 4px 16px;
  border-radius: 8px;
  min-width: 110px;
}

.promo-timer.mini {
  font-size: 18px;
  min-width: 90px;
  padding: 3px 12px;
}

/* ─── PRICING PROMO ROW ──────────────────────────────── */
.pricing-promo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  font-size: 15px;
  color: var(--text-secondary);
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 12px 20px;
  width: fit-content;
}

.pricing-old {
  text-decoration: line-through;
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 4px;
  opacity: 0.7;
}

.w-full { width: 100%; justify-content: center; }

/* Reviews CTA */
.reviews-cta {
  text-align: center;
  margin-top: 36px;
}

/* CTA btns row */
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ─── FLOATING PURCHASE NOTIFICATION ─────────────────── */
.purchase-popup {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: rgba(18, 18, 18, 0.96);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 9999;
  max-width: 300px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.1);
  transform: translateX(360px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(20px);
}

.purchase-popup.show {
  transform: translateX(0);
}

.popup-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), #8B6914);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #000;
  flex-shrink: 0;
}

.popup-body {
  flex: 1;
  min-width: 0;
}

.popup-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.popup-action {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.popup-time {
  font-size: 11px;
  color: var(--accent);
  margin-top: 4px;
  font-weight: 600;
}

.popup-icon {
  font-size: 22px;
  flex-shrink: 0;
}

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.65s ease forwards;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  h1 { font-size: 56px; }
  h2 { font-size: 36px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  nav, .header-right .btn-order-header { display: none; }
  .header-right { gap: 10px; }
  .burger { display: flex; }
  .hero { padding: 100px 0 60px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn-primary, .hero-btns .btn-secondary { width: 100%; max-width: 320px; }
  .trust-items { gap: 20px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .bonuses-section { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-box { padding: 48px 24px; }
  section { padding: 60px 0; }
}
