 :root {
      --blue-dark:    #023E8A;
      --blue-primary: #0077B6;
      --blue-mid:     #0096C7;
      --blue-light:   #00B4D8;
      --blue-pale:    #90E0EF;
      --blue-ultra:   #CAF0F8;
      --green:        #2D6A4F;
      --green-light:  #52B788;
      --accent:       #FFB703;
      --accent-red:   #E63946;
      --text-dark:    #0D1B2A;
      --text-gray:    #4a5568;
      --white:        #ffffff;
      --gradient-hero: linear-gradient(135deg, #023E8A 0%, #0077B6 45%, #0096C7 100%);
    }
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; color: var(--text-dark); overflow-x: hidden; line-height: 1.6; }
    h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; }

    /* REVEAL */
    .reveal, .reveal-left, .reveal-right {
      opacity: 0;
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .reveal       { transform: translateY(40px); }
    .reveal-left  { transform: translateX(-40px); }
    .reveal-right { transform: translateX(40px); }
    .reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0); }
    .d1 { transition-delay: 0.1s; }
    .d2 { transition-delay: 0.22s; }
    .d3 { transition-delay: 0.34s; }
    .d4 { transition-delay: 0.46s; }

    /* TOP BAR */
    #topbar {
      position: fixed; top: 0; width: 100%; z-index: 1001;
      background: rgba(2,62,138,0.92);
      backdrop-filter: blur(12px);
      height: 38px;
      display: flex; align-items: center; justify-content: center; gap: 10px;
      font-size: 0.76rem; font-weight: 600; color: rgba(255,255,255,0.85);
      letter-spacing: 0.8px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      transition: transform 0.35s;
    }
    #topbar.hidden { transform: translateY(-100%); }
    .topbar-dot { width: 7px; height: 7px; background: #ff6b6b; border-radius: 50%; animation: blink 1.5s infinite; flex-shrink: 0; }

    /* NAV */
    nav {
      position: fixed; top: 38px; width: 100%; z-index: 1000;
      padding: 20px 6%;
      display: flex; justify-content: space-between; align-items: center;
      transition: all 0.35s;
    }
    nav.scrolled {
      top: 0;
      background: rgba(2,62,138,0.96);
      backdrop-filter: blur(14px);
      box-shadow: 0 4px 30px rgba(0,0,0,0.25);
      padding: 13px 6%;
    }
    .nav-links { display: flex; gap: 32px; align-items: center; list-style: none; margin: 0 auto; }
    .nav-links a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 0.87rem; font-weight: 500; transition: color 0.2s; }
    .nav-links a:hover { color: white; }
    .nav-cta { background: white !important; color: var(--blue-primary) !important; padding: 10px 22px !important; border-radius: 50px; font-weight: 700 !important; font-size: 0.83rem !important; transition: transform 0.2s, box-shadow 0.2s !important; }
    .nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
    .hamburger { display: none; cursor: pointer; color: white; font-size: 1.6rem; background: none; border: none; }
    .mobile-menu { display: none; flex-direction: column; gap: 18px; position: absolute; top: 60px; right: 6%; background: rgba(2,62,138,0.97); backdrop-filter: blur(16px); padding: 26px 32px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); list-style: none; }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 1rem; font-weight: 500; }
    /* Style pour les drapeaux dans la barre de navigation */
.lang-wrapper {
    display: flex;
    gap: 12px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    align-items: center;
}

.flag-link {
    font-size: 1.4rem; /* Taille du drapeau */
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    filter: grayscale(20%); /* Un peu plus sobre */
}

.flag-link:hover {
    transform: scale(1.3); /* Effet de zoom au survol */
    filter: grayscale(0%);
    opacity: 1;
}

/* Style pour le menu mobile */
.mobile-lang {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    gap: 20px;
}

.mobile-lang a {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--blue-pale) !important;
}

    /* SHARED */
    section { padding: 110px 6%; }
    .container { max-width: 1160px; margin: 0 auto; }
    .section-label { display: inline-block; font-size: 0.71rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue-primary); margin-bottom: 14px; }
    .section-title { font-size: clamp(1.9rem, 4vw, 3.1rem); font-weight: 900; line-height: 1.1; color: var(--text-dark); margin-bottom: 20px; }
    .section-sub { font-size: 1.05rem; color: var(--text-gray); max-width: 600px; line-height: 1.75; }
    .tc { text-align: center; }
    .tc .section-sub { margin: 0 auto; }
    .wave { display: block; overflow: hidden; line-height: 0; }

    /* BUTTONS */
    .btn-primary {
      background: white; color: var(--blue-primary);
      padding: 17px 40px; border-radius: 50px; font-weight: 700; font-size: 1rem;
      font-family: 'Montserrat',sans-serif; text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: transform 0.25s, box-shadow 0.25s;
      box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    }
    .btn-primary:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.22); }
    .btn-primary.dark { background: var(--gradient-hero); color: white; box-shadow: 0 6px 24px rgba(0,119,182,0.3); }
    .btn-primary.dark:hover { box-shadow: 0 14px 36px rgba(0,119,182,0.42); }
    .btn-secondary { background: transparent; color: white; padding: 17px 40px; border-radius: 50px; font-weight: 600; font-size: 1rem; font-family: 'Montserrat',sans-serif; text-decoration: none; border: 2px solid rgba(255,255,255,0.48); transition: border-color 0.25s, background 0.25s; }
    .btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.1); }
    .btn-outline { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 0.88rem; font-family: 'Montserrat',sans-serif; text-decoration: none; border: 2px solid currentColor; padding: 13px 26px; border-radius: 50px; transition: background 0.22s, color 0.22s; align-self: flex-start; }

    /* HERO */
    #hero {
      min-height: 100vh;
      background: var(--gradient-hero);
      display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
      padding: 160px 6% 100px;
      position: relative; overflow: hidden;
    }
    .hero-orb { position: absolute; border-radius: 50%; opacity: 0.06; background: white; pointer-events: none; }
    .hero-orb:nth-child(1) { width: 700px; height: 700px; top: -280px; right: -150px; }
    .hero-orb:nth-child(2) { width: 400px; height: 400px; bottom: 0; left: -150px; }
    .hero-orb:nth-child(3) { width: 200px; height: 200px; top: 30%; left: 5%; }
    @keyframes fadeDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
    .hero-title {
      font-size: clamp(4rem, 11vw, 10rem);
      font-weight: 900;
      color: white;
      line-height: 0.92;
      letter-spacing: -2px;
      text-transform: uppercase;
      margin-bottom: 32px;
      animation: fadeUp 0.9s ease both;
    }
    .hero-title span { color: var(--blue-pale); display: block; }
    .hero-date {
      font-size: clamp(0.9rem, 2.45vw, 2.2rem);
      color: rgba(255,255,255,0.82);
      font-weight: 400;
      margin-bottom: 56px;
      line-height: 1.3;
      white-space: nowrap;
      animation: fadeUp 0.9s 0.15s ease both;
    }
    .hero-date strong { color: white; font-weight: 600; }
    @keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
    .hero-cta-wrap { animation: fadeUp 0.9s 0.28s ease both; margin-bottom: 72px; }
    .hero-scroll { color: rgba(255,255,255,0.5); font-size: 0.77rem; letter-spacing: 2px; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; animation: pulse 2.5s infinite; }
    .hero-scroll svg { animation: bounce 2s infinite; }
    @keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
    @keyframes pulse { 0%,100%{opacity:0.5} 50%{opacity:0.9} }
    .hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; overflow: hidden; line-height: 0; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

    /* PROBLEM */
    #problem { background: var(--text-dark); padding: 110px 6%; position: relative; overflow: hidden; }
    #problem .section-label { color: var(--blue-pale); }
    #problem .section-title { color: white; }
    #problem .section-sub { color: rgba(255,255,255,0.65); }
    .prob-glow { position: absolute; border-radius: 50%; pointer-events: none; }
    .prob-glow:nth-child(1) { width: 500px; height: 500px; top: -100px; right: -100px; background: radial-gradient(circle, rgba(0,150,199,0.12) 0%, transparent 70%); }
    .prob-glow:nth-child(2) { width: 350px; height: 350px; bottom: -80px; left: -60px; background: radial-gradient(circle, rgba(0,119,182,0.1) 0%, transparent 70%); }
    .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 64px; }
    .stat-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 22px; padding: 36px 30px; position: relative; overflow: hidden; transition: transform 0.3s, border-color 0.3s, background 0.3s; }
    .stat-card:hover { transform: translateY(-8px); border-color: rgba(0,180,216,0.35); background: rgba(255,255,255,0.065); }
    .stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue-primary), var(--blue-light)); }
    .stat-big { font-family: 'Montserrat',sans-serif; font-weight: 900; font-size: 2.8rem; color: var(--blue-pale); line-height: 1; }
    .stat-unit { font-size: 1.1rem; font-weight: 700; color: var(--blue-pale); }
    .stat-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin-top: 10px; }
    .source-note { text-align: right; font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 40px; }

    /* SOLUTION */
    #solution { background: var(--blue-ultra); padding: 110px 6%; }
    .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-top: 64px; }
    .step-card { background: white; border-radius: 26px; padding: 44px 36px; box-shadow: 0 6px 40px rgba(0,119,182,0.09); transition: transform 0.3s, box-shadow 0.3s; }
    .step-card:hover { transform: translateY(-10px); box-shadow: 0 24px 60px rgba(0,119,182,0.16); }
    .step-num { width: 58px; height: 58px; background: var(--gradient-hero); color: white; font-family: 'Montserrat',sans-serif; font-weight: 900; font-size: 1.4rem; border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 26px; }
    .step-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
    .step-card p { font-size: 0.93rem; color: var(--text-gray); line-height: 1.7; }
    .step-tip { margin-top: 14px; padding: 12px 16px; background: var(--blue-ultra); border-radius: 10px; font-size: 0.82rem; color: var(--blue-dark); font-weight: 500; }
    .step-btn { display: flex; align-items: center; justify-content: center; background: var(--gradient-hero); color: white; padding: 13px 20px; border-radius: 50px; font-weight: 700; font-size: 0.88rem; font-family: 'Montserrat',sans-serif; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; margin-top: 20px; box-shadow: 0 4px 14px rgba(0,119,182,0.25); }
    .step-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,119,182,0.35); }

    /* IMPACT */
    #impact { background: white; padding: 110px 6%; }
    .impact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 840px; margin: 64px auto 48px; }
    .impact-card { background: var(--gradient-hero); border-radius: 26px; padding: 52px 38px; text-align: center; color: white; position: relative; overflow: hidden; transition: transform 0.3s; }
    .impact-card:hover { transform: scale(1.04); }
    .impact-card::after { content: ''; position: absolute; top: -60px; right: -30px; width: 220px; height: 220px; background: rgba(255,255,255,0.06); border-radius: 50%; }
    .impact-num { font-family: 'Montserrat',sans-serif; font-weight: 900; font-size: clamp(2.4rem, 4.5vw, 3.8rem); line-height: 1; color: white; margin-bottom: 10px; position: relative; z-index: 1; }
    .impact-label { font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.82); position: relative; z-index: 1; }
    .impact-also { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 840px; margin: 0 auto 48px; }
    .impact-mini { background: #f7fafc; border: 1px solid #e2e8f0; border-radius: 18px; padding: 24px; text-align: center; }
    .impact-mini-num { font-family: 'Montserrat',sans-serif; font-weight: 900; font-size: 1.6rem; color: var(--blue-primary); margin-bottom: 4px; }
    .impact-mini-label { font-size: 0.83rem; color: var(--text-gray); }
    .editions-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
    .edition-pill { background: var(--blue-ultra); border: 1px solid var(--blue-pale); color: var(--blue-dark); font-size: 0.8rem; font-weight: 600; padding: 9px 22px; border-radius: 50px; }

    /* NOAM */
    #ambassador { background: linear-gradient(180deg, #0D1B2A 0%, #023E8A 100%); padding: 110px 6%; color: white; position: relative; overflow: hidden; }
    #ambassador .section-label { color: var(--blue-pale); }
    #ambassador .section-title { color: white; }
    #ambassador .section-sub { color: rgba(255,255,255,0.7); }
    .noam-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 60px; }
    .noam-photo-area { position: relative; }
    .noam-photo-bg { width: 100%; padding-bottom: 110%; background: linear-gradient(135deg, rgba(0,119,182,0.3), rgba(0,180,216,0.1)); border-radius: 30px; border: 1px solid rgba(255,255,255,0.1); position: relative; overflow: hidden; display: flex; align-items: flex-end; justify-content: center; }
    .noam-placeholder { text-align: center; padding: 40px 30px; }
    .noam-icon { font-size: 5rem; margin-bottom: 16px; display: block; }
    .noam-photo-bg h4 { color: white; font-size: 1.4rem; font-weight: 900; }
    .noam-photo-bg p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 6px; }
    .noam-badge { position: absolute; top: 20px; right: 20px; background: var(--accent); color: var(--text-dark); font-size: 0.72rem; font-weight: 700; padding: 7px 16px; border-radius: 50px; letter-spacing: 1px; text-transform: uppercase; }
    .noam-content h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; color: white; }
    .noam-content p { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 16px; }
    .noam-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
    .noam-stat { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 18px 20px; }
    .noam-stat-num { font-family: 'Montserrat',sans-serif; font-weight: 900; font-size: 1.5rem; color: var(--blue-pale); }
    .noam-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
    .noam-bg-orb { position: absolute; border-radius: 50%; opacity: 0.06; background: white; pointer-events: none; }
    .noam-bg-orb:nth-child(1) { width: 400px; height: 400px; top: -100px; right: -100px; }

    /* RECORD */
    #record { background: var(--accent-red); padding: 110px 6%; text-align: center; position: relative; overflow: hidden; }
    #record::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, #e63946 0%, #c1121f 100%); }
    .record-content { position: relative; z-index: 1; }
    #record .section-label { color: rgba(255,255,255,0.7); }
    #record .section-title { color: white; font-size: clamp(2rem, 4.5vw, 3.8rem); }
    #record .section-sub { color: rgba(255,255,255,0.8); margin: 0 auto 48px; }
    .record-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); border-radius: 50px; padding: 10px 24px; color: white; font-size: 0.88rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; }
    .record-details { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin: 44px 0; }
    .record-detail-card { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; padding: 28px 32px; text-align: center; min-width: 180px; }
    .record-detail-icon { font-size: 1.8rem; margin-bottom: 10px; }
    .record-detail-title { font-family: 'Montserrat',sans-serif; font-weight: 700; color: white; font-size: 1rem; margin-bottom: 4px; }
    .record-detail-desc { font-size: 0.82rem; color: rgba(255,255,255,0.65); }
    .record-orb { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.05); pointer-events: none; }
    .record-orb:nth-child(1) { width: 400px; height: 400px; top: -150px; right: -100px; }
    .record-orb:nth-child(2) { width: 250px; height: 250px; bottom: -80px; left: -60px; }

    /* WHO */
    #who { background: #f7fafc; padding: 110px 6%; }
    .who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-top: 64px; }
    .who-card { background: white; border-radius: 26px; padding: 48px 36px; border-top: 5px solid var(--blue-primary); box-shadow: 0 4px 28px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
    .who-card:nth-child(2) { border-top-color: var(--green-light); }
    .who-card:nth-child(3) { border-top-color: var(--accent); }
    .who-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
    .who-icon-wrap { width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.9rem; margin-bottom: 26px; }
    .who-card:nth-child(1) .who-icon-wrap { background: var(--blue-ultra); }
    .who-card:nth-child(2) .who-icon-wrap { background: #d8f3dc; }
    .who-card:nth-child(3) .who-icon-wrap { background: #fff3cd; }
    .who-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-primary); margin-bottom: 8px; }
    .who-card:nth-child(2) .who-tag { color: var(--green); }
    .who-card:nth-child(3) .who-tag { color: #92400e; }
    .who-card h3 { font-size: 1.28rem; font-weight: 700; margin-bottom: 14px; }
    .who-card > p { font-size: 0.93rem; color: var(--text-gray); line-height: 1.7; flex-grow: 1; margin-bottom: 24px; }
    .who-perks { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
    .who-perks li { font-size: 0.9rem; display: flex; align-items: flex-start; gap: 10px; }
    .who-perks li::before { content: '✓'; color: var(--green-light); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
    .who-card:nth-child(1) .btn-outline { color: var(--blue-primary); }
    .who-card:nth-child(1) .btn-outline:hover { background: var(--blue-primary); color: white; }
    .who-card:nth-child(2) .btn-outline { color: var(--green); }
    .who-card:nth-child(2) .btn-outline:hover { background: var(--green); color: white; }
    .who-card:nth-child(3) .btn-outline { color: #92400e; }
    .who-card:nth-child(3) .btn-outline:hover { background: #92400e; color: white; }

    /* HERO MINI-TIMER */
    .hero-timer {
      display: flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.09);
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 50px;
      padding: 10px 26px;
      margin-bottom: 36px;
      animation: fadeUp 0.9s 0.22s ease both;
      backdrop-filter: blur(6px);
    }
    .hero-timer-unit { display: flex; flex-direction: column; align-items: center; gap: 2px; }
    .hero-timer-num { font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: 1.25rem; color: white; line-height: 1; }
    .hero-timer-lbl { font-size: 0.58rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1.2px; }
    .hero-timer-sep { font-weight: 700; color: rgba(255,255,255,0.28); font-size: 1rem; padding-bottom: 10px; }

    /* PHOTO SLOTS */
    .photos-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 16px;
      margin: 52px 0 40px;
    }
    .photo-slot { border-radius: 20px; overflow: hidden; background: linear-gradient(145deg, #e8f4fb 0%, #cce7f4 100%); border: 2px dashed #90cce8; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; transition: transform 0.3s; cursor: pointer; padding: 28px 20px; }
    .photo-slot:hover { transform: translateY(-6px); }
    /* Editions 1 + 2 : portrait tall */
    .photo-slot:nth-child(1), .photo-slot:nth-child(2) { aspect-ratio: 3/4; }
    /* Editions 3 + 4 : landscape smaller */
    .photo-slot:nth-child(3), .photo-slot:nth-child(4) { aspect-ratio: 16/9; }
    .photo-slot-icon { font-size: 2.2rem; opacity: 0.45; }
    .photo-slot-label { font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: 0.82rem; color: var(--blue-primary); letter-spacing: 0.5px; text-align: center; }
    .photo-slot-sub { font-size: 0.7rem; color: var(--text-gray); }
    .noam-inline-photo { width: 100%; margin: 24px 0; border-radius: 18px; overflow: hidden; aspect-ratio: 16/7; background: linear-gradient(145deg, rgba(0,119,182,0.12), rgba(0,180,216,0.08)); border: 2px dashed rgba(255,255,255,0.2); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
    .noam-inline-photo span { font-size: 2.2rem; opacity: 0.4; }
    .noam-inline-photo p { font-size: 0.82rem; color: rgba(255,255,255,0.4); font-weight: 500; }
    /* Record photo slot */
    .record-photo { max-width: 820px; margin: 40px auto; border-radius: 22px; aspect-ratio: 16/9; background: rgba(255,255,255,0.08); border: 2px dashed rgba(255,255,255,0.22); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; position: relative; z-index: 1; transition: border-color 0.3s; }
    .record-photo:hover { border-color: rgba(255,255,255,0.4); }
    .record-photo .photo-slot-icon { font-size: 3rem; opacity: 0.4; }
    .record-photo p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
    .record-sub { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin: 18px 0 0; position: relative; z-index: 1; font-weight: 500; }
    /* Topbar countdown */
    #topbar-countdown, #topbar-stat { display: inline-flex; align-items: center; gap: 2px; transition: opacity 0.4s; }
    .tb-num { font-weight: 700; color: white; }
    .tb-sep { color: rgba(255,255,255,0.35); }
    .tb-dot { color: rgba(255,255,255,0.35); margin: 0 5px; }
    @media (max-width: 768px) { .photos-grid { grid-template-columns: 1fr 1fr; } .photo-slot:nth-child(1), .photo-slot:nth-child(2) { aspect-ratio: 4/5; } }

    /* TWO-BUTTON ROW */
    .who-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
    .who-btns .btn-outline { flex: 1; min-width: 0; justify-content: center; font-size: 0.82rem; padding: 12px 16px; }
    /* SPONSOR BUTTON */
    .btn-sponsor { background: transparent; color: var(--green); padding: 12px 16px; border-radius: 50px; font-weight: 700; font-size: 0.82rem; font-family: 'Montserrat',sans-serif; text-decoration: none; border: 2px solid var(--green); transition: background 0.22s, color 0.22s; display: inline-flex; align-items: center; justify-content: center; flex: 1; }
    .btn-sponsor:hover { background: var(--green); color: white; }

    /* SECTION TIMER (pill style matching hero) */
    .section-timer {
      display: inline-flex; align-items: center; gap: 12px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50px;
      padding: 18px 44px;
      margin: 36px 0 48px;
      backdrop-filter: blur(8px);
    }
    .section-timer .hero-timer-num { font-size: 1.8rem; }
    .section-timer .hero-timer-lbl { font-size: 0.62rem; }
    .section-timer .hero-timer-sep { font-size: 1.2rem; }

    /* COUNTDOWN */
    #countdown { background: linear-gradient(180deg, #0077B6 0%, #023E8A 100%); padding: 110px 6%; text-align: center; color: white; position: relative; overflow: hidden; }
    #countdown::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%); }
    #countdown .section-label { color: var(--blue-pale); }
    #countdown .section-title { color: white; }
    .countdown-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin: 12px 0 52px; }
    .timer-row { display: flex; justify-content: center; gap: 0; flex-wrap: wrap; margin-bottom: 48px; position: relative; z-index: 1; }
    .timer-unit { padding: 16px 40px; border-right: 1px solid rgba(255,255,255,0.15); text-align: center; }
    .timer-unit:last-child { border-right: none; }
    .timer-num { font-family: 'Montserrat',sans-serif; font-weight: 900; font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1; color: white; display: block; }
    .timer-label { font-size: 0.62rem; color: rgba(255,255,255,0.45); letter-spacing: 3px; text-transform: uppercase; margin-top: 10px; display: block; }

    /* REGISTER */
    #register { background: white; padding: 110px 6%; }
    .register-box { max-width: 680px; margin: 0 auto; text-align: center; }
    .register-box .section-sub { margin: 0 auto 48px; }
    .form-wrap { display: flex; flex-direction: column; gap: 16px; text-align: left; margin-top: 40px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-field { width: 100%; padding: 16px 20px; border: 2px solid #e2e8f0; border-radius: 14px; font-size: 0.95rem; font-family: 'Inter',sans-serif; color: var(--text-dark); background: #f8fafc; transition: border-color 0.22s, background 0.22s; }
    .form-field:focus { outline: none; border-color: var(--blue-primary); background: white; }
    select.form-field { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 16px center; background-size: 20px; background-color: #f8fafc; }
    select.form-field:focus { background-color: white; }
    .form-submit { width: 100%; padding: 19px; background: var(--gradient-hero); color: white; border: none; border-radius: 50px; font-weight: 700; font-size: 1.05rem; font-family: 'Montserrat',sans-serif; cursor: pointer; letter-spacing: 0.3px; transition: transform 0.25s, box-shadow 0.25s; box-shadow: 0 6px 24px rgba(0,119,182,0.3); }
    .form-submit:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,119,182,0.4); }
    .form-note { text-align: center; font-size: 0.78rem; color: var(--text-gray); margin-top: 4px; }
    .form-success { display: none; background: linear-gradient(135deg, #d1fae5, #a7f3d0); border: 1px solid #6ee7b7; border-radius: 20px; padding: 32px; color: #064e3b; font-weight: 600; font-size: 1rem; line-height: 1.6; text-align: center; }
    .trust-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; margin-top: 44px; }
    .trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-gray); font-weight: 500; }
    .trust-item::before { content: '✓'; color: var(--green-light); font-weight: 800; }

    /* FOOTER */
    footer { background: #080f1a; padding: 70px 6% 36px; color: rgba(255,255,255,0.55); }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 52px; }
    .footer-logo { font-family: 'Montserrat',sans-serif; font-weight: 900; font-size: 1.35rem; color: white; margin-bottom: 18px; display: block; }
    .footer-logo span { color: var(--blue-pale); }
    .footer-about { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.45); margin-bottom: 24px; }
    .footer-about a { color: var(--blue-pale); text-decoration: none; }
    .social-row { display: flex; gap: 10px; }
    .social-btn { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 1rem; text-decoration: none; color: rgba(255,255,255,0.65); transition: background 0.2s, color 0.2s, border-color 0.2s; }
    .social-btn:hover { background: var(--blue-primary); color: white; border-color: var(--blue-primary); }
    .footer-col-title { font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: 0.88rem; color: white; letter-spacing: 0.5px; margin-bottom: 20px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-links a { color: rgba(255,255,255,0.48); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
    .footer-links a:hover { color: white; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
    .footer-bottom p { font-size: 0.8rem; }
    .footer-oe { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
    .footer-oe a { color: var(--blue-pale); text-decoration: none; }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .noam-grid { grid-template-columns: 1fr; }
      .noam-photo-area { display: none; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .footer-top > div:first-child { grid-column: 1 / -1; }
    }
    @media (max-width: 768px) {
      section { padding: 80px 5%; }
      .nav-links { display: none; }
      .hamburger { display: block; }
      .impact-grid, .impact-also { grid-template-columns: 1fr 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .timer-row { gap: 10px; }
      .timer-unit { padding: 20px 14px; min-width: 76px; }
      .timer-num { font-size: 2.4rem; }
      .hero-ctas { flex-direction: column; align-items: center; width: 100%; }
      .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
      .record-details { flex-direction: column; align-items: center; }
    }
    @media (max-width: 480px) {
      .impact-grid, .impact-also { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr; }
      .noam-stats { grid-template-columns: 1fr; }
    }