/* ============================================================
   BAZIIK — Stylesheet
   Colors: Ink #18232F · Sand #FFF5E8 · Aqua #6AD5E9 · Orange #FEB435
   Font: Inter
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* --- Variables --- */
:root {
  --ink:    #18232F;
  --sand:   #FFF5E8;
  --aqua:   #6AD5E9;
  --orange: #FEB435;
  --coral:  #E8705A;
  --white:  #FFFFFF;

  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --radius-full: 999px;

  --shadow-neo: 4px 4px 0 var(--ink);
  --shadow-neo-lg: 6px 6px 0 var(--ink);

  --nav-h: 68px;
  --max-w: 1160px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--sand);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* --- Layout --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 6rem 0; }

/* --- Typography --- */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.1; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; font-weight: 700; }
p  { line-height: 1.7; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(254,180,53,0.15);
  border: 2px solid var(--orange);
  border-radius: var(--radius-full);
  padding: 0.3rem 1rem;
  margin-bottom: 1rem;
}
.section-title { margin-bottom: 1rem; }
.section-desc  { font-size: 1.1rem; opacity: 0.65; max-width: 580px; line-height: 1.75; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  border: 3px solid var(--ink);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  box-shadow: var(--shadow-neo);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn:hover  { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(1px,1px);   box-shadow: 2px 2px 0 var(--ink); }

.btn-primary  { background: var(--orange); color: var(--ink); }
.btn-dark     { background: var(--ink);    color: var(--white); }
.btn-white    { background: var(--white);  color: var(--ink); }
.btn-outline  { background: transparent;  color: var(--ink); }
.btn-lg       { padding: 1.1rem 2.25rem; font-size: 1.125rem; border-width: 3px; }

/* ============================================================
   STORE BADGES
   ============================================================ */
.store-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: var(--ink);
  color: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 0.7rem 1.25rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  box-shadow: var(--shadow-neo);
}
.store-badge:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.store-badge svg   { flex-shrink: 0; }
.store-text-top    { font-size: 0.65rem; font-weight: 400; opacity: 0.65; display: block; line-height: 1; }
.store-text-main   { font-size: 1rem; font-weight: 800; display: block; line-height: 1.2; margin-top: 2px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: var(--ink);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo-img {
  display: block;
  width: 100%;
  height: auto;
}
.brand-mark-nav {
  width: 136px;
  height: 56px;
  overflow: hidden;
  border-radius: 16px;
  filter: drop-shadow(0 3px 0 rgba(24,35,47,0.45));
}
.brand-mark-nav .brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--white); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--ink);
  padding: 2rem 1.5rem;
  border-bottom: 3px solid var(--orange);
  z-index: 199;
  flex-direction: column;
  gap: 1.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  font-size: 1.1rem;
}
.nav-mobile a:hover { color: var(--orange); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--aqua);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 100px;
  background: var(--ink);
  clip-path: ellipse(60% 100% at 50% 100%);
  pointer-events: none;
}

/* Decorative blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  pointer-events: none;
}
.hero-blob-1 {
  width: 400px; height: 400px;
  background: var(--orange);
  top: -100px; right: -80px;
}
.hero-blob-2 {
  width: 300px; height: 300px;
  background: var(--white);
  bottom: 60px; left: -60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0 7rem;
  position: relative;
  z-index: 1;
}

/* Real Baziik logo */
.logo-cloud {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--aqua);
  border: 4px solid var(--ink);
  border-radius: 34px;
  padding: 0;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-neo-lg);
  overflow: hidden;
  transform: rotate(-1.5deg);
  animation: logo-float 6s ease-in-out infinite;
}
.hero-logo-img {
  width: min(360px, 72vw);
  height: auto;
}
@keyframes logo-float {
  0%,100% { transform: rotate(-1.5deg) translateY(0); }
  50%     { transform: rotate(1deg) translateY(-8px); }
}

.hero-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--ink);
  opacity: 0.75;
  margin-bottom: 2.5rem;
  max-width: 460px;
  line-height: 1.75;
}
.hero-stores { margin-bottom: 1.5rem; }
.hero-web-link {
  font-size: 0.85rem;
  color: var(--ink);
  opacity: 0.55;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-web-link a { text-decoration: underline; opacity: 1; font-weight: 600; }

/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-wrap {
  animation: float 5s ease-in-out infinite;
  position: relative;
}
@keyframes float {
  0%,100% { transform: translateY(0px) rotate(-2deg); }
  50%      { transform: translateY(-18px) rotate(-2deg); }
}
.phone {
  width: 260px;
  background: var(--ink);
  border-radius: 44px;
  border: 6px solid var(--ink);
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(24,35,47,0.35),
    inset 0 0 0 2px rgba(255,255,255,0.08);
  position: relative;
}
.phone img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
}
.phone-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 72px; height: 9px;
  background: var(--ink);
  border-radius: 8px;
  z-index: 5;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--ink);
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  overflow: hidden;
  padding: 0.8rem 0;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 22s linear infinite;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.marquee-dot { color: var(--orange); font-size: 1.2rem; line-height: 1; }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--ink);
  padding: 4.5rem 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat {
  padding: 2rem;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
}
.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.stat-label {
  color: rgba(255,255,255,0.55);
  margin-top: 0.5rem;
  font-size: 0.95rem;
  display: block;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { background: var(--sand); }
.steps-header { max-width: 560px; margin-bottom: 4rem; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.step-card {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neo-lg);
  padding: 2.5rem 2rem 2rem;
  position: relative;
}
.step-num {
  position: absolute;
  top: -1.1rem; left: 1.75rem;
  width: 2.25rem; height: 2.25rem;
  background: var(--orange);
  border: 3px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
}
.step-emoji {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}
.step-card h3 { margin-bottom: 0.6rem; }
.step-card p  { font-size: 0.92rem; opacity: 0.65; }

/* ============================================================
   FEATURES (Pour les fans)
   ============================================================ */
.features { background: var(--white); }
.features-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}
.features-visual {
  display: flex;
  gap: 1.25rem;
  align-items: flex-end;
  justify-content: center;
}
.features-visual .phone { width: 200px; }
.features-visual .phone-secondary { transform: translateY(2rem) scale(0.92); opacity: 0.85; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  transition: background 0.2s;
}
.feature-item:hover { background: var(--sand); }
.feature-icon {
  width: 52px; height: 52px;
  background: var(--aqua);
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.feature-item h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.3rem; }
.feature-item p  { font-size: 0.88rem; opacity: 0.65; }

/* ============================================================
   AUDIENCE — ARTISTS (orange bg)
   ============================================================ */
.artists-section {
  background: var(--orange);
  padding: 6rem 0;
}
.artists-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.artists-section .section-label {
  color: var(--ink);
  background: rgba(0,0,0,0.08);
  border-color: var(--ink);
}
.artists-section h2 { color: var(--ink); }
.artists-section .section-desc { color: var(--ink); opacity: 0.7; }

.benefit-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.benefit-check {
  width: 30px; height: 30px;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-text strong { display: block; font-weight: 700; font-size: 1rem; margin-bottom: 0.2rem; }
.benefit-text span   { font-size: 0.875rem; opacity: 0.7; }

.artists-visual {
  display: flex;
  justify-content: center;
}
.artists-visual .phone { width: 240px; }

/* ============================================================
   AUDIENCE — VENUES (dark bg)
   ============================================================ */
.venues-section {
  background: var(--ink);
  padding: 6rem 0;
}
.venues-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.venues-section .section-label { color: var(--orange); background: rgba(254,180,53,0.12); border-color: var(--orange); }
.venues-section h2 { color: var(--white); }
.venues-section .section-desc { color: rgba(255,255,255,0.6); }
.venues-section .benefit-text strong { color: var(--white); }
.venues-section .benefit-text span   { color: rgba(255,255,255,0.55); }
.venues-section .benefit-check { background: var(--orange); border-color: var(--orange); color: var(--ink); }

.venues-visual {
  display: flex;
  justify-content: center;
  order: -1;
}
.venues-visual .phone { width: 240px; }

/* ============================================================
   PHONE SHOWCASE
   ============================================================ */
.showcase {
  background: var(--ink);
  padding: 6rem 0;
  border-top: 3px solid rgba(255,255,255,0.06);
}
.showcase-title {
  color: var(--white);
  text-align: center;
  margin-bottom: 4rem;
}
.showcase-subtitle {
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
  text-align: center;
  max-width: 480px;
  margin: -3rem auto 4rem;
  line-height: 1.7;
}
.showcase-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  overflow: hidden;
}
.showcase-phone { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.showcase-phone:nth-child(2) { transform: translateY(-2.5rem); }
.showcase-phone .phone { width: 220px; }
.showcase-caption {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--sand); }
.faq-header { max-width: 560px; margin-bottom: 3rem; }
.faq-list { max-width: 720px; }

.faq-item {
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  margin-bottom: 0.875rem;
  box-shadow: var(--shadow-neo);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--sand); }
.faq-chevron {
  width: 28px; height: 28px;
  background: var(--orange);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s;
  font-size: 0.75rem;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner {
  overflow: hidden;
  padding: 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink);
  opacity: 0.7;
}
.faq-item.open .faq-answer-inner { padding-bottom: 1.25rem; }

/* ============================================================
   DOWNLOAD CTA
   ============================================================ */
.download-cta {
  background: var(--orange);
  padding: 6rem 0;
  text-align: center;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}
.download-cta h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: 1rem; }
.download-cta p  { font-size: 1.1rem; opacity: 0.75; margin-bottom: 2.75rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.download-cta .store-badges { justify-content: center; }
.download-cta .store-badge {
  border-color: var(--ink);
  box-shadow: var(--shadow-neo-lg);
}
.download-cta .hero-web-link {
  margin-top: 1.5rem;
  justify-content: center;
  color: var(--ink);
  opacity: 0.6;
}

/* ============================================================
   PRESS
   ============================================================ */
.press {
  background: var(--white);
  padding: 5rem 0;
}
.press-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.press-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.press-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--sand);
  border: 2px solid rgba(24,35,47,0.12);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
}
.press-badge-icon {
  font-size: 1.5rem;
  width: 44px; height: 44px;
  background: var(--aqua);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.press-contact-card {
  background: var(--sand);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neo-lg);
  padding: 2.5rem 2rem;
  text-align: center;
}
.press-contact-card h3 { margin-bottom: 0.75rem; }
.press-contact-card p  { font-size: 0.95rem; opacity: 0.65; margin-bottom: 1.75rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.brand-mark-footer {
  width: 176px;
  margin-bottom: 1rem;
  border: 2px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.35);
}
.footer-brand p {
  font-size: 0.875rem;
  opacity: 0.45;
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.footer-col ul  { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a   { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-socials {
  display: flex;
  gap: 0.625rem;
}
.social-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.15s, color 0.15s;
  border: none;
  cursor: pointer;
}
.social-btn:hover { background: var(--orange); color: var(--ink); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   LEGAL / SECONDARY PAGES
   ============================================================ */
.page-hero {
  background: var(--aqua);
  padding: 8rem 0 4rem;
  border-bottom: 4px solid var(--ink);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p  { font-size: 1.05rem; opacity: 0.7; margin-top: 0.75rem; }

.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}
.legal-body h2 {
  font-size: 1.4rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(24,35,47,0.1);
}
.legal-body h3 { font-size: 1.1rem; margin-top: 1.75rem; margin-bottom: 0.5rem; }
.legal-body p  { margin-bottom: 1rem; font-size: 0.95rem; opacity: 0.75; }
.legal-body ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.legal-body ul li { font-size: 0.95rem; opacity: 0.75; margin-bottom: 0.4rem; list-style: disc; }
.legal-body a  { color: var(--coral); font-weight: 600; }
.legal-body a:hover { text-decoration: underline; }
.legal-notice {
  background: var(--sand);
  border: 2px solid rgba(24,35,47,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  opacity: 0.65;
  margin-top: 1.5rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: flex-start;
  padding: 4rem 1.5rem 6rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.contact-info h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.contact-info p   { font-size: 0.95rem; opacity: 0.65; margin-bottom: 2rem; }
.contact-methods  { display: flex; flex-direction: column; gap: 1rem; }
.contact-method {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--sand);
  border: 2px solid rgba(24,35,47,0.1);
  border-radius: var(--radius-md);
}
.contact-method-icon {
  font-size: 1.25rem;
  width: 42px; height: 42px;
  background: var(--aqua);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-label { font-size: 0.75rem; font-weight: 700; opacity: 0.5; letter-spacing: 1px; text-transform: uppercase; }
.contact-method-value { font-weight: 600; font-size: 0.95rem; }

.contact-form-card {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neo-lg);
  padding: 2.5rem 2rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 700; margin-bottom: 0.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(24,35,47,0.2);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--sand);
  transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--aqua); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.8rem; opacity: 0.5; margin-top: 1rem; text-align: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner      { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-sub        { margin-left: auto; margin-right: auto; }
  .hero-stores     { justify-content: center; }
  .hero-web-link   { justify-content: center; }
  .hero-visual     { order: -1; }

  .features-inner  { grid-template-columns: 1fr; gap: 3rem; }
  .features-visual { order: -1; }

  .artists-inner   { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .artists-visual  { order: -1; }
  .benefit-item    { text-align: left; }

  .venues-inner    { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .venues-visual   { order: 1; }

  .press-inner     { grid-template-columns: 1fr; gap: 3rem; }

  .footer-top      { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  .contact-grid    { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .section { padding: 4.5rem 0; }

  .nav-links   { display: none; }
  .nav-actions { display: none; }
  .nav-burger  { display: flex; }

  .logo-cloud { border-radius: 26px; }
  .hero-logo-img { width: min(300px, 82vw); }

  .steps-grid   { grid-template-columns: 1fr; }
  .stats-inner  { grid-template-columns: 1fr; gap: 1rem; }

  .showcase-phones { flex-direction: column; align-items: center; }
  .showcase-phone:nth-child(2) { transform: none; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

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

@media (max-width: 480px) {
  .store-badges { flex-direction: column; align-items: flex-start; }
  .hero-inner .store-badges { align-items: center; }
}
