:root {
    --navy: #0C2C60;
    --navy-dark: #081830;
    --teal: #00A89E;
    --teal-light: #3DCEC8;
    --teal-pale: #7DDDD9;
    --purple: #7320C0;
    --purple-light: #A466DC;
    --purple-pale: #CDAAEE;
    --cream: #EEE9DE;
    --sand: #E3D9C4;
    --pink: #E84848;
    --pink-pale: #FBCECE;
    --text-dark: #0C1D30;
    --text-mid: #264466;
    --text-light: #5278A0;
    --white: #ffffff;
  }

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

  body {
    font-family: 'Nunito', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
  }

  /* ─── NAV ─── */
  nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid rgba(27,63,114,0.1);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .logo-icon {
    width: 44px;
    height: 44px;
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.02em;
  }

  .logo-sub {
    font-size: 11px;
    font-weight: 300;
    color: var(--teal);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--navy); }

  .nav-cta {
    background: var(--teal);
    color: white !important;
    padding: 8px 20px;
    border-radius: 24px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--navy) !important; }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    background: linear-gradient(160deg, #B2D8F5 0%, #72D9D5 40%, #C6A0F0 80%, #F5AAAA 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
  }

  .hero-wave-top {
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    opacity: 0.12;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5% 16px;
    max-width: 680px;
    animation: fadeUp 0.9s ease both;
  }

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

  .hero-badge {
    display: none;
  }

  .hero h1 {
    font-size: clamp(38px, 5.2vw, 64px);
    font-weight: 300;
    color: var(--navy-dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--teal);
  }

  .hero h1 .accent {
    color: var(--purple);
  }

  .hero-sub {
    font-size: 16px;
    color: var(--text-mid);
    font-weight: 300;
    margin-bottom: 28px;
    max-width: 500px;
    line-height: 1.75;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--navy);
    color: white;
    padding: 14px 32px;
    border-radius: 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.25s;
    border: 2px solid var(--navy);
  }

  .btn-primary:hover {
    background: var(--teal);
    border-color: var(--teal);
    transform: translateY(-1px);
  }

  .btn-secondary {
    background: transparent;
    color: var(--navy);
    padding: 14px 32px;
    border-radius: 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    border: 2px solid rgba(27,63,114,0.3);
    transition: all 0.25s;
  }

  .btn-secondary:hover {
    border-color: var(--navy);
    background: rgba(27,63,114,0.05);
  }

  .hero-float {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-54%);
    width: 340px;
    animation: floatIn 1.1s 0.2s ease both;
  }

  /* ── HERO CARD HTML ── */
  .hero-card {
    background: rgba(255,255,255,0.92);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(12,44,96,0.18), 0 4px 16px rgba(12,44,96,0.08);
    border: 1px solid rgba(255,255,255,0.95);
    backdrop-filter: blur(14px);
  }

  .hcard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px 12px;
    background: rgba(0,168,158,0.06);
    border-bottom: 1px solid rgba(0,168,158,0.12);
  }
  .hcard-icon {
    width: 38px; height: 38px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
  }
  .hcard-title { font-size: 14px; font-weight: 600; color: var(--navy-dark); line-height: 1.2; }
  .hcard-sub   { font-size: 11.5px; color: var(--text-light); margin-top: 2px; }

  .hcard-rows { padding: 4px 20px 2px; }

  .hcard-row {
    display: flex; align-items: center; gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(12,44,96,0.06);
  }
  .hcard-row:last-of-type { border-bottom: none; }

  .hcr-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
  .dot-t { background: var(--teal); }
  .dot-p { background: var(--purple); }
  .dot-g { background: #C0CEDF; }

  .hcr-lbl { flex: 1; font-size: 13.5px; font-weight: 500; color: var(--navy-dark); }

  .hcr-badge {
    font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
    padding: 3px 11px; border-radius: 20px;
  }
  .hb-t { background: rgba(0,168,158,0.15);  color: var(--teal); }
  .hb-p { background: rgba(115,32,192,0.13); color: var(--purple); }
  .hb-g { background: rgba(12,44,96,0.07);   color: var(--text-mid); }

  .hcard-progress {
    margin: 0 20px 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(12,44,96,0.08);
  }
  .hprog-head {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 10px;
  }
  .hprog-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 600;
    color: var(--navy-dark); line-height: 1;
  }
  .hprog-goal { font-size: 12px; color: var(--text-light); font-weight: 500; }
  .hprog-track {
    height: 5px; background: rgba(12,44,96,0.1);
    border-radius: 3px; overflow: hidden; margin-bottom: 9px;
  }
  .hprog-fill {
    height: 100%; width: 2.5%;
    background: linear-gradient(90deg, var(--teal), var(--teal-pale));
    border-radius: 3px;
    animation: growprog 1.6s 0.8s ease both;
  }
  @keyframes growprog { from { width: 0; } to { width: var(--progress, 2.5%); } }
  .hprog-meta {
    display: flex; gap: 10px;
    font-size: 12px; font-weight: 500; color: var(--text-light);
  }
  .hprog-meta .hi { color: var(--teal); font-weight: 700; }

  @keyframes floatIn {
    from { opacity: 0; transform: translateY(-40%) scale(0.95); }
    to { opacity: 1; transform: translateY(-50%) scale(1); }
  }

  /* ─── PILLARS ─── */
  .pillars {
    background: var(--white);
    padding: 24px 5% 36px;
    position: relative;
  }

  .section-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
  }

  .section-title {
    text-align: center;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 400;
    color: var(--navy-dark);
    margin-bottom: 16px;
  }

  .section-title em {
    font-style: italic;
    color: var(--purple);
  }

  .section-intro {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    color: var(--text-mid);
    max-width: 540px;
    margin: 0 auto 64px;
  }

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

  .pillar-card {
    background: var(--cream); border: 1.5px solid transparent;
    border-radius: 20px;
    padding: 28px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(27,63,114,0.12);
  }

  .pillar-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.08;
  }

  .pillar-card.p1::before { background: var(--teal); }
  .pillar-card.p1 { border-color: rgba(0,168,158,0.4); }
  .pillar-card.p2::before { background: var(--purple); }
  .pillar-card.p2 { border-color: rgba(115,32,192,0.35); }
  .pillar-card.p3::before { background: var(--navy); }
  .pillar-card.p3 { border-color: rgba(12,44,96,0.35); }

  .pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 26px;
  }

  .pillar-card.p1 .pillar-icon { background: var(--teal-pale); border: 1.5px solid rgba(0,168,158,0.35); }
  .pillar-card.p2 .pillar-icon { background: var(--purple-pale); border: 1.5px solid rgba(115,32,192,0.3); }
  .pillar-card.p3 .pillar-icon { background: rgba(27,63,114,0.08); }

  .pillar-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 14px;
  }

  .pillar-card p {
    font-size: 14.5px;
    color: var(--text-mid);
    line-height: 1.75;
    font-weight: 300;
  }

  .pillar-tag {
    display: inline-block;
    margin-top: 24px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 12px;
  }

  .pillar-card.p1 .pillar-tag { background: var(--teal); color: white; }
  .pillar-card.p2 .pillar-tag { background: var(--purple); color: white; }
  .pillar-card.p3 .pillar-tag { background: var(--navy); color: white; }

  /* ─── CAMPAIGN ─── */
  .campaign {
    background: var(--navy-dark);
    padding: 48px 5% 40px;
    position: relative;
    overflow: hidden;
  }

  .campaign::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,168,158,0.28) 0%, transparent 70%);
  }

  .campaign::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(115,32,192,0.22) 0%, transparent 70%);
  }

  .campaign-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .campaign-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 8px;
    margin-bottom: 20px;
  }

  .campaign h2 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 300;
    color: white;
    margin-bottom: 24px;
    line-height: 1.25;
  }

  .campaign h2 em {
    font-style: italic;
    color: var(--teal-pale);
  }

  .campaign-body {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 36px;
  }

  .campaign-body strong {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
  }

  .campaign-progress {
    margin-bottom: 16px;
  }

  .progress-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
  }

  .progress-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: white;
    font-weight: 300;
  }

  .progress-goal {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
  }

  .progress-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
  }

  .progress-fill {
    height: 100%;
    width: var(--progress, 2.5%);
    background: linear-gradient(90deg, var(--teal), var(--purple));
    border-radius: 3px;
    animation: growBar 1.5s 0.5s ease both;
  }

  @keyframes growBar {
    from { width: 0; }
    to { width: var(--progress, 2.5%); }
  }

  .progress-stats {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    font-size: 11.5px;
    color: rgba(255,255,255,0.45);
  }

  .btn-campaign {
    background: var(--teal);
    color: white;
    padding: 12px 28px;
    border-radius: 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
  }

  .btn-campaign:hover {
    background: white;
    color: var(--navy-dark);
    transform: translateY(-1px);
  }

  /* ─── VIDEO CAMPAIGN ─── */
  .campaign-video {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .campaign-video-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 400;
    color: white;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }

  .campaign-video-title em {
    font-style: italic;
    color: var(--teal-pale);
  }

  /* Ratio 16:9 responsive — fonctionne sur tous écrans */
  .video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding-bottom: 42%;
    height: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
  }

  .video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  .campaign-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 28px;
    padding: 48px 44px;
  }

  .campaign-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 32px;
  }

  .action-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .action-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  .step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 700;
  }

  .step-num.s1 { background: var(--teal); color: white; }
  .step-num.s2 { background: rgba(0,168,158,0.2); color: var(--teal); border: 1.5px solid rgba(0,168,158,0.7); }
  .step-num.s3 { background: rgba(115,32,192,0.15); color: var(--purple); border: 1.5px solid rgba(115,32,192,0.5); }

  .step-text {
    padding-top: 8px;
    font-size: 14.5px;
    color: rgba(255,255,255,0.7);
    line-height: 1.55;
  }

  /* ─── WHO WE ARE ─── */
  .about {
    padding: 48px 5% 40px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-visual {
    position: relative;
    height: 420px;
  }

  .about-circle-big {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--purple-light) 100%);
    position: absolute;
    top: 40px;
    left: 0;
  }

  .about-circle-small {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--pink) 100%);
    position: absolute;
    bottom: 0;
    right: 60px;
    border: 4px solid white;
  }

  .about-quote {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 28px 32px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(27,63,114,0.1);
    width: 280px;
    text-align: center;
  }

  .about-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-style: italic;
    color: var(--navy-dark);
    line-height: 1.5;
  }

  .about-quote span {
    display: block;
    font-size: 12px;
    color: var(--teal);
    font-weight: 600;
    margin-top: 12px;
    letter-spacing: 0.05em;
  }

  .about-content .section-title {
    text-align: left;
  }

  .about-content .section-label {
    text-align: left;
  }

  .about-text {
    font-size: 15.5px;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 20px;
  }

  .about-text strong {
    color: var(--navy-dark);
    font-weight: 600;
  }

  .about-names {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
  }

  .name-tag {
    background: white;
    border: 1.5px solid rgba(0,168,158,0.6);
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 13px;
    color: var(--navy);
    font-weight: 500;
  }

  /* ─── BLOG ─── */
  .blog {
    padding: 100px 5%;
    background: white;
  }

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

  .blog-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(27,63,114,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(27,63,114,0.1);
  }

  .blog-thumb {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
  }

  .blog-card:nth-child(1) .blog-thumb { background: var(--teal-pale); border-bottom: 3px solid var(--teal); }
  .blog-card:nth-child(2) .blog-thumb { background: var(--purple-pale); border-bottom: 3px solid var(--purple); }
  .blog-card:nth-child(3) .blog-thumb { background: var(--pink-pale); border-bottom: 3px solid var(--pink); }

  .blog-body {
    padding: 28px;
  }

  .blog-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .cat-droit { color: var(--teal); font-weight: 700; }
  .cat-sante { color: var(--purple); font-weight: 700; }
  .cat-education { color: var(--pink); font-weight: 700; }
  .blog-cat { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; display: block; }

  .blog-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 12px;
    line-height: 1.35;
  }

  .blog-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 300;
  }

  .blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(27,63,114,0.07);
    font-size: 12px;
    color: var(--text-light);
  }

  .blog-meta a {
    color: var(--teal);
    font-weight: 600;
    text-decoration: none;
    font-size: 12.5px;
  }

  /* ─── ADHEREZ ─── */
  .join {
    background: linear-gradient(135deg, var(--teal-pale) 0%, var(--purple-pale) 60%, var(--pink-pale) 100%);
    padding: 48px 5% 56px;
    text-align: center;
  }

  .join h2 {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 300;
    color: var(--navy-dark);
    margin-bottom: 16px;
  }

  .join h2 em { color: var(--purple); }

  .join p {
    font-size: 17px;
    color: var(--text-mid);
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto 28px;
  }

  .join-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1080px;
    margin: 0 auto;
    align-items: stretch;
  }

  .join-card {
    background: white;
    border-radius: 20px;
    padding: 24px 24px;
    flex: 1 1 300px;
    max-width: 340px;
    text-align: left;
    box-shadow: 0 4px 24px rgba(27,63,114,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
  }

  .join-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(27,63,114,0.18); }

  .join-card.featured {
    background: var(--navy-dark);
    border: 2.5px solid var(--teal);
  }

  .join-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .join-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--navy-dark);
    line-height: 1;
    margin: 2px 0 0;
  }

  .join-card.featured .join-price { color: white; }

  .join-period {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 6px;
  }

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

  .join-plan-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0;
  }

  .join-features {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
  }

  .join-features li {
    font-size: 13px;
    color: var(--text-mid);
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid rgba(27,63,114,0.06);
    line-height: 1.5;
  }

  .join-card.featured .join-features li { color: rgba(255,255,255,0.65); border-bottom-color: rgba(255,255,255,0.1); }

  .join-features li::before {
    content: '✓';
    flex-shrink: 0;
    color: var(--teal);
    font-weight: 700;
    font-size: 12px;
    margin-top: 3px;
  }

  .btn-join {
    width: 100%;
    padding: 12px;
    border-radius: 20px;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid var(--navy);
    background: transparent;
    color: var(--navy);
    transition: all 0.2s;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    display: block;
    text-align: center;
    box-sizing: border-box;
  }

  .join-card.featured .btn-join {
    background: #00C853;
    border-color: #00C853;
    color: white;
    font-size: 16px;
    padding: 14px;
  }

  .btn-join:hover { background: var(--navy); color: white; }
  .join-card.featured .btn-join:hover { background: #00E676; border-color: #00E676; color: var(--navy-dark); }

  /* ─── CONTACT ─── */
  .contact {
    padding: 48px 5% 56px;
    background: var(--cream);
  }

  .contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
  }

  .contact-info h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    color: var(--navy-dark);
    margin-bottom: 20px;
  }

  .contact-info p {
    font-size: 15px;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 36px;
  }

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

  .contact-icon {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(27,63,114,0.08);
  }

  .contact-detail p {
    font-size: 14px;
    margin: 0;
  }

  .contact-detail strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 2px;
  }

  .contact-form {
    background: white;
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 8px 40px rgba(27,63,114,0.08);
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-group label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 6px;
    letter-spacing: 0.04em;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(27,63,114,0.15);
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 14.5px;
    color: var(--text-dark);
    background: var(--cream);
    transition: border-color 0.2s;
    outline: none;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--teal);
    background: white;
  }

  .form-group textarea { resize: vertical; min-height: 120px; }

  .btn-form {
    width: 100%;
    padding: 14px;
    background: var(--navy-dark);
    color: white;
    border: none;
    border-radius: 16px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    letter-spacing: 0.02em;
  }

  .btn-form:hover { background: var(--teal); transform: translateY(-1px); }

  .btn-form:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }

  .btn-form .btn-text { display: inline; }
  .btn-form .btn-loading { display: none; }
  .btn-form.loading .btn-text { display: none; }
  .btn-form.loading .btn-loading { display: inline; }

  .form-status {
    text-align: center;
    padding: 20px;
    border-radius: 16px;
    margin-top: 16px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 600;
    display: none;
  }

  .form-status.success {
    display: block;
    background: rgba(0, 168, 158, 0.08);
    color: var(--teal);
    border: 1.5px solid rgba(0, 168, 158, 0.25);
  }

  .form-status.error {
    display: block;
    background: rgba(220, 53, 69, 0.08);
    color: #dc3545;
    border: 1.5px solid rgba(220, 53, 69, 0.25);
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--navy-dark);
    padding: 64px 5% 32px;
    color: rgba(255,255,255,0.55);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
  }

  .footer-brand .logo-main { color: white; font-size: 20px; }
  .footer-brand .logo-sub { color: var(--teal); }

  .footer-tagline {
    font-size: 13.5px;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    line-height: 1.7;
    margin-top: 16px;
  }

  .footer-col h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
  }

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul a {
    text-decoration: none;
    font-size: 13.5px;
    color: rgba(255,255,255,0.45);
    transition: color 0.2s;
  }
  .footer-col ul a:hover { color: var(--teal-light); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
  }

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

  .social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    transition: all 0.2s;
  }

  .social-link:hover { background: var(--teal); color: white; }

  @media (max-width: 900px) {
    .pillars-grid { grid-template-columns: 1fr; }
    .campaign-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-inner { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .hero-float { display: none; }
    .form-row { grid-template-columns: 1fr; }
  }

  
/* ─── HAMBURGER MENU ─── */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
    transform-origin: center;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 320px;
      height: 100vh;
      height: 100dvh;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      flex-direction: column;
      padding: 100px 32px 40px;
      gap: 0;
      box-shadow: -8px 0 32px rgba(12,44,96,0.12);
      transition: right 0.4s cubic-bezier(.4,0,.2,1);
      z-index: 1001;
      overflow-y: auto;
    }
    .nav-links.open {
      right: 0;
    }
    .nav-links li {
      border-bottom: 1px solid rgba(12,44,96,0.06);
    }
    .nav-links li:last-child {
      border-bottom: none;
      margin-top: 16px;
    }
    .nav-links a {
      display: block;
      padding: 16px 0;
      font-size: 16px;
      font-weight: 600;
      color: var(--navy) !important;
    }
    .nav-links a.nav-cta,
    .nav-links a.nav-cta:hover,
    .nav-links a.nav-cta:active {
      color: #fff !important;
    }
    .nav-cta {
      text-align: center;
      display: block;
      padding: 14px 24px !important;
    }
    .mobile-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(8,24,48,0.35);
      z-index: 999;
      opacity: 0;
      transition: opacity 0.35s ease;
    }
    .mobile-overlay.active {
      display: block;
      opacity: 1;
    }
  }
