* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #f8f6f1;
  color: #17131d;
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid #ffb33c;
  outline-offset: 2px;
}

.topbar {
  background: #120c18;
  color: rgba(255, 248, 239, .68);
  font-size: 12.5px;
}
.topbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 9px clamp(18px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-inner p { display: flex; align-items: center; gap: 8px; margin: 0; font-weight: 700; }
.topbar-icon { flex: 0 0 auto; color: #ffb33c; }
.topbar-account { display: inline-flex; align-items: center; gap: 6px; flex: 0 0 auto; color: #fff8ef; font-weight: 800; transition: color .15s ease; }
.topbar-account:hover { color: #ffb33c; }

.mainnav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fffdf9;
  border-bottom: 1px solid #ece5d6;
}
.mainnav-inner {
  max-width: 1120px;
  margin: 0 auto;
  min-height: 76px;
  padding: 0 clamp(18px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: 28px;
}
.mainnav .brand { color: #17131d; }
.mainnav .brand span { box-shadow: 0 0 10px rgba(255, 179, 60, .55); }
.mainnav .nav-menu { display: contents; }
.mainnav .nav-links { flex: 1; justify-content: center; color: #504b5e; }
.mainnav .nav-links a { transition: color .15s ease; }
.mainnav .nav-links a:hover { color: #d9472f; }
.mainnav .quote { display: none; }
.nav-item { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-weight: 800;
  font-size: 14px;
  color: inherit;
  cursor: pointer;
  transition: color .15s ease;
}
.chevron { transition: transform .15s ease; }
.nav-item.is-open .chevron { transform: rotate(180deg); }
.mainnav .nav-dropdown-toggle:hover,
.nav-item.is-open .nav-dropdown-toggle { color: #d9472f; }
.dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  padding: 8px;
  flex-direction: column;
  gap: 2px;
  border-radius: 16px;
  background: #fffdf9;
  border: 1px solid #ece5d6;
  box-shadow: 0 20px 44px rgba(15, 14, 22, .14);
  z-index: 40;
}
.nav-item.is-open .dropdown-panel { display: flex; }
.dropdown-panel a {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #3a3548;
  transition: background-color .15s ease, color .15s ease;
}
.dropdown-panel a:hover { background: #f6f1e6; color: #d9472f; }
.mainnav-actions { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #17131d;
  color: #fff8ef;
  font-weight: 900;
  font-size: 14px;
  transition: background-color .15s ease, transform .15s ease;
}
.cart-btn:hover { background: #2c2636; }
.cart-btn:active { transform: scale(.96); }
.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ffb33c;
  color: #17131d;
  font-size: 12px;
  font-weight: 900;
}

.hero {
  padding: clamp(48px, 7vw, 84px) clamp(18px, 4vw, 64px) 84px;
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 179, 60, .16), transparent 24%),
    radial-gradient(circle at 14% 74%, rgba(116, 55, 182, .24), transparent 28%),
    #120c18;
  color: #fff8ef;
}
.hero-grid, .section, .split, .footer > div, .footer > p {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff8ef;
  font-weight: 900;
  text-transform: uppercase;
}
.brand span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffb33c;
  box-shadow: 0 0 14px rgba(255, 179, 60, .9);
}
.brand strong { color: #ffb33c; }
.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #e4ddcc;
  border-radius: 12px;
  background: #f6f1e6;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #17131d;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-menu { display: contents; }
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  font-size: 14px;
  font-weight: 800;
}
.quote, .btn, .cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .15s ease, opacity .15s ease, background-color .15s ease;
}
.quote:hover, .primary:hover { background: #ffc463; }
.ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28); }
.cart:hover { background: #1c1e1e; }
.quote:active, .btn:active, .cart:active { transform: scale(.97); }
.quote, .primary {
  background: #ffb33c;
  color: #120c18;
  padding: 0 24px;
}
.ghost {
  border: 1px solid rgba(255,255,255,.14);
  color: #fff8ef;
  padding: 0 24px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .74fr);
  gap: clamp(42px, 8vw, 132px);
  align-items: center;
}
.eyebrow {
  margin: 0 0 16px;
  color: #ffb33c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow.dark { color: #d9472f; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: clamp(52px, 6vw, 72px);
  line-height: .95;
}
h2 { font-size: clamp(34px, 4vw, 56px); line-height: 1; }
.lead {
  max-width: 560px;
  color: #cdbff2;
  font-size: 20px;
  line-height: 1.65;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.stats { display: flex; flex-wrap: wrap; gap: 38px; margin-top: 58px; }
.stats strong, .stats span { display: block; }
.stats strong { color: #fff8ef; font-size: 28px; }
.stats span { color: #cdbff2; font-size: 14px; margin-top: 9px; }
.player-card {
  padding: 48px 32px 44px;
  border: 1px solid #44325f;
  border-radius: 18px;
  background: #281d39;
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
}
.player-card p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d5c6ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.live-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ffb33c;
  box-shadow: 0 0 10px rgba(255, 179, 60, .9);
  animation: live-pulse 1.6s ease-in-out infinite;
}
.player-card h2 { color: #fff8ef; font-size: 21px; margin-bottom: 30px; }
.wave { height: 112px; display: flex; align-items: center; gap: 7px; }
.wave i {
  flex: 1;
  max-width: 6px;
  min-height: 22px;
  border-radius: 999px;
  background: linear-gradient(#ffb33c, #ff695d);
  transform-origin: center;
  animation: wave-pulse 1.1s ease-in-out infinite;
}
.wave i:nth-child(2n) { height: 75%; animation-duration: 1.3s; animation-delay: -.15s; }
.wave i:nth-child(3n) { height: 44%; animation-duration: .85s; animation-delay: -.3s; }
.wave i:nth-child(5n) { height: 96%; animation-duration: 1.5s; animation-delay: -.45s; }
.wave i:nth-child(7n) { animation-delay: -.6s; }
.wave i:nth-child(11n) { animation-duration: 1.6s; animation-delay: -.75s; }

.process-card {
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 26px 70px rgba(8, 10, 22, .26);
  color: #081426;
}
.process-window {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 4px 12px;
}
.window-dots {
  display: flex;
  gap: 8px;
}
.window-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.window-dots span:nth-child(1) { background: #ff4d45; }
.window-dots span:nth-child(2) { background: #ffbd38; }
.window-dots span:nth-child(3) { background: #28c76f; }
.process-window strong {
  color: #081426;
  font-size: 13px;
  letter-spacing: .02em;
}
.process-wave {
  height: 150px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 48%, rgba(127, 191, 255, .18), transparent 32%),
    linear-gradient(135deg, #111b35, #162a5c);
}
.process-wave span {
  display: block;
  width: 8px;
  min-height: 34px;
  border-radius: 999px;
  background: linear-gradient(#f4fbff, #89bfff);
  box-shadow: 0 0 20px rgba(137, 191, 255, .38);
}
.process-wave span:nth-child(2n) { height: 62px; }
.process-wave span:nth-child(3n) { height: 78px; }
.process-wave span:nth-child(5n) { height: 96px; }
.process-wave span:nth-child(7n) { height: 50px; }
.process-steps {
  display: grid;
  gap: 12px;
}
.process-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #e6eaf1;
  border-radius: 18px;
  background: #fbfcfe;
}
.process-step > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #eef2f7;
  color: #0e1a2c;
  font-weight: 900;
  font-size: 13px;
}
.process-step.active > span {
  background: #2f6ced;
  color: white;
}
.process-step h2 {
  margin: 0 0 4px;
  color: #081426;
  font-size: 17px;
  line-height: 1.2;
}
.process-step p {
  margin: 0;
  color: #607084;
  font-size: 14px;
  line-height: 1.35;
}
.process-footer {
  margin-top: 20px;
  min-height: 80px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 20px;
  background: #0d1730;
  color: white;
}
.process-footer span,
.process-footer strong {
  display: block;
}
.process-footer span {
  color: #b7c0d3;
  font-size: 13px;
  font-weight: 800;
}
.process-footer strong {
  margin-top: 6px;
  font-size: 17px;
}
.process-footer a {
  color: white;
  font-size: 17px;
  font-weight: 900;
}

@keyframes live-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: .55; }
}
@keyframes wave-pulse {
  0%, 100% { transform: scaleY(.5); opacity: .85; }
  50% { transform: scaleY(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .wave i, .live-dot { animation: none; }
}

.section, .split { padding: 92px clamp(18px, 4vw, 64px); }
.section-lead, .split p { color: #62646a; font-size: 18px; line-height: 1.7; }
.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-top: 36px;
}
.product { background: #f8f8f6; color: #303030; transition: box-shadow .18s ease, transform .18s ease; }
.product:hover { box-shadow: 0 20px 44px rgba(15,14,22,.12); transform: translateY(-3px); }
.cover {
  position: relative;
  display: grid;
  place-content: center;
  gap: 12px;
  aspect-ratio: 1;
  overflow: hidden;
  color: white;
  text-align: center;
  padding: 22px;
}
.cover b {
  position: absolute;
  top: 0;
  left: 0;
  background: #b10868;
  padding: 7px 10px;
  font-size: 13px;
}
.cover strong { font-size: clamp(34px, 4vw, 48px); line-height: .9; text-transform: uppercase; }
.cover span { font-size: 12px; font-weight: 900; text-transform: uppercase; }
.grand { background: radial-gradient(circle at 50% 78%, #ffd23d, transparent 12%), linear-gradient(160deg, #050505, #192e5b 46%, #020202); }
.custom { background: radial-gradient(circle at 48% 48%, #ff74bc, transparent 32%), linear-gradient(145deg, #26003f, #7437b6 45%, #081054); }
.sexy { background: radial-gradient(circle at 54% 54%, #ff2577, transparent 24%), linear-gradient(150deg, #060606, #1a020d 58%, #000); }
.seductive { background: radial-gradient(circle at 76% 18%, #ff1e42, transparent 28%), linear-gradient(140deg, #160609, #9c221f 48%, #050505); }
.audio {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 12px;
  background: #282828;
}
.audio button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #3a3a3a;
  transition: background-color .15s ease;
}
.audio button:hover { background: #4c4c4c; }
.audio span { height: 7px; background: #666; }
.audio span i { display: block; height: 100%; width: 76%; background: #ffd323; }
.audio time { color: #ffd323; font-size: 12px; font-weight: 900; }
.product h3 { font-size: 17px; line-height: 1.45; margin: 16px 0 8px; }
.stars { color: #ff9800; border-bottom: 1px solid #ddd; padding-bottom: 14px; }
.stars em { color: #454545; font-style: normal; }
.price { font-size: 22px; font-weight: 900; }
.price del { color: #676767; font-size: 14px; font-weight: 400; margin-left: 8px; }
.product h3, .stars, .price, .cart { margin-left: 0; margin-right: 0; }
.cart { min-height: 44px; background: #282a2a; color: #ffde00; }

.voices-section {
  padding: 88px clamp(18px, 4vw, 64px);
  background: #f7f8fb;
}
.voices-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.voices-header h2 {
  margin-bottom: 14px;
  color: #080a12;
}
.voices-header p:last-child {
  margin: 0 auto;
  color: #8b91a2;
  font-size: 16px;
  line-height: 1.65;
}
.voice-grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}
.voice-card {
  text-align: center;
}
.voice-photo {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 3px solid #cfe1ff;
  border-radius: 14px;
  background: #17131d;
  box-shadow: 0 18px 44px rgba(16, 20, 35, .12);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.voice-photo.female {
  border-color: #ffd0e2;
}
.voice-card:hover .voice-photo {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(16, 20, 35, .18);
  border-color: #ffb33c;
}
.voice-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.voice-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(18,12,24,.2));
  pointer-events: none;
}
.voice-photo button {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: white;
  color: #e3315b;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
}
.voice-card h3 {
  margin: 16px 0 0;
  color: #080a12;
  font-size: 16px;
}
.voice-card h3 span {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-left: 4px;
  border-radius: 50%;
  background: #e9f1ff;
  color: #4c82ff;
  font-size: 12px;
}
.voice-card.female-voice h3 span {
  background: #ffe8f2;
  color: #f05a9a;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
}
.demo-list { display: grid; gap: 12px; }
.demo-list button {
  min-height: 68px;
  border: 1px solid #dfd8cc;
  border-radius: 14px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.demo-list button:hover,
.demo-list button:focus-visible { border-color: #d9472f; box-shadow: 0 8px 20px rgba(15,14,22,.06); }
.demo-list i {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #171f25;
  color: #ffb33c;
  font-style: normal;
  font-size: 12px;
}
.demo-list span { flex: 1; text-align: left; }
.demo-list small { color: #8a8f97; font-weight: 700; }
.cta {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 64px);
}
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 52px clamp(24px, 5vw, 64px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .08);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 179, 60, .2), transparent 32%),
    radial-gradient(circle at 8% 88%, rgba(116, 55, 182, .32), transparent 34%),
    #18101f;
  color: #fff8ef;
  box-shadow: 0 30px 70px rgba(10, 6, 16, .28);
}
.cta-text p:last-child { max-width: 460px; margin-top: 12px; color: rgba(255, 248, 239, .68); font-size: 18px; line-height: 1.6; }
.cta-btn { flex: 0 0 auto; gap: 6px; }
.cta-btn span { display: inline-block; transition: transform .15s ease; }
.cta-btn:hover span { transform: translateX(4px); }

.footer {
  position: relative;
  margin-top: 92px;
  padding: 60px clamp(18px, 4vw, 64px) 0;
  background:
    radial-gradient(circle at 86% 0%, rgba(255, 179, 60, .12), transparent 30%),
    radial-gradient(circle at 8% 100%, rgba(116, 55, 182, .22), transparent 34%),
    #120c18;
  color: #cdbff2;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffb33c, #7437b6, transparent);
}
.footer-top {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.footer-brand p { max-width: 300px; margin-top: 16px; color: #a79cc9; font-size: 14px; line-height: 1.7; }
.footer-col { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer-col h3 {
  margin-bottom: 4px;
  color: #fff8ef;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-col a { color: #cdbff2; transition: color .15s ease; }
.footer-col a:hover { color: #ffb33c; }
.footer-note { color: #8a80ad; font-size: 13px; }
.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding: 22px 0 28px;
  color: #8a80ad;
  font-size: 12px;
}

.order-body { background: #f5f8fd; }
.order-nav, .order-page {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: clamp(18px, 3vw, 30px);
  padding-right: clamp(18px, 3vw, 30px);
}
.order-nav { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; padding-bottom: 18px; }
.order-brand { color: #071936; }
.back { background: #071936; color: white; border-radius: 999px; padding: 12px 18px; font-weight: 900; }
.order-page { display: grid; grid-template-columns: minmax(320px, .78fr) minmax(420px, 1fr); gap: 32px; padding-top: 32px; padding-bottom: 56px; }
.order-left { display: grid; gap: 16px; }
.order-cover {
  aspect-ratio: 1.6 / 1;
  border-radius: 22px;
  background: radial-gradient(circle at 54% 70%, rgba(30,120,230,.42), transparent 28%), linear-gradient(140deg,#08101d,#24364f 54%,#090b11);
  color: white;
  padding: 34px;
  display: grid;
  align-items: center;
}
.order-cover span { font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.order-cover strong { font-size: clamp(42px, 6vw, 72px); line-height: .9; text-transform: uppercase; }
.audio-demo, .benefits div, .order-form, .panel {
  background: white;
  border: 1px solid #dfe6ef;
  box-shadow: 0 18px 40px rgba(15,32,58,.06);
}
.audio-demo { border-radius: 20px; padding: 22px 16px 26px; }
.audio-demo p { color: #2261e8; font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.audio-demo h2 { color: #101b34; font-size: 20px; }
.soundcloud { display: grid; grid-template-columns: 84px 44px 1fr; gap: 12px; align-items: center; background: #f4f7fb; border-radius: 14px; padding: 8px; }
.soundcloud > div { height: 90px; display: grid; place-items: center; background: #d6f4ff; color: #178bc5; font-weight: 950; }
.soundcloud button { width: 44px; height: 44px; border: 0; border-radius: 50%; background: #ff5a18; }
.soundcloud span { color: #687590; font-size: 12px; }
.soundcloud strong { display: block; color: #212b3d; font-size: 14px; margin: 6px 0; }
.soundcloud i { display: block; height: 34px; background: repeating-linear-gradient(90deg,#ff6a2a 0 3px,#a5aebd 3px 7px); }
.benefits { display: grid; gap: 10px; }
.benefits div { border-radius: 15px; padding: 14px; display: grid; grid-template-columns: 46px 1fr; gap: 2px 12px; }
.benefits b { grid-row: span 2; width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; background: #f4f7fb; }
.benefits span { color: #6a7892; }
.order-form { padding: 0 22px; overflow: hidden; }
.order-form h1 { color: #061738; text-transform: uppercase; margin-top: 0; }
.order-form header p { color: #60708b; }
.base-price { display: grid; grid-template-columns: 1fr auto; gap: 2px 18px; padding: 18px; border-radius: 17px; background: linear-gradient(100deg,#edf4ff,#f8f2ff); }
.base-price strong { color: #071936; font-size: 27px; }
.base-price em { color: #64728d; font-size: 13px; font-style: normal; }
.panel { display: grid; gap: 14px; border-radius: 20px; margin-top: 16px; padding: 20px 16px 88px; }
.step { display: flex; gap: 14px; align-items: center; }
.step > span { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: #2261e8; color: white; font-weight: 900; }
.step h2 { font-size: 20px; margin: 0 0 2px; color: #071936; }
.step p { margin: 0; color: #65728b; }
label { display: grid; gap: 8px; color: #071936; font-size: 14px; font-weight: 900; }
label small { color: #64728d; font-weight: 500; }
input, select, textarea { min-height: 50px; border: 1px solid #cfd8e6; border-radius: 14px; padding: 12px 14px; background: white; color: #23304a; }
textarea { min-height: 92px; resize: vertical; }
.cols { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.checkout { position: sticky; bottom: 0; margin-top: -72px; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 18px; border-radius: 18px 18px 0 0; background: #1f5ddd; color: white; }
.checkout strong { display: block; font-size: 34px; }
.checkout button { min-height: 48px; border: 0; border-radius: 17px; background: white; color: #1f5ddd; font-weight: 900; padding: 0 24px; }

@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .mainnav .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 10px;
    padding: 16px clamp(18px, 4vw, 64px) 20px;
    background: #fffdf9;
    border-bottom: 1px solid #ece5d6;
    box-shadow: 0 18px 30px rgba(15, 14, 22, .08);
  }
  .mainnav { position: sticky; }
  .mainnav-inner { position: relative; }
  .mainnav .nav-menu.is-open { display: flex; }
  .mainnav .nav-links { flex-direction: column; gap: 4px; }
  .mainnav .nav-links a { padding: 10px 4px; border-radius: 10px; }
  .mainnav .nav-links a:hover { background: #f6f1e6; }
  .nav-item { position: static; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 10px 4px; border-radius: 10px; }
  .nav-dropdown-toggle:hover { background: #f6f1e6; }
  .dropdown-panel {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 2px;
    padding: 4px 4px 4px 14px;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .mainnav .quote { display: flex; margin-top: 4px; }
  .hero-grid, .split, .order-page { grid-template-columns: 1fr; }
  .products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .voice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cta-card { flex-direction: column; align-items: flex-start; }
  .cta-btn { width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .hero { min-height: auto; padding: 40px 14px 28px; background: linear-gradient(#120c18,#170f22 58%,#f8f6f1 58%); }
  .topbar-inner { padding: 8px 14px; }
  .topbar-inner p span { display: none; }
  .topbar-account span { display: none; }
  .mainnav-inner { padding: 0 14px; min-height: 64px; gap: 14px; }
  .cart-label { display: none; }
  .cart-btn { padding: 0 12px; gap: 6px; min-height: 40px; }
  .menu-toggle { width: 40px; height: 40px; }
  .mainnav .nav-menu { padding-left: 14px; padding-right: 14px; }
  .quote { width: 100%; min-height: 46px; padding: 0 16px; font-size: 14px; }
  .hero-grid { border: 1px solid rgba(255,255,255,.09); border-radius: 30px; background: linear-gradient(180deg, rgba(39,29,55,.92), rgba(18,12,24,.96)); padding: 26px 20px 20px; gap: 22px; }
  h1 { font-size: 42px; }
  .lead { font-size: 17px; }
  .actions { display: grid; }
  .btn { width: 100%; }
  .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
  .stats div { border-radius: 18px; background: rgba(255,255,255,.07); padding: 14px 10px; }
  .stats strong { font-size: 20px; }
  .stats span { font-size: 11px; }
  .player-card { border-radius: 24px; background: rgba(255,255,255,.08); padding: 20px; }
  .process-card { border-radius: 24px; padding: 14px; }
  .process-wave { height: 118px; border-radius: 20px; gap: 6px; }
  .process-step { padding: 12px; grid-template-columns: 38px 1fr; }
  .process-step h2 { font-size: 15px; }
  .process-step p { font-size: 13px; }
  .process-footer { min-height: 72px; padding: 16px; }
  .wave { height: 78px; }
  .section, .split { padding: 58px 14px; }
  .voices-section { padding: 58px 14px; }
  .voices-header { text-align: left; margin-bottom: 26px; }
  .voice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .voice-photo { border-radius: 18px; }
  .voice-card h3 { font-size: 15px; }
  .products { grid-template-columns: 1fr; }
  .product { border-radius: 24px; overflow: hidden; box-shadow: 0 18px 46px rgba(15,14,22,.1); }
  .product h3, .stars, .price, .cart { margin-left: 16px; margin-right: 16px; }
  .cart { margin-bottom: 16px; min-height: 52px; }
  .split { margin-left: 14px; margin-right: 14px; border-radius: 26px; background: white; box-shadow: 0 16px 44px rgba(15,14,22,.08); }
  .cta { padding-left: 14px; padding-right: 14px; }
  .cta-card { border-radius: 24px; padding: 34px 22px; text-align: left; }
  .cta-btn { justify-content: center; }
  .footer { margin-top: 64px; padding: 44px 20px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; padding-bottom: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; padding-top: 18px; }
  .order-nav { flex-direction: column; align-items: flex-start; gap: 14px; }
  .soundcloud { grid-template-columns: 64px 40px 1fr; }
  .cols, .base-price { grid-template-columns: 1fr; }
  .checkout { flex-direction: column; align-items: stretch; }
}

/* Palette violette/orange pour la carte de droite du hero */
.process-card {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 179, 60, .12), transparent 30%),
    linear-gradient(180deg, #2a1f3c, #1b1428);
  border: 1px solid #44325f;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .32);
  color: #fff8ef;
}
.process-window strong {
  color: #fff8ef;
}
.process-wave {
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 179, 60, .14), transparent 34%),
    linear-gradient(135deg, #281d39, #21162f);
  border: 1px solid rgba(255, 255, 255, .08);
}
.process-wave span {
  background: linear-gradient(#ffb33c, #ff695d);
  box-shadow: 0 0 18px rgba(255, 179, 60, .24);
}
.process-step {
  background: rgba(255, 255, 255, .055);
  border-color: rgba(255, 255, 255, .09);
}
.process-step > span {
  background: rgba(255, 255, 255, .1);
  color: #fff8ef;
}
.process-step.active > span {
  background: #ffb33c;
  color: #120c18;
}
.process-step h2 {
  color: #fff8ef;
}
.process-step p {
  color: #cdbff2;
}
.process-footer {
  background: #120c18;
  border: 1px solid rgba(255, 255, 255, .08);
}
.process-footer span {
  color: #cdbff2;
}
.process-footer a {
  color: #ffb33c;
}

/* Identite Studio Jingles: bleu, argent et noir */
:root {
  --sj-blue: #168dff;
  --sj-blue-deep: #064ad8;
  --sj-cyan: #35c8ff;
  --sj-silver: #f4f7fb;
  --sj-metal: #b7c4d4;
  --sj-black: #03070d;
}
.logo-brand {
  gap: 10px;
}
.logo-brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(22, 141, 255, .28);
}
.logo-brand .brand-wordmark {
  width: clamp(170px, 18vw, 245px);
  height: auto;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}
.logo-brand > span {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: #f4f7fb;
}
.mainnav .logo-brand > span,
.order-brand.logo-brand > span {
  color: #101827;
}
.brand strong,
.logo-brand strong {
  color: var(--sj-blue);
}
.mainnav .brand span {
  box-shadow: none;
}
.topbar,
.hero,
.footer {
  background:
    radial-gradient(circle at 82% 18%, rgba(22, 141, 255, .22), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(53, 200, 255, .12), transparent 28%),
    #03070d;
}
.topbar-icon,
.live-dot,
.eyebrow,
.brand strong,
.footer-col a:hover,
.footer::before {
  color: var(--sj-cyan);
}
.quote,
.primary,
.cart-count {
  background: linear-gradient(135deg, var(--sj-cyan), var(--sj-blue-deep));
  color: white;
}
.quote:hover,
.primary:hover {
  background: linear-gradient(135deg, #73dcff, var(--sj-blue));
}
.lead,
.stats span,
.footer-brand p,
.footer-col a,
.footer-bottom,
.process-step p {
  color: #b8d2f0;
}
.player-card,
.process-card,
.cta-card {
  background:
    radial-gradient(circle at 82% 12%, rgba(53, 200, 255, .16), transparent 30%),
    linear-gradient(180deg, #0c172a, #060b16);
  border-color: rgba(53, 200, 255, .22);
}
.process-wave {
  background:
    radial-gradient(circle at 50% 46%, rgba(53, 200, 255, .16), transparent 34%),
    linear-gradient(135deg, #071226, #0d1d3b);
  border-color: rgba(53, 200, 255, .14);
}
.wave i,
.process-wave span {
  background: linear-gradient(#f4f7fb, #35c8ff 46%, #064ad8);
  box-shadow: 0 0 18px rgba(53, 200, 255, .34);
}
.process-step.active > span {
  background: linear-gradient(135deg, var(--sj-cyan), var(--sj-blue-deep));
  color: white;
}
.process-footer a {
  color: var(--sj-cyan);
}
.cart {
  color: #dff5ff;
  background: #071226;
}
.cart:hover {
  background: #0b1f40;
}
.voice-card:hover .voice-photo {
  border-color: var(--sj-cyan);
}
.voice-card h3 span {
  background: #e8f5ff;
  color: var(--sj-blue);
}
.hero-logo {
  display: block;
  width: min(210px, 46vw);
  margin: 0 0 22px;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .36), 0 0 34px rgba(22, 141, 255, .24);
}
@media (max-width: 900px) {
  .logo-brand img {
    width: 42px;
    height: 42px;
  }
  .logo-brand .brand-wordmark {
    width: 190px;
    height: auto;
  }
}

.brand.logo-brand .brand-wordmark {
  width: clamp(170px, 18vw, 245px);
  height: auto;
  max-height: 64px;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}
@media (max-width: 560px) {
  .brand.logo-brand .brand-wordmark {
    width: 150px;
    max-height: 48px;
  }
}

/* Navigation professionnelle Studio Jingles */
.mainnav-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}
.mainnav .nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.mainnav .nav-links {
  flex: 0 1 auto;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(18px, 2vw, 30px);
  white-space: nowrap;
}
.mainnav .nav-links > a,
.mainnav .nav-dropdown-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.mainnav .nav-links > a {
  color: #273044;
}
.mainnav .nav-links > a:hover,
.mainnav .nav-dropdown-toggle:hover {
  color: var(--sj-blue);
}
.mainnav .quote {
  display: inline-flex;
  min-height: 42px;
  margin-left: 8px;
  padding: 0 18px;
  font-size: 14px;
}
.mainnav-actions {
  justify-content: flex-end;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #dce8f8;
  border-radius: 999px;
  color: #0b1f40;
  font-size: 14px;
  font-weight: 900;
  background: #f7fbff;
}
.contact-btn:hover {
  border-color: var(--sj-cyan);
  color: var(--sj-blue);
}
.cart-btn {
  background: #061226;
}
.cart-btn:hover {
  background: #0b1f40;
}

@media (max-width: 1100px) {
  .mainnav-inner {
    gap: 18px;
  }
  .mainnav .nav-links {
    gap: 16px;
    font-size: 13px;
  }
  .mainnav .quote {
    padding: 0 14px;
  }
  .contact-btn {
    display: none;
  }
}

@media (max-width: 940px) {
  .mainnav-inner {
    display: flex;
  }
  .mainnav .nav-menu {
    align-items: stretch;
    justify-content: flex-start;
  }
  .mainnav .nav-links {
    align-items: stretch;
    flex-wrap: nowrap;
    white-space: normal;
  }
}
@media (max-width: 560px) {
  .hero-logo { width: min(230px, 70vw); }
  .logo-brand img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  .logo-brand .brand-wordmark {
    width: 150px;
    height: auto;
    border-radius: 0;
  }
  .hero {
    background:
      radial-gradient(circle at 82% 12%, rgba(22, 141, 255, .25), transparent 28%),
      linear-gradient(#03070d, #071226 58%, #f8f6f1 58%);
  }
}

/* Correction finale du header: alignement net et dimensions stables */
.mainnav {
  background: #fffdf9;
}
.mainnav-inner {
  max-width: 1180px;
  min-height: 74px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) auto;
  gap: 24px;
}
.mainnav .brand.logo-brand {
  min-width: 0;
  overflow: hidden;
}
.mainnav .brand.logo-brand .brand-wordmark {
  width: 252px;
  max-width: 252px;
  max-height: 52px;
  display: block;
  object-fit: contain;
  object-position: left center;
}
.mainnav .nav-menu {
  min-width: 0;
  justify-content: center;
}
.mainnav .nav-links {
  gap: 24px;
  font-size: 14px;
}
.mainnav .quote {
  min-width: 92px;
  min-height: 46px;
  margin-left: 22px;
  padding: 0 18px;
  border-radius: 999px;
  line-height: 1.15;
  text-align: center;
}
.mainnav-actions {
  gap: 10px;
}
.contact-btn {
  min-width: 98px;
  min-height: 46px;
  padding: 0 18px;
  background: #f2f8ff;
}
.cart-btn {
  min-width: 138px;
  min-height: 46px;
  padding: 0 18px;
}

@media (max-width: 1180px) {
  .mainnav-inner {
    grid-template-columns: 240px minmax(0, 1fr) auto;
    gap: 18px;
  }
  .mainnav .brand.logo-brand .brand-wordmark {
    width: 218px;
    max-width: 218px;
  }
  .mainnav .nav-links {
    gap: 18px;
    font-size: 13px;
  }
  .mainnav .quote {
    min-width: 86px;
    margin-left: 14px;
  }
  .contact-btn {
    display: none;
  }
}

@media (max-width: 940px) {
  .mainnav-inner {
    display: flex;
  }
  .mainnav .brand.logo-brand .brand-wordmark {
    width: 196px;
    max-width: 196px;
  }
}

@media (max-width: 560px) {
  .mainnav .brand.logo-brand .brand-wordmark {
    width: 168px;
    max-width: 168px;
    max-height: 42px;
  }
  .cart-btn {
    min-width: 0;
  }
}

/* Correction mobile: le menu reste ferme tant que le hamburger n'est pas active */
@media (max-width: 900px) {
  .mainnav-inner {
    position: relative;
  }

  .mainnav .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 20;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 20px 22px;
    background: #fffdf9;
    border-top: 1px solid #ece5d6;
    box-shadow: 0 18px 30px rgba(6, 18, 38, .1);
  }

  .mainnav .nav-menu.is-open {
    display: flex;
  }

  .mainnav .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    white-space: normal;
  }

  .mainnav .nav-links > a,
  .mainnav .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 11px 0;
  }

  .mainnav .quote {
    width: 100%;
    margin: 4px 0 0;
  }
}

/* Finition menu desktop: logo, liens et actions bien alignes */
@media (min-width: 901px) {
  .mainnav {
    background: #fffdf9;
  }

  .mainnav-inner {
    max-width: 1240px;
    min-height: 74px;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
  }

  .mainnav .brand.logo-brand {
    display: flex;
    align-items: center;
    overflow: visible;
  }

  .mainnav .brand.logo-brand .brand-wordmark {
    width: 238px;
    max-width: 238px;
    max-height: 48px;
  }

  .mainnav .nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    gap: 20px;
  }

  .mainnav .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(18px, 2vw, 30px);
    min-width: 0;
    color: #17223a;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
  }

  .mainnav .nav-links > a,
  .mainnav .nav-dropdown-toggle {
    min-height: 42px;
    padding: 0;
    color: #17223a;
  }

  .mainnav .quote {
    min-width: 98px;
    min-height: 46px;
    margin-left: 0;
    padding: 0 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #35c3f4, #1557df);
    box-shadow: none;
  }

  .mainnav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
  }

  .contact-btn,
  .cart-btn {
    min-height: 46px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .contact-btn {
    min-width: 96px;
    padding: 0 18px;
    background: #f2f8ff;
  }

  .cart-btn {
    min-width: 138px;
    padding: 0 18px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .mainnav-inner {
    grid-template-columns: 230px minmax(0, 1fr) auto;
    gap: 18px;
    padding: 0 22px;
  }

  .mainnav .brand.logo-brand .brand-wordmark {
    width: 210px;
    max-width: 210px;
  }

  .mainnav .nav-links {
    gap: 18px;
    font-size: 13.5px;
  }

  .contact-btn {
    display: none;
  }
}

@media (min-width: 901px) and (max-width: 1040px) {
  .mainnav-inner {
    grid-template-columns: 210px minmax(0, 1fr) auto;
    gap: 14px;
  }

  .mainnav .brand.logo-brand .brand-wordmark {
    width: 190px;
    max-width: 190px;
  }

  .mainnav .nav-links {
    gap: 14px;
    font-size: 13px;
  }

  .mainnav .quote {
    min-width: 82px;
    padding: 0 16px;
  }

  .cart-btn {
    min-width: 118px;
    padding: 0 14px;
  }
}

/* Menu visible pendant le scroll */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .mainnav {
  position: relative;
  top: auto;
  z-index: 1;
  box-shadow: 0 8px 22px rgba(6, 18, 38, .08);
}

.site-header .topbar,
.site-header .mainnav,
.site-header .mainnav-inner,
.site-header .brand-wordmark,
.site-header .quote,
.site-header .cart-btn,
.site-header .contact-btn {
  transition: min-height .2s ease, padding .2s ease, opacity .2s ease, transform .2s ease, box-shadow .2s ease, max-height .2s ease, width .2s ease;
}

.site-header.is-compact .topbar {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
}

.site-header.is-compact .mainnav {
  box-shadow: 0 12px 30px rgba(6, 18, 38, .16);
}

.site-header.is-compact .mainnav-inner {
  min-height: 58px;
}

.site-header.is-compact .brand-wordmark {
  transform: translateY(-1px);
}

@media (min-width: 901px) {
  .site-header.is-compact .mainnav-inner {
    min-height: 60px;
  }

  .site-header.is-compact .mainnav .brand.logo-brand .brand-wordmark {
    width: 188px;
    max-width: 188px;
    max-height: 38px;
  }

  .site-header.is-compact .mainnav .nav-links > a,
  .site-header.is-compact .mainnav .nav-dropdown-toggle {
    min-height: 36px;
  }

  .site-header.is-compact .mainnav .quote,
  .site-header.is-compact .contact-btn,
  .site-header.is-compact .cart-btn {
    min-height: 38px;
  }
}

@media (max-width: 900px) {
  .site-header.is-compact .mainnav-inner {
    min-height: 56px;
  }

  .site-header.is-compact .mainnav .brand.logo-brand .brand-wordmark {
    width: 150px;
    max-width: 150px;
    max-height: 36px;
  }

  .site-header.is-compact .cart-btn,
  .site-header.is-compact .menu-toggle {
    min-height: 38px;
    height: 38px;
  }
}

.order-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: min-height .2s ease, padding .2s ease, box-shadow .2s ease;
}

.order-nav .brand-wordmark,
.order-nav .back {
  transition: width .2s ease, max-height .2s ease, min-height .2s ease, padding .2s ease, transform .2s ease;
}

.order-nav.is-compact {
  box-shadow: 0 12px 30px rgba(6, 18, 38, .14);
}

.order-nav.is-compact .brand-wordmark {
  width: 180px;
  max-width: 180px;
  max-height: 38px;
}

.order-nav.is-compact .back {
  min-height: 38px;
  padding: 0 16px;
}

/* Espace client */
.client-body,
.client-dashboard-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 8%, rgba(47, 103, 235, .1), transparent 26%),
    linear-gradient(135deg, #f8fafc, #eef3f8);
  color: #091229;
}

.client-auth {
  min-height: calc(100vh - 220px);
  display: grid;
  place-items: center;
  padding: 72px 18px;
}

.client-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.client-logo img {
  width: 210px;
  max-width: 72vw;
  height: auto;
  display: block;
}

.client-auth .client-logo {
  margin-bottom: 18px;
}

.auth-card {
  width: min(520px, 100%);
  padding: clamp(30px, 5vw, 42px);
  background: rgba(255, 255, 255, .92);
  border: 1px solid #dde5ef;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(9, 18, 41, .12);
}

.auth-card.register-card {
  width: min(820px, 100%);
}

.client-eyebrow {
  margin: 0 0 14px;
  color: #1f63ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.auth-card h1,
.dashboard-hero h1 {
  margin: 0;
  color: #091229;
  font-size: clamp(42px, 6vw, 60px);
  line-height: .95;
  letter-spacing: 0;
}

.auth-intro,
.dashboard-hero p {
  max-width: 680px;
  margin: 22px 0 30px;
  color: #60708c;
  font-size: 18px;
  line-height: 1.55;
}

.client-form {
  display: grid;
  gap: 18px;
}

.client-form label {
  display: grid;
  gap: 9px;
  color: #071126;
  font-size: 14px;
  font-weight: 900;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-row.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.client-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: #071126;
  background: #eaf2ff;
  border: 1px solid #d5e0ef;
  border-radius: 14px;
  outline: 0;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.client-form input:focus {
  background: #fff;
  border-color: #2f67eb;
  box-shadow: 0 0 0 4px rgba(47, 103, 235, .12);
}

.client-form button {
  min-height: 54px;
  margin-top: 2px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #3a77f5, #1d57e8);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(47, 103, 235, .28);
}

.auth-switch {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid #e4eaf2;
  color: #60708c;
  font-weight: 800;
  text-align: center;
}

.auth-switch a {
  color: #1557e8;
  font-weight: 900;
}

.form-alert {
  margin: 0 0 18px;
  padding: 13px 15px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
}

.form-alert.error {
  color: #8a1f1f;
  background: #fff0f0;
  border: 1px solid #ffd0d0;
}

.form-alert.success {
  color: #12603c;
  background: #edfff6;
  border: 1px solid #bcebd3;
}

.dashboard-shell {
  width: min(1136px, calc(100% - 36px));
  margin: 0 auto;
  padding: 58px 0 64px;
}

.dashboard-logo {
  margin-bottom: 28px;
}

.dashboard-hero {
  padding-top: 4px;
}

.dashboard-hero h1 {
  max-width: 860px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.dashboard-card {
  min-height: 222px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: rgba(255, 255, 255, .94);
  border: 1px solid #dde5ef;
  border-radius: 26px;
  box-shadow: 0 20px 58px rgba(9, 18, 41, .08);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.dashboard-card:hover {
  transform: translateY(-3px);
  border-color: #bcd3ff;
  box-shadow: 0 24px 68px rgba(47, 103, 235, .16);
}

.dashboard-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #2f67eb;
  background: #dceaff;
}

.dashboard-card strong {
  margin-bottom: 14px;
  color: #071126;
  font-size: 22px;
  line-height: 1.1;
}

.dashboard-card p {
  margin: 0;
  color: #60708c;
  font-size: 15px;
  line-height: 1.55;
}

.orders-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 58px;
}

.orders-hero {
  margin-bottom: 34px;
}

.orders-hero .client-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.orders-hero h1 {
  margin: 0;
  color: #091229;
  font-size: clamp(48px, 6vw, 64px);
  line-height: .95;
  letter-spacing: 0;
}

.orders-hero > p:not(.client-eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: #60708c;
  font-size: 18px;
  line-height: 1.55;
}

.orders-panel {
  min-height: 380px;
  display: grid;
  place-items: center;
  padding: clamp(34px, 6vw, 70px);
  background: rgba(255, 255, 255, .94);
  border: 1px solid #dde5ef;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(9, 18, 41, .09);
}

.orders-empty {
  display: grid;
  justify-items: center;
  text-align: center;
}

.orders-empty-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #2f67eb;
  background: #dceaff;
}

.orders-empty h2 {
  margin: 28px 0 12px;
  color: #071126;
  font-size: 29px;
  line-height: 1.1;
}

.orders-empty p {
  margin: 0;
  color: #60708c;
  font-size: 17px;
}

.orders-btn {
  min-height: 48px;
  margin-top: 26px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #3a77f5, #1d57e8);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(47, 103, 235, .25);
}

.orders-list {
  width: 100%;
  display: grid;
  gap: 14px;
}

.order-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid #e0e8f2;
  border-radius: 18px;
  background: #fbfdff;
}

.order-row strong,
.order-row span {
  display: block;
}

.order-row strong {
  color: #071126;
  font-size: 17px;
}

.order-row span,
.order-row em {
  color: #60708c;
  font-style: normal;
  font-size: 14px;
}

.order-row b {
  color: #091229;
}

.profile-shell {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 58px;
}

.profile-panel {
  padding: clamp(26px, 5vw, 42px);
  background: rgba(255, 255, 255, .94);
  border: 1px solid #dde5ef;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(9, 18, 41, .09);
}

.profile-summary {
  margin-bottom: 28px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 22px;
  background: #f4f8ff;
  border: 1px solid #e0e9f8;
}

.profile-avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #35c3f4, #1557df);
  font-size: 19px;
  font-weight: 900;
}

.profile-summary strong,
.profile-summary p {
  display: block;
  margin: 0;
}

.profile-summary strong {
  color: #071126;
  font-size: 20px;
}

.profile-summary p {
  margin-top: 4px;
  color: #60708c;
}

.profile-form button {
  width: fit-content;
  min-width: 260px;
  padding: 0 26px;
}

.password-box {
  margin-top: 4px;
  padding: 22px;
  border: 1px solid #e0e8f2;
  border-radius: 22px;
  background: #fbfdff;
}

.password-box h2 {
  margin: 0 0 8px;
  color: #071126;
  font-size: 22px;
}

.password-box p {
  margin: 0 0 18px;
  color: #60708c;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .auth-card {
    border-radius: 24px;
    padding: 26px 20px;
  }

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

  .auth-card h1,
  .dashboard-hero h1 {
    font-size: 42px;
  }

  .dashboard-card {
    min-height: 180px;
  }

  .orders-shell {
    width: min(100% - 28px, 1180px);
    padding: 38px 0 44px;
  }

  .orders-panel {
    min-height: 340px;
    border-radius: 24px;
  }

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

  .profile-shell {
    width: min(100% - 28px, 980px);
    padding: 38px 0 44px;
  }

  .profile-panel {
    border-radius: 24px;
  }

  .profile-summary {
    align-items: flex-start;
  }

  .profile-form button {
    width: 100%;
    min-width: 0;
  }
}
