/* ═══════════════════════════════════════════════════════════
   PUBDAY — Landing page pubday.fr
   ═══════════════════════════════════════════════════════════ */

:root {
  --brand: #f26e22;
  --brand-dark: #d75c14;
  --brand-soft: #fef1e6;
  --brand-glow: rgba(242, 110, 34, 0.18);

  --ink: #0c0d10;
  --ink-2: #1f2128;
  --muted: #6b7280;
  --muted-2: #9ca3af;
  --line: #e8eaed;
  --line-2: #f1f3f5;
  --bg: #fbfaf7;
  --bg-card: #ffffff;
  --success: #16a34a;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(12, 13, 16, 0.04);
  --shadow: 0 4px 16px rgba(12, 13, 16, 0.06);
  --shadow-lg: 0 12px 36px rgba(12, 13, 16, 0.08);
  --shadow-xl: 0 24px 60px rgba(12, 13, 16, 0.12);

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Fraunces', 'Inter', serif;

  --w-content: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--brand); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--brand-dark); }

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

img, video { max-width: 100%; display: block; }

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

/* ═══════ Logo ═══════ */
.logo {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
}
.logo__dot {
  position: absolute;
  width: 5px; height: 5px;
  background: #fff;
  border-radius: 50%;
  bottom: 6px; right: 6px;
}

/* ═══════ Boutons ═══════ */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  transition: transform 0.08s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
  text-align: center;
}
.btn:active { transform: scale(0.98); }
.btn:hover { color: var(--btn-fg); }
.btn--sm { height: 40px; font-size: 14px; padding: 0 16px; border-radius: 10px; }
.btn--xl {
  height: 64px;
  font-size: 17px;
  border-radius: 14px;
  padding: 0 28px;
  flex-direction: column;
  gap: 2px;
}
.btn--xl small { font-weight: 400; font-size: 12px; opacity: 0.8; }
.btn--primary {
  --btn-bg: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  box-shadow: 0 6px 20px var(--brand-glow);
}
.btn--primary:hover { box-shadow: 0 10px 30px var(--brand-glow); }
.btn--secondary {
  --btn-bg: var(--bg-card);
  --btn-fg: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--full { width: 100%; }

/* ═══════ Nav ═══════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 24px;
  background: rgba(251, 250, 247, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.nav__links { display: flex; gap: 32px; font-size: 15px; font-weight: 500; }
.nav__links a { color: var(--ink); }
.nav__links a:hover { color: var(--brand); }
.nav__cta { display: flex; gap: 10px; }

@media (max-width: 768px) {
  .nav__links { display: none; }
}

/* ═══════ Hero ═══════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 24px 100px;
  max-width: var(--w-content);
  margin: 0 auto;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(242, 110, 34, 0.18), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(242, 110, 34, 0.1), transparent 50%);
  z-index: -1;
}
.hero__badge {
  display: inline-block;
  background: var(--brand-soft);
  color: var(--brand-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 22px;
}
.hero__title em {
  font-style: italic;
  color: var(--brand);
  font-weight: 700;
}
.hero__sub {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero__sub strong { color: var(--ink); }
.hero__ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.hero__trust {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: var(--muted);
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
}
.phone {
  position: relative;
  width: 280px;
  height: 580px;
  background: #0c0d10;
  border-radius: 42px;
  padding: 14px;
  box-shadow: var(--shadow-xl), 0 0 0 8px #1f2128, inset 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
}
.phone__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 24px;
  background: #0c0d10;
  border-radius: 0 0 18px 18px;
  z-index: 2;
}
.phone video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}
.hero__floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.float {
  position: absolute;
  background: var(--bg-card);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.float--1 { top: 5%; right: -20px; animation-delay: 0s; }
.float--2 { top: 45%; left: -50px; animation-delay: 1s; }
.float--3 { bottom: 8%; right: -30px; animation-delay: 2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 40px 24px 60px; gap: 50px; }
  .phone { width: 240px; height: 500px; }
  .float { display: none; }
}

/* ═══════ Petits téléphones (≤ 480px) — polish final ═══════ */
@media (max-width: 480px) {
  /* Container & sections */
  .container { padding: 0 20px; }
  section { padding: 56px 0; }

  /* Nav */
  .nav { padding: 12px 16px; }
  .nav__cta .btn--sm { padding: 0 12px; height: 36px; font-size: 13px; }
  .nav__logo { font-size: 18px; }

  /* Hero */
  .hero { padding: 30px 20px 60px; gap: 40px; }
  .hero__title { font-size: 42px; line-height: 1.05; }
  .hero__sub { font-size: 16px; line-height: 1.5; margin-bottom: 26px; }
  .hero__ctas { flex-direction: column; gap: 10px; width: 100%; }
  .hero__ctas .btn { width: 100%; }
  .hero__trust { gap: 12px; font-size: 13px; }
  .phone { width: 220px; height: 460px; padding: 12px; border-radius: 36px; }
  .phone video { border-radius: 24px; }

  /* Proof bar */
  .proof-bar { padding: 22px 16px; }
  .proof-bar p { font-size: 12px; margin-bottom: 12px; }
  .logos { gap: 16px 22px; font-size: 14px; }

  /* Section titles */
  .section-title { font-size: clamp(26px, 7.5vw, 44px); margin-bottom: 32px; }

  /* Problem cards */
  .problem-card { padding: 22px 18px; }
  .problem-card__icon { font-size: 32px; }
  .problem-card h3 { font-size: 19px; }

  /* Solution */
  .how-step { padding: 28px 22px 24px; }
  .how-step__icon { font-size: 42px; }
  .how-step h3 { font-size: 20px; }

  /* Demo */
  .demo__beforeafter { gap: 8px; padding: 12px; }
  .demo__photo img { width: 56px; height: 100px; }
  .demo__result span:first-child { font-size: 46px; }
  .demo__arrow { font-size: 24px; }
  .demo__details { grid-template-columns: 1fr; gap: 8px; }
  .demo__details > div { padding: 10px 12px; font-size: 13px; }
  .demo__lead { font-size: 16px; }
  .demo__caption { font-size: 13px; padding: 12px; }
  .demo__hashtags { font-size: 12px; }

  /* Features */
  .feature { padding: 22px 18px; }
  .feature__icon { font-size: 30px; }
  .feature h3 { font-size: 18px; }
  .feature p { font-size: 13px; }

  /* Testimonials */
  .testimonial { padding: 24px 20px; }
  .testimonial p { font-size: 16px; line-height: 1.5; }
  .testimonial__avatar { width: 38px; height: 38px; }

  /* Pricing */
  .pricing-cards { gap: 18px; }
  .plan { padding: 22px 20px; }
  .plan__price { font-size: 40px; }
  .plan__list li { padding: 8px 0; font-size: 13px; }
  .plan--featured { transform: none; }

  /* FAQ */
  .faq summary { padding: 16px 18px; padding-right: 44px; font-size: 15px; }
  .faq summary::after { right: 18px; }
  .faq details > p { padding: 0 18px 16px; font-size: 14px; }

  /* CTA final */
  .cta-final h2 { font-size: 38px; }
  .cta-final p { font-size: 16px; }

  /* Footer */
  .footer { padding: 40px 0 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__col:first-child { grid-column: span 1; }
  .footer__bottom { margin-top: 32px; }

  /* Boutons globaux */
  .btn--xl { height: 58px; font-size: 16px; padding: 0 22px; }
  .btn { font-size: 14px; }
}

/* ═══════ Très petits téléphones (≤ 360px) ═══════ */
@media (max-width: 360px) {
  .hero__title { font-size: 36px; }
  .phone { width: 200px; height: 420px; }
  .section-title { font-size: 26px; }
  .plan__price { font-size: 36px; }
  .cta-final h2 { font-size: 32px; }
}

/* ═══════ Proof bar ═══════ */
.proof-bar {
  background: var(--ink);
  color: #fff;
  padding: 30px 24px;
  text-align: center;
}
.proof-bar p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 14px;
}
.logos {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
}
.logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: #fff;
  transition: background 0.2s, border-color 0.2s;
}
.logo-pill:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
}
.logo-pill svg {
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .logos { gap: 8px; }
  .logo-pill { padding: 6px 10px; font-size: 12px; }
  .logo-pill svg { width: 16px; height: 16px; }
}

/* ═══════ Section commons ═══════ */
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 50px;
  text-align: center;
}
.section-title em {
  font-style: italic;
  color: var(--brand);
  font-weight: 700;
}

section { padding: 100px 0; }
@media (max-width: 768px) { section { padding: 60px 0; } }

/* ═══════ Problem ═══════ */
.problem {
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.problem-card {
  background: var(--bg);
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line-2);
}
.problem-card__icon { display: block; font-size: 36px; margin-bottom: 14px; }
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 8px;
}
.problem-card p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ═══════ How it works ═══════ */
.how { background: var(--bg); }
.how .eyebrow, .how .section-title { text-align: center; }
.how .eyebrow { display: block; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}
.how-step {
  background: var(--bg-card);
  padding: 36px 28px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  border: 1px solid var(--line-2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.how-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.how-step--featured {
  background: linear-gradient(165deg, #1f2128 0%, #0c0d10 100%);
  color: #fff;
  border: 0;
  box-shadow: 0 16px 40px rgba(12, 13, 16, 0.18), 0 0 0 4px var(--brand-glow);
  transform: scale(1.04);
}
.how-step--featured:hover { transform: scale(1.04) translateY(-4px); }
.how-step--featured h3 { color: #fff; }
.how-step--featured p { color: rgba(255,255,255,0.75); }
.how-step--featured strong { color: var(--brand); }

.how-step__num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 16px;
  box-shadow: 0 4px 12px var(--brand-glow);
}
.how-step__icon { display: block; font-size: 48px; margin-bottom: 14px; }
.how-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.how-step p { font-size: 15px; color: var(--muted); line-height: 1.6; }

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

/* ═══════ Demo ═══════ */
.demo { background: var(--bg-card); }
.demo__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.demo .eyebrow { display: block; }
.demo__text .section-title { text-align: left; margin-bottom: 22px; }
.demo__lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
}
.demo__lead strong { color: var(--ink); }

.demo__beforeafter {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 22px;
}
.demo__photo, .demo__result {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.demo__photo img {
  width: 80px;
  height: 142px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}
.demo__result span:first-child {
  font-size: 60px;
  margin-bottom: 8px;
}
.demo__label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.demo__arrow {
  font-size: 30px;
  color: var(--brand);
  font-weight: 700;
}

.demo__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-size: 14px;
}
.demo__details > div {
  padding: 12px 14px;
  background: var(--bg);
  border-radius: 10px;
}

.demo__video {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
}
.demo__video video {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  background: #000;
  object-fit: cover;
}
.demo__caption {
  background: var(--bg);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--ink);
  margin-top: 14px;
  border-left: 3px solid var(--brand);
}
.demo__hashtags {
  font-size: 13px;
  color: var(--brand);
  margin-top: 8px;
  text-align: center;
  font-weight: 600;
}

@media (max-width: 900px) {
  .demo__container { grid-template-columns: 1fr; gap: 40px; }
  .demo__text .section-title { text-align: center; }
}

/* ═══════ Features ═══════ */
.features { background: var(--bg); }
.features .eyebrow, .features .section-title { display: block; text-align: center; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.feature {
  background: var(--bg-card);
  padding: 28px 24px;
  border-radius: var(--radius);
  text-align: left;
  border: 1px solid var(--line-2);
  transition: border-color 0.2s, transform 0.2s;
}
.feature:hover { border-color: var(--brand-glow); transform: translateY(-2px); }
.feature__icon { display: inline-block; font-size: 34px; margin-bottom: 12px; }
.feature h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
}
.feature p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ═══════ Testimonials ═══════ */
.testimonials { background: var(--bg-card); }
.testimonials .eyebrow, .testimonials .section-title { display: block; text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.testimonial {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1px solid var(--line-2);
}
.testimonial--featured {
  background: linear-gradient(165deg, #1f2128, #0c0d10);
  color: #fff;
  border: 0;
  box-shadow: var(--shadow-lg);
}
.testimonial p {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  font-style: italic;
  margin-bottom: 22px;
}
.testimonial--featured p { color: #fff; }
.testimonial footer { display: flex; gap: 12px; align-items: center; }
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 14px;
}
.testimonial footer strong {
  font-size: 15px;
  display: block;
}
.testimonial footer small {
  font-size: 13px;
  color: var(--muted);
}
.testimonial--featured footer small { color: rgba(255,255,255,0.6); }

.testimonials-disclaimer {
  text-align: center;
  margin-top: 22px;
  font-size: 12px;
  color: var(--muted-2);
  font-style: italic;
}

/* ═══════ Pricing ═══════ */
.pricing { background: var(--bg); }
.pricing .eyebrow, .pricing .section-title { display: block; text-align: center; }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 26px;
}
.plan {
  background: var(--bg-card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px var(--brand-glow);
}
.plan h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
}
.plan__price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 8px 0 4px;
  line-height: 1;
}
.plan__price small {
  font-size: 17px;
  color: var(--muted);
  font-weight: 500;
}
.plan__sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}
.plan__list {
  list-style: none;
  margin-bottom: 22px;
  flex: 1;
}
.plan__list li {
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--line-2);
  line-height: 1.5;
}
.plan__list li:last-child { border-bottom: 0; }
.plan__list strong { color: var(--brand-dark); }

.plan--featured {
  background: linear-gradient(165deg, #1f2128 0%, #0c0d10 100%);
  color: #fff;
  border: 0;
  box-shadow: 0 16px 40px rgba(12, 13, 16, 0.18), 0 0 0 4px var(--brand-glow);
  transform: scale(1.05);
}
.plan--featured .plan__price { color: #fff; }
.plan--featured .plan__price small,
.plan--featured .plan__sub { color: rgba(255,255,255,0.6); }
.plan--featured .plan__list li { border-bottom-color: rgba(255,255,255,0.12); }
.plan--featured .plan__list strong { color: var(--brand); }

.pricing-essai {
  text-align: center;
  font-size: 16px;
  color: var(--muted);
  background: var(--brand-soft);
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--brand-glow);
}
.pricing-essai strong { color: var(--brand-dark); }

@media (max-width: 900px) {
  .pricing-cards { grid-template-columns: 1fr; gap: 26px; }
  .plan--featured { transform: none; }
}

/* ═══════ FAQ ═══════ */
.faq { background: var(--bg-card); }
.faq .eyebrow, .faq .section-title { display: block; text-align: center; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.15s;
}
.faq details[open] { border-color: var(--brand-glow); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 16px;
  user-select: none;
  position: relative;
  padding-right: 50px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--muted);
}
.faq details[open] summary::after { content: '−'; }
.faq details p {
  padding: 0 22px 18px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}
.faq details p strong { color: var(--ink); }

/* ═══════ CTA final ═══════ */
.cta-final {
  background: linear-gradient(140deg, #1f2128 0%, #0c0d10 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(242, 110, 34, 0.25), transparent 50%),
    radial-gradient(circle at 10% 100%, rgba(242, 110, 34, 0.15), transparent 50%);
}
.cta-final > .container { position: relative; z-index: 1; }
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.cta-final p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final__sub {
  margin-top: 22px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

/* ═══════ Footer ═══════ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 60px 0 28px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__col h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer__col a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  padding: 4px 0;
  font-weight: 500;
}
.footer__col a:hover { color: #fff; }
.footer__col .nav__logo { color: #fff; margin-bottom: 12px; padding: 0; }
.footer__tagline { font-size: 14px; line-height: 1.55; max-width: 280px; margin-bottom: 14px; }
.footer__credit { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer__credit a { display: inline; color: var(--brand); }

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.footer__socials a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  padding: 0;
}
.footer__socials a:hover { background: var(--brand); }

.footer__bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer__col:first-child { grid-column: span 2; }
}
