/* ============================================================
   Capaz — styles communs aux trois pages d'accueil
   (index.html, index_en.html, index_es.html)

   Genere depuis les blocs <style> d'origine : seules les regles
   strictement identiques dans les trois pages sont ici. Les rares
   ecarts par langue restent en <style> dans leur page, charge
   APRES cette feuille pour conserver l'ordre de cascade.
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
      font-family: 'Lato', sans-serif;
      background: var(--bg);
      color: var(--navy);
      line-height: 1.7;
      overflow-x: hidden;
    }

h1, h2, h3, h4, h5 {
      font-family: 'Nunito', sans-serif;
      line-height: 1.2;
    }

a { text-decoration: none; color: inherit; }

/* ─────────────── NAV ─────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 40px;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(249,115,22,0.12);
      transition: box-shadow .3s;
    }

nav.scrolled { box-shadow: var(--shadow); }

.nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Nunito', sans-serif;
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--navy);
    }

.nav-logo img {
      width: 38px;
      height: 38px;
      border-radius: 10px;
    }

.nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }

.nav-links a {
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 0.92rem;
      color: var(--navy);
      opacity: 0.8;
      transition: opacity .2s, color .2s;
    }

.nav-links a:hover { opacity: 1; color: var(--orange); }

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

.lang-switch {
      display: flex;
      gap: 6px;
    }

.lang-btn {
      background: none;
      border: 1.5px solid rgba(26,42,74,0.2);
      border-radius: 8px;
      padding: 4px 10px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      cursor: pointer;
      color: var(--navy);
      transition: all .2s;
    }

.lang-btn.active, .lang-btn:hover {
      background: var(--orange);
      border-color: var(--orange);
      color: white;
    }

/* ─────────────── HERO ─────────────── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 40px 80px;
      position: relative;
      overflow: hidden;
    }

.hero-bg {
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(249,115,22,0.10) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 10% 80%, rgba(255,209,102,0.10) 0%, transparent 60%),
        linear-gradient(160deg, #f0faff 0%, #f8fbff 50%, #fff8f0 100%);
    }

/* Floating blobs */
    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.35;
      animation: float 8s ease-in-out infinite;
    }

.blob-1 { width: 400px; height: 400px; background: var(--orange-light); top: -80px; right: -80px; animation-delay: 0s; }

.blob-2 { width: 300px; height: 300px; background: #ffecd2; bottom: 0; left: -60px; animation-delay: -3s; }

.blob-3 { width: 200px; height: 200px; background: #fff1e6; top: 40%; right: 15%; animation-delay: -5s; }

@keyframes float {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-20px) scale(1.04); }
    }

.hero-inner {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

.hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: white;
      border: 1.5px solid var(--orange);
      color: var(--orange-dark);
      border-radius: 100px;
      padding: 6px 16px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.82rem;
      font-weight: 800;
      margin-bottom: 22px;
      box-shadow: 0 2px 10px rgba(249,115,22,0.12);
      animation: fadeInUp .6s ease both;
    }

.hero-age {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--navy);
      color: white;
      border-radius: 100px;
      padding: 7px 18px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.88rem;
      font-weight: 800;
      margin-bottom: 24px;
      box-shadow: 0 4px 14px rgba(26,42,74,0.18);
      animation: fadeInUp .6s .15s ease both;
    }

.hero-age .hero-age-icon { font-size: 1.05rem; }

.hero-title {
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 900;
      color: var(--navy);
      margin-bottom: 20px;
      animation: fadeInUp .6s .1s ease both;
    }

.hero-desc {
      font-size: 1.1rem;
      color: var(--gray);
      margin-bottom: 36px;
      max-width: 480px;
      animation: fadeInUp .6s .2s ease both;
    }

.store-badges {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      animation: fadeInUp .6s .4s ease both;
    }

.store-badge {
      display: block;
      transition: transform .22s, box-shadow .22s;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

.store-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.store-badge img { height: 46px; display: block; }

.hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 40px;
      animation: fadeInUp .6s .5s ease both;
    }

.stat {
      display: flex;
      flex-direction: column;
    }

.stat-num {
      font-family: 'Nunito', sans-serif;
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--navy);
    }

/* Hero right – phone mockup area */
    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      animation: fadeInRight .8s .2s ease both;
    }

.phone-wrap {
      position: relative;
      width: 280px;
    }

/* Hero image slideshow — pure CSS, 4 images × 4s each */
    .phone-slideshow { position: relative; width: 100%; }

.phone-slide {
      width: 100%;
      border-radius: 30px;
      box-shadow: 0 30px 80px rgba(26,42,74,0.2);
      opacity: 0;
      animation: heroSlide 16s ease-in-out infinite;
      animation-fill-mode: backwards;
    }

.phone-slide:first-child { position: relative; }

.phone-slide:not(:first-child) { position: absolute; top: 0; left: 0; }

.phone-slide:nth-child(1) { animation-delay: 0s; }

.phone-slide:nth-child(2) { animation-delay: 4s; }

.phone-slide:nth-child(3) { animation-delay: 8s; }

.phone-slide:nth-child(4) { animation-delay: 12s; }

@keyframes heroSlide {
      0%   { opacity: 0; }
      5%   { opacity: 1; }
      20%  { opacity: 1; }
      25%  { opacity: 0; }
      100% { opacity: 0; }
    }

.slide-dots {
      display: flex; gap: 8px; justify-content: center; margin-top: 16px;
    }

.slide-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(26,42,74,0.18);
      animation: dotActive 16s infinite;
      animation-fill-mode: backwards;
    }

.slide-dot:nth-child(1) { animation-delay: 0s; }

.slide-dot:nth-child(2) { animation-delay: 4s; }

.slide-dot:nth-child(3) { animation-delay: 8s; }

.slide-dot:nth-child(4) { animation-delay: 12s; }

@keyframes dotActive {
      0%, 4%    { background: var(--orange); transform: scale(1.3); }
      25%       { background: var(--orange); transform: scale(1.3); }
      26%, 100% { background: rgba(26,42,74,0.18); transform: scale(1); }
    }

.floating-card {
      position: absolute;
      background: white;
      border-radius: 16px;
      padding: 12px 16px;
      box-shadow: var(--shadow-lg);
      font-family: 'Nunito', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 8px;
    }

.fc-icon { font-size: 1.2rem; }

.fc-1 { top: 10%; left: -70px; animation: float 6s ease-in-out infinite; }

.fc-2 { bottom: 20%; right: -80px; animation: float 7s ease-in-out infinite; animation-delay: -2s; }

.fc-3 { top: 45%; left: -90px; animation: float 9s ease-in-out infinite; animation-delay: -4s; }

@keyframes fadeInUp {
      from { opacity: 0; transform: translateY(28px); }
      to { opacity: 1; transform: translateY(0); }
    }

@keyframes fadeInRight {
      from { opacity: 0; transform: translateX(40px); }
      to { opacity: 1; transform: translateX(0); }
    }

/* ─────────────── SECTION COMMON ─────────────── */
    section {
      padding: 100px 40px;
    }

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

.section-label {
      display: inline-block;
      font-family: 'Nunito', sans-serif;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--orange-dark);
      background: var(--orange-light);
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 16px;
    }

.section-title {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 900;
      color: var(--navy);
      margin-bottom: 16px;
    }

.section-subtitle {
      font-size: 1.05rem;
      color: var(--gray);
      max-width: 520px;
      margin-bottom: 60px;
    }

/* ─────────────── FEATURES ─────────────── */
    .features-section {
      background: white;
    }

.features-header { text-align: center; }

.features-header .section-subtitle { margin: 0 auto 60px; }

.features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
    }

.feature-card {
      background: var(--bg);
      border-radius: var(--radius);
      padding: 32px 28px;
      border: 1.5px solid rgba(249,115,22,0.08);
      transition: transform .25s, box-shadow .25s, border-color .25s;
      position: relative;
      overflow: hidden;
    }

.feature-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--yellow));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s;
    }

.feature-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(249,115,22,0.25);
    }

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: var(--orange-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 18px;
    }

.feature-title {
      font-family: 'Nunito', sans-serif;
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 8px;
    }

.feature-desc {
      font-size: 0.92rem;
      color: var(--gray);
      line-height: 1.6;
    }

/* ─────────────── PROTECTION SECTION ─────────────── */
    .protection-section {
      background: linear-gradient(135deg, var(--navy) 0%, #0f1d36 100%);
      color: white;
      position: relative;
      overflow: hidden;
    }

.protection-section::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(ellipse, rgba(249,115,22,0.12), transparent 70%);
    }

.protection-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

.protection-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

.protection-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 1rem;
      line-height: 1.5;
    }

.check-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(249,115,22,0.15);
      border: 1.5px solid rgba(249,115,22,0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--orange);
      font-size: 0.9rem;
      margin-top: 2px;
    }

.no-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

.no-item {
      background: rgba(255,107,107,0.1);
      border: 1px solid rgba(255,107,107,0.2);
      border-radius: 14px;
      padding: 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.9rem;
      color: rgba(255,255,255,0.85);
    }

/* ─────────────── STICKY DOWNLOAD BAR ─────────────── */
    .sticky-download {
      position: fixed;
      bottom: 18px;
      left: 50%;
      transform: translateX(-50%) translateY(140%);
      z-index: 90;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 10px 18px 10px 22px;
      background: rgba(26,42,74,0.96);
      backdrop-filter: blur(14px);
      border-radius: 100px;
      box-shadow: 0 10px 40px rgba(26,42,74,0.35);
      transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .3s;
      opacity: 0;
      pointer-events: none;
    }

.sticky-download.visible { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }

.sticky-download-text { color: white; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.92rem; white-space: nowrap; }

.sticky-download-badges { display: flex; gap: 8px; }

.sticky-download-badges a { display: block; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.25); transition: transform .22s; }

.sticky-download-badges a:hover { transform: translateY(-2px); }

.sticky-download-badges img { height: 36px; display: block; }

@media (max-width: 600px) {
      .sticky-download { padding: 8px 14px; bottom: 12px; gap: 10px; max-width: calc(100vw - 24px); }
      .sticky-download-text { display: none; }
      .sticky-download-badges img { height: 34px; }
    }

/* ─────────────── REVIEWS ─────────────── */
    .reviews-section { background: var(--gray-light); }

.reviews-header { text-align: center; }

.reviews-rating { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 50px; font-family: 'Nunito', sans-serif; font-size: 1rem; color: var(--gray); flex-wrap: wrap; justify-content: center; }

.reviews-rating .stars { color: var(--orange); font-size: 1.4rem; letter-spacing: 2px; }

.reviews-rating strong { color: var(--navy); font-size: 1.3rem; }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-bottom: 40px; }

.review-card { background: white; border-radius: var(--radius); padding: 28px; border: 1.5px solid rgba(249,115,22,0.08); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }

.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.review-stars { color: var(--orange); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }

.review-text { font-size: 0.95rem; color: var(--navy); line-height: 1.6; margin-bottom: 20px; flex: 1; font-style: italic; }

.review-author { display: flex; align-items: center; gap: 12px; }

.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--yellow)); color: white; display: flex; align-items: center; justify-content: center; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.95rem; flex-shrink: 0; }

.review-name { font-family: 'Nunito', sans-serif; font-weight: 800; color: var(--navy); font-size: 0.92rem; }

.review-date { font-size: 0.78rem; color: var(--gray); }

.reviews-cta { text-align: center; }

.reviews-cta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: var(--navy); color: white; border-radius: 12px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.95rem; transition: all .22s; }

.reviews-cta-btn:hover { background: var(--orange); transform: translateY(-2px); }

/* ─────────────── PRICING ─────────────── */
    .pricing-section {
      background: var(--bg);
    }

.pricing-header { text-align: center; }

.pricing-header .section-subtitle { margin: 0 auto 60px; }

.pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: start;
    }

.pricing-card {
      background: white;
      border-radius: var(--radius);
      padding: 40px 30px;
      border: 2px solid rgba(26,42,74,0.08);
      position: relative;
      transition: transform .25s, box-shadow .25s;
    }

.pricing-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }

.pricing-card.featured {
      border-color: var(--orange);
      background: var(--navy);
      color: white;
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(249,115,22,0.15);
    }

.pricing-card.featured:hover {
      transform: translateY(-14px);
    }

.featured-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--orange);
      color: white;
      font-family: 'Nunito', sans-serif;
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 5px 18px;
      border-radius: 100px;
    }

.pricing-card.featured .pricing-name { color: rgba(255,255,255,0.7); }

.pricing-price {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      margin-bottom: 4px;
    }

.price-amount {
      font-size: 3rem;
      color: var(--navy);
      line-height: 1;
    }

.pricing-card.featured .price-amount { color: white; }

.price-currency {
      font-size: 1.5rem;
      vertical-align: top;
      padding-top: 10px;
      display: inline-block;
    }

.price-period {
      font-size: 0.82rem;
      color: var(--gray);
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      margin-bottom: 28px;
    }

.pricing-card.featured .price-period { color: rgba(255,255,255,0.5); }

.pricing-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
    }

.pricing-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.9rem;
      color: var(--navy);
    }

.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.85); }

.pricing-features li::before {
      content: '✓';
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--orange-light);
      color: var(--orange-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 900;
      flex-shrink: 0;
    }

.pricing-card.featured .pricing-features li::before {
      background: rgba(249,115,22,0.15);
      color: var(--orange);
    }

.pricing-btn {
      width: 100%;
      text-align: center;
      border-radius: 12px;
      padding: 14px;
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.95rem;
      cursor: pointer;
      border: none;
      transition: all .22s;
      display: block;
    }

.pricing-btn-default {
      background: var(--gray-light);
      color: var(--navy);
    }

.pricing-btn-default:hover { background: var(--orange-light); color: var(--orange-dark); }

.pricing-btn-featured {
      background: var(--orange);
      color: white;
      box-shadow: 0 4px 14px rgba(249,115,22,0.4);
    }

.pricing-btn-featured:hover {
      background: #ea6a0a;
      transform: translateY(-2px);
    }

.pricing-note {
      text-align: center;
      color: var(--gray);
      font-size: 0.82rem;
      margin-top: 28px;
    }

/* ─────────────── CONTACT ─────────────── */
    .contact-section {
      background: white;
    }

.contact-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

.contact-card {
      background: var(--bg);
      border-radius: var(--radius);
      padding: 40px;
      border: 1.5px solid rgba(249,115,22,0.12);
    }

.contact-item {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
    }

.contact-icon-wrap {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: var(--orange-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }

.contact-label {
      font-family: 'Nunito', sans-serif;
      font-size: 0.75rem;
      font-weight: 800;
      color: var(--gray);
      text-transform: uppercase;
      letter-spacing: .08em;
    }

.contact-value {
      font-weight: 700;
      color: var(--navy);
      font-size: 0.98rem;
    }

.contact-value a { color: var(--orange-dark); transition: color .2s; }

.contact-value a:hover { color: var(--orange); }

.social-links {
      display: flex;
      gap: 12px;
      margin-top: 24px;
    }

.social-link {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--gray-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      transition: all .2s;
      color: var(--navy);
    }

.social-link:hover {
      background: var(--orange);
      color: white;
      transform: translateY(-3px);
    }

/* ─────────────── FOOTER ─────────────── */
    footer {
      background: var(--navy);
      color: rgba(255,255,255,0.6);
      text-align: center;
      padding: 40px;
      font-size: 0.85rem;
    }

footer a { color: var(--orange); font-weight: 600; }

footer .footer-logo {
      font-family: 'Nunito', sans-serif;
      font-size: 1.4rem;
      font-weight: 900;
      color: white;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

footer .footer-logo img { width: 28px; height: 28px; border-radius: 8px; }

/* ─────────────── SCROLL ANIMATIONS ─────────────── */
    /* Section entry animations — pure CSS, no JS needed */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: none; }
    }

.reveal {
      animation: fadeUp .6s ease both;
    }

.reveal-delay-1 { animation-delay: .1s; }

.reveal-delay-2 { animation-delay: .2s; }

.reveal-delay-3 { animation-delay: .3s; }

.reveal-delay-4 { animation-delay: .4s; }

/* ─────────────── MOBILE ─────────────── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
    }

/* ─────────────── PRESS ─────────────── */
    .press-section { background: white; padding: 80px 40px; }

.press-card { max-width: 920px; margin: 0 auto; background: linear-gradient(135deg, #fff 0%, var(--orange-light) 100%); border-radius: 24px; padding: 50px 60px; border: 1.5px solid rgba(249,115,22,0.18); box-shadow: 0 12px 48px rgba(26,42,74,0.10); position: relative; overflow: hidden; text-align: center; }

.press-card::before { content: '\201C'; position: absolute; top: -30px; left: 30px; font-family: Georgia, serif; font-size: 14rem; color: rgba(249,115,22,0.14); line-height: 1; font-weight: 900; pointer-events: none; }

.press-label { display: inline-block; font-family: 'Nunito', sans-serif; font-size: 0.78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-dark); background: white; padding: 6px 16px; border-radius: 100px; margin-bottom: 20px; border: 1.5px solid var(--orange); position: relative; }

.press-publisher { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.6rem; color: var(--navy); margin-bottom: 24px; position: relative; }

.press-quote { font-family: 'Nunito', sans-serif; font-size: clamp(1.15rem, 2.2vw, 1.5rem); font-style: italic; color: var(--navy); line-height: 1.5; margin: 0 auto 24px; max-width: 720px; font-weight: 600; position: relative; }

.press-attribution { font-family: 'Nunito', sans-serif; font-size: 0.92rem; color: var(--gray); margin-bottom: 32px; font-weight: 600; position: relative; }

.press-cta { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: var(--navy); color: white; border-radius: 12px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.95rem; transition: all .22s; position: relative; }

.press-cta:hover { background: var(--orange); transform: translateY(-2px); }

@media (max-width: 700px) {
      .press-section { padding: 60px 20px; }
      .press-card { padding: 36px 26px; }
      .press-card::before { font-size: 9rem; top: -20px; left: 16px; }
      .press-publisher { font-size: 1.35rem; }
    }

/* ─────────────── VIDEO SECTION ─────────────── */
    .video-section {
      background: var(--gray-light);
    }

.video-grid {
      display: flex;
      justify-content: center;
      gap: 28px;
      flex-wrap: wrap;
    }

.video-card {
      display: block;
      width: 240px;
      flex-shrink: 0;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      background: #000;
      text-decoration: none;
      position: relative;
      transition: transform .25s, box-shadow .25s;
    }

.video-card:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 24px 64px rgba(26,42,74,0.25); }

.video-thumb {
      position: relative;
      width: 100%;
      padding-bottom: 177.78%;
      background: #111;
      overflow: hidden;
    }

.video-thumb img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s ease;
    }

.video-card:hover .video-thumb img { transform: scale(1.05); }

.video-play {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: rgba(0,0,0,0.28);
      transition: background .25s;
    }

.video-card:hover .video-play { background: rgba(0,0,0,0.18); }

.play-circle {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: rgba(255,255,255,0.95);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
      transition: transform .25s, box-shadow .25s;
    }

.video-card:hover .play-circle { transform: scale(1.12); box-shadow: 0 8px 28px rgba(0,0,0,0.4); }

.play-circle svg { margin-left: 4px; }

.video-label {
      font-family: 'Nunito', sans-serif;
      font-size: 0.78rem;
      font-weight: 800;
      color: white;
      text-shadow: 0 1px 4px rgba(0,0,0,0.6);
      letter-spacing: .04em;
      text-transform: uppercase;
    }

.yt-channel-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #ff0000;
      color: white;
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.95rem;
      padding: 13px 28px;
      border-radius: 12px;
      box-shadow: 0 4px 16px rgba(255,0,0,0.3);
      transition: all .22s;
    }

.yt-channel-btn:hover {
      background: #cc0000;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255,0,0,0.35);
    }
