/* ============================================================
   RADYO DENİZ — Professional Radio Website Styles
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:    #7c3aed;
  --purple-lt: #a855f7;
  --purple-dk: #5b21b6;
  --bg:        #0a0a0f;
  --bg2:       #111118;
  --bg3:       #16161f;
  --border:    rgba(124,58,237,.18);
  --text:      #e2e8f0;
  --muted:     #8892a4;
  --white:     #ffffff;
  --red:       #ef4444;
  --player-h:  76px;
  --nav-h:     160px;
  --radius:    14px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-bottom: var(--player-h);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── HEADER / NAVBAR ── */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background .3s, box-shadow .3s;
}

.header.scrolled,
.header.header-solid {
  background: rgba(10,10,15,.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.navbar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 0 0 32px;
}

.nav-logo { height: 145px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  position: relative;
}

.nav-item:hover { color: var(--white); background: rgba(255,255,255,.06); }

.nav-item.active {
  color: var(--white);
  background: rgba(124,58,237,.15);
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--purple-lt);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}

.nav-phone svg { color: var(--purple-lt); flex-shrink: 0; }
.nav-phone:hover { color: var(--white); border-color: var(--purple-lt); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 10px;
  width: 42px;
  height: 42px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - var(--nav-h) - var(--player-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 80px 28px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}

.orb1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  top: -200px; left: -200px;
}

.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #4f46e5 0%, transparent 70%);
  bottom: 100px; right: -100px;
}

.orb3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #a855f7 0%, transparent 70%);
  top: 50%; left: 50%;
  opacity: .15;
}

.freq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--purple-lt);
  background: rgba(124,58,237,.1);
  border: 1px solid rgba(124,58,237,.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.freq-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--purple-lt), #c084fc, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(124,58,237,.35);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--purple-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(124,58,237,.45);
}

.btn-sm { padding: 10px 20px; font-size: 14px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color .2s, color .2s;
}

.btn-ghost:hover { border-color: var(--purple-lt); color: var(--white); }

/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.vinyl {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #1a1a2e 0%,
    #16213e 25%,
    #0f3460 50%,
    #16213e 75%,
    #1a1a2e 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 6px rgba(124,58,237,.2),
    0 0 0 12px rgba(124,58,237,.08),
    0 30px 60px rgba(0,0,0,.6);
  animation: spin 12s linear infinite;
  animation-play-state: paused;
}

.vinyl.playing { animation-play-state: running; }

@keyframes spin { to { transform: rotate(360deg); } }

.vinyl-inner {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px rgba(124,58,237,.3);
  animation: spin-reverse 12s linear infinite;
  animation-play-state: paused;
}

.vinyl.playing .vinyl-inner { animation-play-state: running; }

@keyframes spin-reverse { to { transform: rotate(-360deg); } }

.vinyl-logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  border-radius: 50%;
}

.wave-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 40px;
}

.wave-bars span {
  width: 5px;
  background: var(--purple);
  border-radius: 3px;
  animation: wave-idle 1.8s ease-in-out infinite;
  height: 8px;
}

.wave-bars span:nth-child(2) { animation-delay: .2s; }
.wave-bars span:nth-child(3) { animation-delay: .4s; }
.wave-bars span:nth-child(4) { animation-delay: .6s; }
.wave-bars span:nth-child(5) { animation-delay: .8s; }
.wave-bars span:nth-child(6) { animation-delay: .3s; }
.wave-bars span:nth-child(7) { animation-delay: .5s; }
.wave-bars span:nth-child(8) { animation-delay: .7s; }
.wave-bars span:nth-child(9) { animation-delay: .9s; }
.wave-bars span:nth-child(10) { animation-delay: 1.1s; }

@keyframes wave-idle {
  0%, 100% { height: 8px; opacity: .4; }
  50% { height: 32px; opacity: 1; }
}

/* section shared */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--purple-lt);
  background: rgba(124,58,237,.1);
  border: 1px solid rgba(124,58,237,.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 48px;
}

/* ── ABOUT SECTION ── */
.about-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--purple-lt);
  letter-spacing: -1px;
}

.stat span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color .2s, transform .2s;
}

.feature-card:hover {
  border-color: rgba(124,58,237,.4);
  transform: translateY(-2px);
}

.feat-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(124,58,237,.15);
  color: var(--purple-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.feature-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

/* ── WHY SECTION ── */
.why-section {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: border-color .2s, transform .2s;
}

.why-card:hover {
  border-color: rgba(124,58,237,.4);
  transform: translateY(-3px);
}

.why-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(124,58,237,.25);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.7; }

/* ── PAGE BANNER (iç sayfa) ── */
.page-banner {
  position: relative;
  overflow: hidden;
  padding: 80px 0 70px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(124,58,237,.05) 0%, transparent 100%);
}

.pb-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.pb-orb1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  opacity: .12;
  top: -100px; left: -100px;
}

.pb-orb2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #818cf8 0%, transparent 70%);
  opacity: .1;
  bottom: -80px; right: 100px;
}

.page-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 12px;
}

.page-sub { font-size: 1.05rem; color: var(--muted); }

.main-content { padding: 72px 0 80px; }

/* ── YÖNETİM SAYFASI ── */
.mgmt-featured {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  margin-bottom: 48px;
}

.mgmt-photo { display: flex; justify-content: center; }

.mgmt-photo-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid rgba(124,58,237,.4);
  box-shadow: 0 0 0 6px rgba(124,58,237,.1), 0 20px 40px rgba(0,0,0,.4);
}

.mgmt-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple-lt);
  background: rgba(124,58,237,.1);
  border: 1px solid rgba(124,58,237,.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.mgmt-details h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.mgmt-details p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.mgmt-contact { display: flex; gap: 12px; }

.mgmt-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-lt);
  border: 1px solid rgba(124,58,237,.3);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  transition: background .2s, border-color .2s;
}

.mgmt-link:hover { background: rgba(124,58,237,.1); border-color: var(--purple-lt); }

.corp-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.corp-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .2s;
}

.corp-card:hover { border-color: rgba(124,58,237,.35); }

.corp-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(124,58,237,.12);
  color: var(--purple-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.corp-card h4 { font-size: 0.82rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.corp-card p { font-size: 0.93rem; color: var(--text); line-height: 1.6; }

/* ── İLETİŞİM SAYFASI ── */

.warning-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.4);
  border-left: 4px solid #ef4444;
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin-bottom: 36px;
}

.warning-icon {
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 2px;
}

.warning-note p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fca5a5;
  line-height: 1.7;
  letter-spacing: 0.2px;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.contact-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: border-color .2s, transform .2s;
}

.contact-card:hover {
  border-color: rgba(124,58,237,.4);
  transform: translateY(-2px);
}

.cc-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(124,58,237,.12);
  color: var(--purple-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.contact-card h4 { font-size: 0.82rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.contact-card p { font-size: 0.9rem; color: var(--text); line-height: 1.6; }
.contact-card a { color: var(--purple-lt); transition: color .2s; }
.contact-card a:hover { color: var(--white); }
.fax-label { font-size: 0.78rem; color: var(--muted); }

.contact-main {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

.contact-form-wrap h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.5px;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 7px;
}

.req { color: var(--purple-lt); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color .2s, background .2s;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238892a4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select option { background: #1a1a2a; }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--purple-lt);
  background: rgba(124,58,237,.05);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(124,58,237,.3);
}

.btn-submit:hover {
  background: var(--purple-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(124,58,237,.4);
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: #4ade80;
  font-size: 0.95rem;
  margin-top: 4px;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aside-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.aside-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.hours-list { margin-bottom: 20px; }

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: 0.88rem;
}

.hours-row span { color: var(--muted); }
.hours-row strong { color: var(--text); }

.aside-note {
  font-size: 0.83rem;
  color: var(--muted);
  background: rgba(124,58,237,.07);
  border: 1px solid rgba(124,58,237,.15);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.aside-note strong { color: var(--purple-lt); }

.aside-box p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.aside-box p strong { color: var(--text); }

/* ── FOOTER ── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo { height: 120px; object-fit: contain; margin-bottom: 14px; }
.footer-brand p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.footer-tagline { font-size: 0.78rem; color: rgba(124,58,237,.8); margin-top: 6px; }

.footer-nav h4,
.footer-contact h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 0.9rem; color: var(--muted); transition: color .2s; }
.footer-nav a:hover { color: var(--purple-lt); }

.footer-contact p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 6px; }
.footer-contact a { color: var(--purple-lt); transition: color .2s; }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── PLAYER ── */
.player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--player-h);
  background: rgba(10,10,15,.97);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  z-index: 1000;
  gap: 20px;
  box-shadow: 0 -8px 32px rgba(0,0,0,.5);
}

.player-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1;
}

.p-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.p-info { display: flex; flex-direction: column; min-width: 0; }
.p-name { font-size: 14px; font-weight: 700; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.p-freq { font-size: 11px; color: var(--muted); white-space: nowrap; }

.player-center {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.p-play {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--purple);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(124,58,237,.4);
  flex-shrink: 0;
}

.p-play:hover {
  background: var(--purple-dk);
  transform: scale(1.07);
  box-shadow: 0 6px 22px rgba(124,58,237,.55);
}

/* Player wave bars */
.p-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 28px;
}

.p-wave span {
  width: 3px;
  border-radius: 3px;
  background: var(--purple-lt);
  height: 4px;
  transition: height .1s;
}

.p-wave.active span:nth-child(1) { animation: pw 1.0s ease-in-out infinite; }
.p-wave.active span:nth-child(2) { animation: pw 1.2s ease-in-out infinite .15s; }
.p-wave.active span:nth-child(3) { animation: pw .9s ease-in-out infinite .3s; }
.p-wave.active span:nth-child(4) { animation: pw 1.3s ease-in-out infinite .1s; }
.p-wave.active span:nth-child(5) { animation: pw 1.1s ease-in-out infinite .45s; }

@keyframes pw {
  0%, 100% { height: 4px; }
  50% { height: 22px; }
}

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

.p-live {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--red);
}

.p-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.4s ease-in-out infinite;
}

.p-vol {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

#volSlider {
  -webkit-appearance: none;
  width: 90px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,.15);
  outline: none;
  cursor: pointer;
}

#volSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--purple-lt);
  cursor: pointer;
  box-shadow: 0 0 6px rgba(124,58,237,.6);
  transition: transform .15s;
}

#volSlider::-webkit-slider-thumb:hover { transform: scale(1.2); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-main { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-phone { display: none; }
  :root { --nav-h: 80px; }
  .nav-logo { height: 64px; }
  .brand { padding: 0 0 0 12px; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(10,10,15,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }

  .nav-links.open { display: flex; }
  .nav-item { padding: 12px 16px; }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 20px;
    min-height: auto;
    gap: 40px;
  }

  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .vinyl { width: 200px; height: 200px; }
  .vinyl-inner { width: 90px; height: 90px; }
  .vinyl-logo { width: 78px; height: 78px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-features { grid-template-columns: 1fr; }
  .about-stats { gap: 20px; }

  .mgmt-featured {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
    gap: 28px;
  }
  .mgmt-photo { justify-content: center; }
  .mgmt-contact { justify-content: center; }

  .corp-info { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .form-row { grid-template-columns: 1fr; }

  /* Player mobile */
  .player { padding: 0 14px; gap: 10px; }
  .p-freq { display: none; }
  .p-live { display: none; }
  #volSlider { width: 60px; }
}

@media (max-width: 480px) {
  .contact-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-title { letter-spacing: -1px; }
  .stat strong { font-size: 1.5rem; }
}
