:root {
  --orange: #FC5000;
  --orange-transparent: rgba(252, 80, 0, 0.2);
  --black: #111;
  --white: #FAFAFA;
  --gray: #6F6F6F;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}

.pdf-only {
  display: none !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  color: #fff;
  padding: 6rem 1.5rem 5rem;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-avatar {
  margin-bottom: 1.5rem;
}

.hero-avatar img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  object-fit: cover;
}

.hero h1 {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.hero h2 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero h2 span {
  color: var(--orange);
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: #ddd;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive */

@media (max-width: 600px) {
  .hero {
    padding: 4.5rem 1.2rem 4rem;
  }

  .hero h2 {
    font-size: 1.9rem;
  }

  .hero-avatar img {
    width: 80px;
    height: 80px;
  }
}

/* BUTTONS */
.btn {
  padding: 0.9rem 1.4rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--orange);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 2px solid white;
  color: white;
}

/* SECTIONS */
.section {
  padding: 5rem 0;
}

.section-light {
  background: #f3f3f3;
}

.section-dark {
  background: var(--black);
  color: white;
}

.section-accent {
  background: linear-gradient(135deg, #e56a1c, #ff8c42);
  color: white;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 3rem;
}

.section-title.light {
  color: white;
}

.ss-title {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 0;
  opacity: 0.8;
  text-transform: uppercase;
}

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

.accent {
  color: var(--orange);
}

/* GRIDS */
.concept-grid,
.values-grid,
.stats-grid,
.benefits-grid,
.formats-grid {
  display: grid;
  gap: 1.5rem;
}

.concept-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.concept-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
}

.concept-card h3 {
  color: black;
  margin-bottom: 1rem;
}

.concept-card p:not(:last-child) {
  margin-bottom: 1rem;
}

.values-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.value {
  background: white;
  padding: 1.5rem;
  border-left: 5px solid var(--orange);
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  text-align: center;
}

.stats-block {
  margin-top: 2.5rem;
}

.stats-platform {
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.stat-number {
  font-size: 2.2rem;
  color: var(--orange);
  font-weight: 700;
  display: block;
}

.stats-section {
  padding-bottom: 50px;
}

.stats-footer {
  margin-top: 2rem;
  text-align: center;
  opacity: 0.8;
}

.section.audience-section {
  background: var(--black);
  color: white;
  padding: 0;
  padding-bottom: 40px;
}

.section.audience-section .container {
  padding-top: 0;
}

.section.audience-section .container .stats-block {
  margin-top: 0;
  padding-bottom: 20px;
}

/* CONTENT GRID */
.content-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.checklist li {
  list-style: none;
  margin-bottom: 1rem;
}

.mockup {
  display: flex;
  justify-content: center;
}

.mockup-screen {
  width: 250px;
  height: 480px;
  border-radius: 25px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.small-note {
  font-size: 0.8rem;
}

/* FOOTER */
.footer {
  padding: 4rem 1.5rem;
  text-align: center;
  background: var(--black);
  color: white;
}

.footer h2 {
  margin-bottom: 20px;
}

.signature {
  margin-top: 3rem;
  opacity: 0.3;
}

.audience {
  margin: 0 auto;
  display: flex;
  padding-top: 2rem;
  gap: 2rem;
}

.audience p {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

@media (max-width: 600px) {
  .audience {
    flex-direction: column;
  }
}


.footer-link {
  margin-top: 2rem;
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.footer-link:hover {
  color: var(--orange);
}

.footer-socials {
  width: 300px;
  margin: 1rem auto 0 auto;
  display: flex;
  gap: 1.2rem;
}

.footer-socials.closer {
  width: 200px;
  gap: 0.8rem;
}

.footer-social {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social:hover {
  opacity: 1;
  transform: translateY(-1px);
  color: var(--orange);
}

/* comments */
.comment-widget {
  padding: 0 1rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.comment-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
}

.comment-card::before {
  content: "“";
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 5rem;
  color: var(--orange);
  font-weight: 700;
  line-height: 1;
}

.comment-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  height: 150px;
  overflow-y: auto;
}

.comment-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.comment-author {
  font-weight: 600;
  color: #111;
}

.comment-source {
  font-size: 0.85rem;
  color: #777;
}


/* ACTIONS */

.comment-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  font-size: 0.9rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid #ddd;
  color: #333;
}

.hero .btn-outline {
  border-color: white;
  color: white;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-primary {
  background: var(--orange);
  border: none;
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* RESPONSIVE */

@media (max-width: 480px) {
  .comment-card {
    padding: 1.5rem;
  }

  .comment-text {
    font-size: 1rem;
    height: 218px;
  }

  .comment-actions {
    flex-direction: column;
  }
}

/* BRAND WHY */

.brand-why {
  background: #111;
  color: #fff;
  padding: 5rem 1.5rem;
  margin-top: 5rem;
}

.brand-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3.5rem;
}

.brand-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.brand-item {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.brand-item:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}

.brand-item h3 {
  color: var(--orange);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.brand-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
}

/* Responsive */

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

  .brand-title {
    font-size: 1.9rem;
  }
}

/* Format */
.collab-deal {
  background: #fff;
  padding: 5rem 1.5rem;
  color: #111;
}

.collab-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3.5rem;
}

.collab-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* LIGNE 1 : PREMIUM FULL WIDTH */

.collab-main {
  grid-column: 1 / -1;
  background: #f9f9f9;
  border-radius: 20px;
  padding: 2.8rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  position: relative;
}

.collab-label {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.collab-main h3 {
  color: var(--orange);
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}

.collab-highlight {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 1.6rem;
}

.collab-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.collab-benefits li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
  line-height: 1.5;
}

.collab-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* LIGNE 2 : SECONDAIRES */

.collab-secondary {
  border: 2px solid #eee;
  border-radius: 16px;
  padding: 2rem;
}

.collab-secondary h4 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.collab-subtitle {
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.collab-secondary ul {
  padding-left: 1.2rem;
  margin: 0;
}

.collab-secondary li {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.collab-secondary h4 {
  color: var(--orange);
}

.ideal-for {
  margin-top: 1rem;
}

/* RESPONSIVE */

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

  .collab-title {
    font-size: 1.6rem;
  }
}

/* section fixes */
@media (max-width: 768px) {
  .concept-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .values-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .stats-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .stats-section .stat-number {
    font-size: 1.6rem;
  }

  .stats-platform {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .stats-footer {
    font-size: 0.7rem;
  }

  .footer h2 {
    margin-bottom: 30px;
  }
}

/* ===== PDF STYLES ===== */
/* Override existing sections for PDF viewing (600px x 857px per section) */
/* Applied when .pdf class is added to body */

body.pdf {
  margin: 0;
  padding: 0px;
}

/* Base container and section fixes */
body.pdf .container {
  max-width: 600px !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.pdf .no-pdf {
  display: none !important;
}

body.pdf .pdf-only {
  display: block !important;
}

body.pdf .hero {
  padding-top: 3rem;
  height: 40vh;
}

body.pdf .pdf-only.footer-socials {
  display: flex !important;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 0 1.5rem;
  justify-content: center;
}

body.pdf .pdf-only.footer-socials .footer-social {
  color: #fff;
  font-size: 0.85rem;
  opacity: 0.95;
}

body.pdf .pdf-only.footer-socials .footer-social svg {
  width: 24px;
  height: 24px;
}

body.pdf .pdf-only.footer-socials .footer-social:hover {
  opacity: 1;
  color: var(--orange);
}

body.pdf .concept-section {
  height: 60vh;
}

body.pdf .values-section {
  display: none;
}

body.pdf .stats-section {
  height: 50vh;
}

body.pdf .audience-section {
  height: 50vh;
}

body.pdf .comment-widget {
  display: none;
}

body.pdf .brand-why {
  margin: 0;
  height: 100vh;
  padding: 1.5rem 1.5rem;
}

body.pdf .collab-deal {
  height: 100vh;
}

body.pdf .footer {
  display: none;
}

/* ===== PDF STYLES ===== */

/* Hero */

/* Concept */
body.pdf .concept-section .section-title {
  font-size: 1.5rem;
  padding-left: 20px;
  padding-top: 20px;
  margin-bottom: 10px;
}

body.pdf .concept-grid {
  /* 1 per line */
  grid-template-columns: 1fr;
}

body.pdf .concept-card {
  margin: 0 1.5rem;
  padding: 0 20px;
  padding-left: 20px;
  background: none;
  font-size: 0.9rem;

  border-left: 4px solid var(--orange);
  border-bottom: 2px solid var(--orange);
}

body.pdf .concept-card p {
  margin-bottom: 0.2rem;
}

/* stats */
body.pdf .stats-section .section-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

body.pdf .stats-grid {
  /* 4 per line */
  grid-template-columns: repeat(4, 1fr);
}

body.pdf .stat-number {
  font-size: 1.2rem;
}

body.pdf .stats-block {
  margin-top: 10px;
}

body.pdf .brand-title {
  margin-bottom: 20px;
}

body.pdf .brand-item {
  padding: 1.5rem;

  margin-left: 0px;
  margin-right: 30px;
}

body.pdf .brand-item:nth-child(2n) {
  margin-right: 0px;
  margin-left: 30px;
}

/* audience */
body.pdf .audience-section .stats-block {
  padding: 1.5rem;
}

/* collab-deal */
body.pdf .collab-deal {
  padding: 1.5rem 1rem;
}

body.pdf .collab-title {
  font-size: 1.5rem;
  margin-bottom: 0;
}

body.pdf .collab-main {
  margin-top: 30px;
  padding: 1.5rem;
  border: 1px solid var(--orange);
}

body.pdf .collab-grid {
  grid-template-columns: repeat(2, 1fr)!important;
}

body.pdf .collab-secondary {
  flex: 1;
  padding: 1.5rem;
  border: 1px solid #eee;
}

body.pdf .ideal-for {
  display: none;
}

body.pdf .collab-subtitle {
  margin-bottom: 2rem;
}
