/* ── SERVICES ───────────────────────────────────────────────── */
.services-section { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.svc-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-align: left;
}
.svc-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124,92,252,.07), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.svc-card:hover::before, .svc-card.active::before { opacity: 1; }
.svc-card:hover, .svc-card.active { border-color: rgba(124,92,252,.4); transform: translateY(-2px); }
.svc-card.active { border-color: var(--accent); background: rgba(124,92,252,.07); }
.svc-icon { font-size: 26px; margin-bottom: 12px; display: block; }
.svc-name { font-family: var(--font-display); font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.svc-count { font-size: 11px; color: var(--muted); }
.svc-from { font-size: 12px; color: var(--gold); margin-top: 8px; font-weight: 600; }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── PLAYER ─────────────────────────────────────────────────── */
.player-section { background: var(--bg2); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }

.player-main-card {
  background: var(--surface);
  border: 0.5px solid var(--border2);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 16px;
}

.player-now-playing {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
  margin-bottom: 20px;
}
.player-genre-badge {
  display: inline-block;
  background: rgba(124,92,252,.15);
  color: var(--accent2);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.player-track-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.player-track-sub { font-size: 13px; color: var(--muted); }

.player-ctrl-group { display: flex; align-items: center; gap: 12px; }
.player-btn-play {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.player-btn-play:hover { background: #6a4ce8; transform: scale(1.06); }
.player-btn-sm {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface2);
  border: 0.5px solid var(--border2);
  color: var(--muted2);
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.player-btn-sm:hover { color: var(--text); border-color: var(--accent); }

.player-progress-wrap { margin-bottom: 14px; }
.progress-track {
  width: 100%; height: 4px;
  background: var(--surface2);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  margin-bottom: 8px;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
  width: 0%;
  transition: width .1s linear;
  pointer-events: none;
}
.progress-fill::after {
  content: '';
  position: absolute;
  right: -5px; top: -4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent2);
  box-shadow: 0 0 8px rgba(192,132,252,.5);
}
.progress-times { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); }

.player-bottom { display: flex; align-items: center; gap: 14px; }
.volume-group { display: flex; align-items: center; gap: 8px; flex: 1; max-width: 140px; }
.volume-icon { font-size: 16px; color: var(--muted); }
.volume-slider {
  flex: 1; height: 3px;
  background: var(--surface2);
  border-radius: 2px;
  appearance: none;
  cursor: pointer;
  outline: none;
}
.volume-slider::-webkit-slider-thumb {
  appearance: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent2);
  cursor: pointer;
}

.genre-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.genre-btn {
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: 0.5px solid var(--border2);
  background: transparent;
  color: var(--muted2);
  transition: all var(--transition);
}
.genre-btn:hover, .genre-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }

.track-list {
  display: flex; flex-direction: column; gap: 4px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 4px;
}
.track-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition);
  border: 0.5px solid transparent;
}
.track-item:hover { background: var(--surface2); }
.track-item.active { background: rgba(124,92,252,.1); border-color: rgba(124,92,252,.3); }
.track-num { font-size: 12px; color: var(--muted); width: 20px; text-align: center; flex-shrink: 0; }
.track-info { flex: 1; min-width: 0; }
.track-name { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.track-meta { font-size: 11px; color: var(--muted); margin-top: 2px; }
.track-genre-tag {
  font-size: 10px;
  background: rgba(124,92,252,.12);
  color: var(--accent2);
  border-radius: 4px;
  padding: 2px 7px;
  flex-shrink: 0;
}
.track-duration { font-size: 12px; color: var(--muted); width: 36px; text-align: right; flex-shrink: 0; }

/* ── CALCULATOR ─────────────────────────────────────────────── */
.calc-section { background: var(--bg); }
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}
.calc-form-panel {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.calc-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 28px; }
.calc-tab {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  border: 0.5px solid var(--border2);
  background: transparent;
  color: var(--muted2);
  transition: all var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.calc-tab:hover { border-color: var(--accent); color: var(--accent2); }
.calc-tab.active { background: var(--accent); color: #fff; border-color: var(--accent); }

.calc-fields { display: flex; flex-direction: column; gap: 16px; }
.field-group {}
.field-group label { display: block; font-size: 12px; color: var(--muted2); margin-bottom: 6px; font-weight: 500; }
.field-group label.required::after { content: ' *'; color: var(--accent2); }
.field-input, .field-select, .field-textarea {
  width: 100%;
  background: var(--bg3);
  border: 0.5px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.field-input:focus, .field-select:focus, .field-textarea:focus { border-color: var(--accent); }
.field-select option { background: var(--bg3); color: var(--text); }
.field-textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-hint { font-size: 11px; color: var(--muted); margin-top: 5px; }
.field-error { font-size: 11px; color: var(--danger); margin-top: 5px; display: none; }
.field-group.has-error .field-input,
.field-group.has-error .field-select,
.field-group.has-error .field-textarea { border-color: var(--danger); }
.field-group.has-error .field-error { display: block; }

.calc-note {
  background: rgba(124,92,252,.08);
  border: 0.5px solid rgba(124,92,252,.2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.6;
}
.calc-note.warning {
  background: rgba(240,180,41,.06);
  border-color: rgba(240,180,41,.2);
  color: var(--gold);
}

.calc-result-panel {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}
.result-service { font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.result-price-wrap { margin-bottom: 20px; }
.result-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent2);
  line-height: 1;
  margin-bottom: 4px;
}
.result-price-note { font-size: 12px; color: var(--muted); }
.result-lines { border-top: 0.5px solid var(--border); padding-top: 16px; margin-bottom: 20px; }
.result-line {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--muted2);
  padding: 5px 0;
  border-bottom: 0.5px solid var(--border);
}
.result-line:last-child { border-bottom: none; }
.result-line span:last-child { color: var(--text); font-weight: 500; }
.result-scenario {
  background: rgba(45,212,191,.06);
  border: 0.5px solid rgba(45,212,191,.2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--teal);
  margin-bottom: 16px;
  line-height: 1.5;
}
.result-scenario.dialog { background: rgba(240,180,41,.06); border-color: rgba(240,180,41,.2); color: var(--gold); }

@media (max-width: 900px) {
  .calc-wrap { grid-template-columns: 1fr; }
  .calc-result-panel { position: static; }
}
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

/* ── FORM ───────────────────────────────────────────────────── */
.form-section { background: var(--bg2); border-top: 0.5px solid var(--border); }
.form-wrap { max-width: 680px; margin: 0 auto; }
.form-contact-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-submit-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 24px; }
.form-submit-row .btn { flex-shrink: 0; }
.form-status {
  font-size: 13px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  display: none;
  flex: 1;
}
.form-status.success { background: rgba(74,222,128,.08); border: 0.5px solid rgba(74,222,128,.2); color: var(--success); display: block; }
.form-status.error { background: rgba(248,113,113,.08); border: 0.5px solid rgba(248,113,113,.2); color: var(--danger); display: block; }

@media (max-width: 600px) { .form-contact-fields { grid-template-columns: 1fr; } }

/* ── FEED ───────────────────────────────────────────────────── */
.feed-section { background: var(--bg); }
.feed-disclaimer { font-size: 11px; color: var(--muted); margin-bottom: 20px; font-style: italic; }
.feed-list { display: flex; flex-direction: column; gap: 8px; }
.feed-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  animation: feed-in .4s ease forwards;
  opacity: 0;
}
@keyframes feed-in { to { opacity: 1; transform: translateY(0); } from { transform: translateY(8px); } }
.feed-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.feed-dot.gold { background: var(--gold); }
.feed-dot.teal { background: var(--teal); }
.feed-text { flex: 1; font-size: 13px; color: var(--muted2); }
.feed-time { font-size: 11px; color: var(--muted); flex-shrink: 0; }

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.how-section { background: var(--bg2); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.step-num { font-size: 11px; color: var(--accent); letter-spacing: 1.5px; font-weight: 600; margin-bottom: 12px; display: block; }
.step-title { font-family: var(--font-display); font-size: 15px; font-weight: 600; margin-bottom: 10px; }
.step-text { font-size: 13px; color: var(--muted2); line-height: 1.6; }

@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg2);
  border-top: 0.5px solid var(--border);
  padding: 40px var(--section-px) 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 24px;
}
.footer-brand-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.footer-brand-name span { color: var(--gold); }
.footer-brand-sub { font-size: 13px; color: var(--muted); line-height: 1.6; }
.footer-col-title { font-size: 12px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: var(--muted2); margin-bottom: 10px; transition: color var(--transition); }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-partner-btn {
  font-size: 12px;
  color: var(--muted2);
  border: 0.5px solid var(--border2);
  border-radius: var(--radius-xs);
  padding: 6px 12px;
  transition: all var(--transition);
}
.footer-partner-btn:hover { color: var(--accent2); border-color: var(--accent); }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
}

/* ═══ PLAYLIST PANEL ═══ */
.playlist-tabs {
  display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap;
}
.playlist-tab {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 500;
  border: 0.5px solid rgba(255,255,255,0.12);
  background: transparent; color: var(--muted2);
  cursor: pointer; transition: all .2s;
}
.playlist-tab:hover { border-color: var(--accent); color: var(--accent2); }
.playlist-tab.active { background: rgba(124,92,252,0.15); color: var(--accent2); border-color: var(--accent); }

.playlist-drop-zone {
  border: 1.5px dashed rgba(124,92,252,0.3);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: all .2s; cursor: pointer;
  background: rgba(124,92,252,0.03);
}
.playlist-drop-zone:hover, .playlist-drop-zone.drag-over {
  border-color: var(--accent); background: rgba(124,92,252,0.08);
}
.playlist-drop-text { font-size: 15px; font-weight: 600; color: #fff; }
.playlist-drop-sub { font-size: 12px; color: var(--muted); }
.playlist-drop-formats { font-size: 11px; color: var(--muted); margin-top: 4px; }

.playlist-url-form { margin-bottom: 16px; }
.playlist-url-row { display: flex; gap: 8px; margin-bottom: 8px; }
.playlist-url-input {
  flex: 1; background: var(--bg3);
  border: 0.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 10px 14px; font-size: 13px; color: #fff; outline: none;
  transition: border-color .2s;
}
.playlist-url-input:focus { border-color: var(--accent); }
.playlist-url-hint { font-size: 11px; color: var(--muted); }

/* ═══ SERVICES BAR ═══ */
.services-bar {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg2);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 0 var(--section-px);
  position: relative; z-index: 2;
  overflow: hidden;
}
.services-bar-left {
  flex-shrink: 0; padding: 16px 0;
}
.services-bar-title {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700; color: #fff;
  white-space: nowrap;
}
.services-bar-line {
  width: 32px; height: 2px;
  background: var(--accent); border-radius: 1px;
  margin-top: 6px;
}
.services-bar-scroll {
  display: flex; gap: 6px;
  overflow-x: auto; padding: 12px 0;
  scrollbar-width: none; flex: 1;
}
.services-bar-scroll::-webkit-scrollbar { display: none; }

.svc-chip {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: var(--radius-sm);
  border: 0.5px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--muted2); cursor: pointer; transition: all .2s;
  white-space: nowrap; flex-shrink: 0; min-width: 72px;
}
.svc-chip svg { opacity: 0.6; transition: opacity .2s; }
.svc-chip span { font-size: 11px; font-weight: 500; }
.svc-chip:hover { border-color: var(--accent); color: var(--accent2); background: rgba(124,92,252,0.08); }
.svc-chip:hover svg { opacity: 1; }
.svc-chip.active {
  border-color: var(--accent); color: var(--accent2);
  background: rgba(124,92,252,0.12);
}
.svc-chip.active svg { opacity: 1; color: var(--accent2); }

.services-bar-all {
  flex-shrink: 0; font-size: 12px; color: var(--accent2);
  white-space: nowrap; padding: 16px 0; transition: color .2s;
}
.services-bar-all:hover { color: #fff; }

@media (max-width: 768px) {
  .services-bar { flex-wrap: wrap; gap: 8px; padding: 12px var(--section-px); }
  .services-bar-left { padding: 0; }
  .services-bar-all { padding: 0; }
}

/* ═══ EXAMPLES + WHY ═══ */
.examples-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.examples-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 16px;
}
.examples-title {
  font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #fff;
}
.examples-more { font-size: 12px; color: var(--accent2); }
.examples-more:hover { color: #fff; }

.examples-cards {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 10px;
}
.example-card {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 1; cursor: pointer; background: linear-gradient(135deg,#1e1040,#0d0825);
}
.example-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .3s;
}
.example-card:hover img { transform: scale(1.05); }
.example-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 10px;
}
.example-card-name { font-size: 11px; font-weight: 600; color: #fff; }
.example-card-genre { font-size: 10px; color: var(--muted2); }
.example-card-play {
  position: absolute; top: 8px; right: 8px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(124,92,252,0.8); border: none;
  color: #fff; font-size: 10px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transition: opacity .2s;
}
.example-card:hover .example-card-play { opacity: 1; }
.examples-dots { display: flex; gap: 5px; margin-top: 12px; }
.examples-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.2); cursor: pointer; transition: background .2s;
}
.examples-dot.active { background: var(--accent2); }

/* Why choose */
.why-col {}
.why-title {
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  color: #fff; margin-bottom: 20px;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-item { display: flex; gap: 12px; align-items: flex-start; }
.why-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(124,92,252,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.why-item-title { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.why-item-text { font-size: 11px; color: var(--muted); line-height: 1.5; }

@media (max-width: 900px) {
  .examples-why-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .examples-cards { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
