<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Home | PALTmed Georgia</title>
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@700&display=swap" rel="stylesheet" />
  <style>
    /* ─── Reset & Base ─────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      color: #1b3968;
      background: #fff;
      line-height: 1.6;
    }
 
    /* ─── Colour Tokens ─────────────────────────────────────────────── */
    :root {
      --navy:     #1b3968;
      --blue:     #3a7cbf;
      --sky:      #5ba8d9;
      --gold:     #e8a020;
      --teal:     #3da8a0;
      --light-bg: #f2f6fb;
      --white:    #ffffff;
      --text:     #2c4a6b;
      --muted:    #5d7a9a;
      --border:   #d6e4f0;
    }
 
    /* ─── Navigation ─────────────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(27, 57, 104, 0.92);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      height: 56px;
    }
    nav .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    nav .nav-logo-icon {
      width: 32px; height: 32px;
      background: var(--white);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      padding: 3px;
    }
    nav .nav-logo-icon svg { width: 100%; height: 100%; }
    nav .nav-brand {
      color: var(--white);
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.03em;
      line-height: 1.2;
    }
    nav .nav-brand span { color: var(--sky); }
    nav ul {
      display: flex;
      list-style: none;
      gap: 4px;
    }
    nav ul li a {
      color: rgba(255,255,255,0.88);
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 500;
      padding: 6px 12px;
      border-radius: 4px;
      transition: all 0.2s;
      letter-spacing: 0.02em;
    }
    nav ul li a:hover {
      background: rgba(255,255,255,0.15);
      color: #fff;
    }
    nav .nav-cta {
      background: var(--gold) !important;
      color: var(--navy) !important;
      font-weight: 600 !important;
      border-radius: 20px !important;
    }
    nav .nav-cta:hover { background: #f0b030 !important; }
 
    /* ─── Hero ───────────────────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding-top: 56px;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(170deg,
          rgba(27, 57, 104, 0.72) 0%,
          rgba(91, 168, 217, 0.55) 50%,
          rgba(27, 57, 104, 0.80) 100%),
        url('https://images.unsplash.com/photo-1504701954957-2010ec3bcec1?w=1600&q=80') center/cover no-repeat;
    }
    /* Subtle animated shimmer on water */
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 60%, rgba(27,57,104,0.4) 100%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 780px;
      padding: 40px 24px;
    }
    .hero-logo-box {
      display: inline-block;
      background: rgba(255,255,255,0.95);
      border-radius: 12px;
      padding: 16px 28px;
      margin-bottom: 28px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    }
    .hero-logo-box img {
      height: 64px;
      display: block;
    }
    /* Fallback logo if image fails */
    .logo-fallback {
      display: flex;
      align-items: center;
      gap: 10px;
      height: 64px;
    }
    .logo-icon-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3px;
      width: 44px; height: 44px;
    }
    .logo-icon-block .sq { border-radius: 3px; }
    .sq-navy { background: var(--navy); }
    .sq-gold { background: var(--gold); border-radius: 50% !important; }
    .sq-teal { background: var(--teal); }
    .sq-teal2 { background: #2d8a82; }
    .logo-text-block { text-align: left; }
    .logo-text-block .lt-palt { font-weight: 800; font-size: 1.6rem; color: var(--navy); letter-spacing: -0.5px; }
    .logo-text-block .lt-med { color: var(--sky); font-weight: 300; }
    .logo-text-block .lt-ga { font-size: 0.65rem; font-weight: 700; color: var(--navy); letter-spacing: 0.15em; text-transform: uppercase; display: block; margin-top: -2px; }
 
    .hero h1 {
      font-family: 'Inter', sans-serif;
      font-size: clamp(1.6rem, 4vw, 2.6rem);
      font-weight: 300;
      color: #fff;
      margin-bottom: 14px;
      letter-spacing: -0.02em;
      text-shadow: 0 2px 12px rgba(0,0,0,0.3);
    }
    .hero h1 strong { font-weight: 700; }
    .hero p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.9);
      max-width: 560px;
      margin: 0 auto 32px;
      text-shadow: 0 1px 6px rgba(0,0,0,0.3);
    }
    .hero-buttons {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 28px;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s;
      cursor: pointer;
      border: none;
      letter-spacing: 0.02em;
    }
    .btn-primary { background: var(--gold); color: var(--navy); box-shadow: 0 4px 16px rgba(232,160,32,0.4); }
    .btn-primary:hover { background: #f0b030; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,160,32,0.5); }
    .btn-secondary { background: rgba(255,255,255,0.18); color: #fff; border: 2px solid rgba(255,255,255,0.6); backdrop-filter: blur(4px); }
    .btn-secondary:hover { background: rgba(255,255,255,0.28); transform: translateY(-2px); }
    .btn-blue { background: var(--blue); color: #fff; box-shadow: 0 4px 16px rgba(58,124,191,0.4); }
    .btn-blue:hover { background: #2d6aad; transform: translateY(-2px); }
    .btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
    .btn-outline:hover { background: var(--navy); color: #fff; }
    .btn-teal { background: var(--teal); color: #fff; box-shadow: 0 4px 16px rgba(61,168,160,0.35); }
    .btn-teal:hover { background: #2d8a82; transform: translateY(-2px); }
    .btn-sm { padding: 9px 20px; font-size: 0.82rem; }
 
    /* scroll indicator */
    .scroll-hint {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: rgba(255,255,255,0.7);
      font-size: 0.75rem;
      letter-spacing: 0.06em;
      animation: bob 2s ease-in-out infinite;
    }
    @keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
    .scroll-hint svg { width: 20px; }
 
    /* ─── Announcement Bar ──────────────────────────────────────────── */
    .announce-bar {
      background: var(--navy);
      color: #fff;
      text-align: center;
      padding: 11px 20px;
      font-size: 0.85rem;
      font-weight: 500;
    }
    .announce-bar a { color: var(--gold); text-decoration: none; font-weight: 600; }
 
    /* ─── Section Wrapper ───────────────────────────────────────────── */
    section { padding: 72px 40px; }
    .container { max-width: 1140px; margin: 0 auto; }
    .section-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--sky);
      margin-bottom: 8px;
    }
    .section-title {
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
      line-height: 1.25;
    }
    .section-accent {
      width: 44px; height: 3px;
      background: var(--gold);
      border-radius: 2px;
      margin-bottom: 20px;
    }
    .section-intro {
      font-size: 1rem;
      color: var(--muted);
      max-width: 600px;
      line-height: 1.7;
    }
 
    /* ─── Save the Date ─────────────────────────────────────────────── */
    .save-date-section {
      background: linear-gradient(135deg, #e8f4fd 0%, #d0e8f7 100%);
      padding: 56px 40px;
    }
    .save-date-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 12px 48px rgba(27,57,104,0.15);
      display: grid;
      grid-template-columns: 1fr 1fr;
      max-width: 1000px;
      margin: 0 auto;
    }
    .save-date-visual {
      position: relative;
      min-height: 400px;
      background:
        linear-gradient(160deg, rgba(27,57,104,0.6) 0%, rgba(91,168,217,0.4) 100%),
        url('https://images.unsplash.com/photo-1566438480900-0609be27a4be?w=800&q=80') center/cover no-repeat;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px 32px;
      text-align: center;
    }
    .save-date-badge {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      color: #fff;
      text-shadow: 0 2px 12px rgba(0,0,0,0.4);
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .save-date-badge small {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 600;
      color: rgba(255,255,255,0.85);
      margin-bottom: 6px;
    }
    .ceu-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--gold);
      color: var(--navy);
      font-weight: 700;
      font-size: 0.88rem;
      padding: 6px 16px;
      border-radius: 50px;
      margin-top: 12px;
    }
    .save-date-info {
      padding: 48px 44px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .save-date-info .label {
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--sky);
      margin-bottom: 10px;
    }
    .save-date-info h2 {
      font-size: 1.9rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 6px;
    }
    .event-meta {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 20px 0 28px;
    }
    .event-meta-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.92rem;
      color: var(--text);
    }
    .event-meta-item svg {
      width: 18px; height: 18px;
      color: var(--sky);
      flex-shrink: 0;
    }
    .event-meta-item strong { color: var(--navy); }
    .feature-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 28px;
    }
    .chip {
      font-size: 0.78rem;
      font-weight: 500;
      padding: 5px 13px;
      border-radius: 50px;
      background: var(--light-bg);
      color: var(--navy);
      border: 1px solid var(--border);
    }
 
    /* ─── About ─────────────────────────────────────────────────────── */
    .about-section { background: #fff; }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .about-image-wrap {
      position: relative;
    }
    .about-image-wrap img {
      width: 100%;
      border-radius: 16px;
      display: block;
      object-fit: cover;
      height: 420px;
    }
    .about-image-accent {
      position: absolute;
      bottom: -16px;
      right: -16px;
      width: 120px; height: 120px;
      background: var(--gold);
      border-radius: 16px;
      z-index: -1;
    }
    .about-content p {
      color: var(--muted);
      font-size: 0.97rem;
      line-height: 1.75;
      margin-bottom: 16px;
    }
    .stat-row {
      display: flex;
      gap: 28px;
      margin: 28px 0;
    }
    .stat-box {
      text-align: center;
      padding: 16px 20px;
      background: var(--light-bg);
      border-radius: 12px;
      flex: 1;
    }
    .stat-box .stat-num {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
    }
    .stat-box .stat-label {
      font-size: 0.72rem;
      color: var(--muted);
      margin-top: 4px;
      font-weight: 500;
    }
 
    /* ─── Quick Actions ─────────────────────────────────────────────── */
    .actions-section {
      background: var(--light-bg);
      padding: 64px 40px;
    }
    .actions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 40px;
    }
    .action-card {
      background: #fff;
      border-radius: 16px;
      padding: 36px 30px;
      text-align: center;
      border: 1px solid var(--border);
      box-shadow: 0 2px 16px rgba(27,57,104,0.06);
      transition: all 0.25s;
    }
    .action-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(27,57,104,0.12);
    }
    .action-icon {
      width: 60px; height: 60px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 1.6rem;
    }
    .icon-blue { background: rgba(58,124,191,0.1); }
    .icon-gold { background: rgba(232,160,32,0.1); }
    .icon-teal { background: rgba(61,168,160,0.1); }
    .action-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }
    .action-card p {
      font-size: 0.87rem;
      color: var(--muted);
      margin-bottom: 22px;
      line-height: 1.6;
    }
 
    /* ─── Membership / Stripe ───────────────────────────────────────── */
    .membership-section { background: var(--navy); }
    .membership-section .section-title { color: #fff; }
    .membership-section .section-label { color: var(--sky); }
    .membership-section .section-intro { color: rgba(255,255,255,0.7); }
    .membership-section .section-accent { background: var(--gold); }
    .plans-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px;
    }
    .plan-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 16px;
      padding: 32px 28px;
      transition: all 0.25s;
      position: relative;
    }
    .plan-card.featured {
      background: #fff;
      border-color: var(--gold);
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    }
    .plan-badge {
      position: absolute;
      top: -12px; left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--navy);
      font-size: 0.72rem;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: 50px;
      letter-spacing: 0.06em;
      white-space: nowrap;
    }
    .plan-card h3 {
      font-size: 0.95rem;
      font-weight: 700;
      color: rgba(255,255,255,0.85);
      margin-bottom: 6px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .plan-card.featured h3 { color: var(--navy); }
    .plan-price {
      margin: 14px 0 20px;
    }
    .plan-price .amount {
      font-size: 2.2rem;
      font-weight: 700;
      color: #fff;
      line-height: 1;
    }
    .plan-card.featured .plan-price .amount { color: var(--navy); }
    .plan-price .period {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.55);
    }
    .plan-card.featured .plan-price .period { color: var(--muted); }
    .plan-features {
      list-style: none;
      margin-bottom: 24px;
    }
    .plan-features li {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.75);
      padding: 6px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .plan-card.featured .plan-features li { color: var(--text); border-bottom-color: var(--border); }
    .plan-features li::before {
      content: '✓';
      color: var(--teal);
      font-weight: 700;
      font-size: 0.82rem;
    }
    .stripe-note {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 32px;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.5);
    }
    .stripe-note svg { width: 16px; }
 
    /* ─── Registration Form ─────────────────────────────────────────── */
    .register-section { background: #fff; }
    .register-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }
    .register-info h2 { margin-bottom: 8px; }
    .register-info p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
    .benefit-list { list-style: none; }
    .benefit-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 10px 0;
      font-size: 0.9rem;
      color: var(--text);
      border-bottom: 1px solid var(--border);
    }
    .benefit-list li .check {
      width: 22px; height: 22px;
      background: rgba(61,168,160,0.12);
      color: var(--teal);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .register-form {
      background: var(--light-bg);
      border-radius: 20px;
      padding: 36px 32px;
      border: 1px solid var(--border);
    }
    .register-form h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 22px;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group { margin-bottom: 16px; }
    .form-group label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 10px 14px;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      font-size: 0.88rem;
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: #fff;
      transition: border-color 0.2s;
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(58,124,191,0.1);
    }
    .form-group textarea { resize: vertical; min-height: 80px; }
    .form-submit-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 6px;
    }
    .form-note { font-size: 0.75rem; color: var(--muted); }
 
    /* ─── Events ─────────────────────────────────────────────────────── */
    .events-section { background: var(--light-bg); }
    .events-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 40px;
    }
    .event-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 2px 12px rgba(27,57,104,0.06);
      display: flex;
      transition: all 0.25s;
    }
    .event-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(27,57,104,0.12);
    }
    .event-card-img {
      width: 140px;
      flex-shrink: 0;
      object-fit: cover;
      display: block;
    }
    .event-card-body { padding: 22px 22px; flex: 1; }
    .event-tag {
      font-size: 0.68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--sky);
      margin-bottom: 6px;
    }
    .event-card-body h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
      line-height: 1.3;
    }
    .event-card-body p {
      font-size: 0.83rem;
      color: var(--muted);
      line-height: 1.55;
      margin-bottom: 14px;
    }
    .event-date-badge {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--blue);
      background: rgba(58,124,191,0.08);
      display: inline-block;
      padding: 3px 10px;
      border-radius: 50px;
      margin-bottom: 12px;
    }
 
    /* ─── Courses ─────────────────────────────────────────────────────── */
    .courses-section { background: #fff; }
    .courses-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 40px;
    }
    .course-card {
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      transition: all 0.25s;
    }
    .course-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(27,57,104,0.1);
    }
    .course-card-header {
      height: 8px;
      background: linear-gradient(90deg, var(--navy), var(--sky));
    }
    .course-card-body { padding: 22px; }
    .course-card-body h3 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
      line-height: 1.35;
    }
    .course-card-body p {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.55;
      margin-bottom: 16px;
    }
    .module-count {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--sky);
      background: rgba(91,168,217,0.1);
      padding: 3px 10px;
      border-radius: 50px;
      display: inline-block;
      margin-bottom: 14px;
    }
 
    /* ─── Donate ─────────────────────────────────────────────────────── */
    .donate-section {
      background: linear-gradient(135deg, var(--teal) 0%, #2d8a82 100%);
      text-align: center;
      padding: 72px 40px;
    }
    .donate-section .section-label { color: rgba(255,255,255,0.75); }
    .donate-section .section-title { color: #fff; }
    .donate-section .section-accent { background: rgba(255,255,255,0.5); margin: 0 auto 20px; }
    .donate-section p {
      color: rgba(255,255,255,0.88);
      font-size: 1rem;
      max-width: 540px;
      margin: 0 auto 32px;
      line-height: 1.7;
    }
    .donate-features {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-bottom: 36px;
      flex-wrap: wrap;
    }
    .donate-feat {
      text-align: center;
      color: rgba(255,255,255,0.9);
    }
    .donate-feat .num {
      font-size: 1.8rem;
      font-weight: 700;
      color: #fff;
      display: block;
    }
    .donate-feat .lbl {
      font-size: 0.8rem;
      opacity: 0.8;
    }
    .donate-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-white { background: #fff; color: var(--teal); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
    .btn-white:hover { background: #f5f5f5; transform: translateY(-2px); }
    .btn-outline-white {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,0.6);
    }
    .btn-outline-white:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
 
    /* ─── Footer ─────────────────────────────────────────────────────── */
    footer {
      background: #0e2444;
      color: rgba(255,255,255,0.7);
      padding: 56px 40px 28px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      max-width: 1140px;
      margin: 0 auto;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .footer-brand .logo-fallback .lt-palt,
    .footer-brand .logo-fallback .lt-med { color: #fff; }
    .footer-brand .logo-fallback .lt-ga { color: rgba(255,255,255,0.6); }
    .footer-brand p {
      font-size: 0.85rem;
      line-height: 1.65;
      margin-top: 16px;
      color: rgba(255,255,255,0.55);
    }
    .footer-col h4 {
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.5);
      margin-bottom: 14px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 8px; }
    .footer-col ul li a {
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      font-size: 0.87rem;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: #fff; }
    .footer-bottom {
      max-width: 1140px;
      margin: 24px auto 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.35);
      flex-wrap: wrap;
      gap: 10px;
    }
    .footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
 
    /* ─── Responsive ─────────────────────────────────────────────────── */
    @media (max-width: 900px) {
      section { padding: 52px 24px; }
      nav { padding: 0 20px; }
      nav ul { display: none; }
      .save-date-card { grid-template-columns: 1fr; }
      .save-date-visual { min-height: 280px; }
      .about-grid { grid-template-columns: 1fr; gap: 32px; }
      .about-image-wrap img { height: 280px; }
      .actions-grid { grid-template-columns: 1fr; }
      .plans-grid { grid-template-columns: 1fr; }
      .register-grid { grid-template-columns: 1fr; }
      .events-grid { grid-template-columns: 1fr; }
      .courses-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .form-row { grid-template-columns: 1fr; }
    }
  </style>
</head>
<body>
 
<!-- ══════════ NAVIGATION ══════════ -->
<nav>
  <a href="#" class="nav-logo">
    <div class="nav-logo-icon">
      <svg viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
        <rect x="2" y="2" width="16" height="16" rx="3" fill="#1b3968"/>
        <circle cx="26" cy="10" r="8" fill="#e8a020"/>
        <ellipse cx="12" cy="30" rx="7" ry="8" fill="#3da8a0"/>
        <ellipse cx="26" cy="30" rx="7" ry="8" fill="#2d8a82"/>
      </svg>
    </div>
    <div class="nav-brand"><span>PALT</span>med Georgia</div>
  </a>
  <ul>
    <li><a href="#membership">Membership</a></li>
    <li><a href="#events">Events</a></li>
    <li><a href="#resources">Resources</a></li>
    <li><a href="#">Publications</a></li>
    <li><a href="#">Advocacy</a></li>
    <li><a href="#">About Us</a></li>
    <li><a href="#">Member Forum</a></li>
    <li><a href="#register" class="nav-cta btn btn-sm">Join Now</a></li>
  </ul>
</nav>
 
<!-- ══════════ HERO ══════════ -->
<div class="hero">
  <div class="hero-bg"></div>
  <div class="hero-content">
    <div class="hero-logo-box">
      <div class="logo-fallback">
        <div class="logo-icon-block">
          <div class="sq sq-navy"></div>
          <div class="sq sq-gold"></div>
          <div class="sq sq-teal"></div>
          <div class="sq sq-teal2"></div>
        </div>
        <div class="logo-text-block">
          <div class="lt-palt">PALT<span class="lt-med">med</span></div>
          <span class="lt-ga">Georgia</span>
        </div>
      </div>
    </div>
    <h1><strong>Advancing Excellence</strong> in<br/>Post-Acute &amp; Long-Term Care</h1>
    <p>Georgia's premier chapter for medical directors, physicians, and advanced practitioners in PALTC settings — connecting, educating, and advocating for better patient care.</p>
    <div class="hero-buttons">
      <a href="#register" class="btn btn-primary">&#10003;&nbsp; Become a Member</a>
      <a href="#symposium" class="btn btn-secondary">Symposium 2026 →</a>
      <a href="#donate" class="btn btn-secondary">❤&nbsp; Donate</a>
    </div>
  </div>
  <div class="scroll-hint">
    <span>SCROLL</span>
    <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M7 10l5 5 5-5"/></svg>
  </div>
</div>
 
<!-- ══════════ ANNOUNCEMENT BAR ══════════ -->
<div class="announce-bar">
  🗓&nbsp; <strong>PALTC 26 Annual Conference</strong> — March 26–28, 2026 · Anaheim, CA &nbsp;|&nbsp;
  <a href="#">Secure Your Spot →</a>
</div>
 
<!-- ══════════ SAVE THE DATE ══════════ -->
<section class="save-date-section" id="symposium">
  <div class="container">
    <div class="save-date-card">
      <div class="save-date-visual">
        <div class="save-date-badge">
          <small>Save the Date</small>
          Symposium<br/>2026
        </div>
        <div class="ceu-chip">
          ★&nbsp; Earn <strong style="margin: 0 4px;">10</strong> CEUs
        </div>
      </div>
      <div class="save-date-info">
        <div class="label">PALTmed Georgia Annual Event</div>
        <h2>Symposium 2026<br/>at Lake Lanier, GA</h2>
        <div class="event-meta">
          <div class="event-meta-item">
            <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="3" y="4" width="18" height="18" rx="2"/><line x1="16" y1="2" x2="16" y2="6"/><line x1="8" y1="2" x2="8" y2="6"/><line x1="3" y1="10" x2="21" y2="10"/></svg>
            <span><strong>August 28 – August 30, 2026</strong></span>
          </div>
          <div class="event-meta-item">
            <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7z"/><circle cx="12" cy="9" r="2.5"/></svg>
            <span>Lake Lanier, Georgia</span>
          </div>
        </div>
        <div class="feature-chips">
          <span class="chip">Expert Speakers</span>
          <span class="chip">Interactive Workshops</span>
          <span class="chip">Networking</span>
          <span class="chip">10 CEUs</span>
        </div>
        <p style="font-size:0.88rem;color:var(--muted);margin-bottom:20px;">Join us for an engaging symposium with nationally recognized speakers, hands-on workshops, and valuable networking opportunities tailored to PALTC practitioners.</p>
        <div style="display:flex;gap:12px;flex-wrap:wrap;">
          <!-- REPLACE href with your actual Stripe payment link for symposium registration -->
          <a href="https://buy.stripe.com/YOUR_SYMPOSIUM_LINK" class="btn btn-blue btn-sm">Register Now (via Stripe)</a>
          <a href="#" class="btn btn-outline btn-sm">Learn More</a>
        </div>
        <p style="font-size:0.72rem;color:var(--muted);margin-top:10px;">🔒 Secure payment powered by Stripe</p>
      </div>
    </div>
  </div>
</section>
 
<!-- ══════════ ABOUT ══════════ -->
<section class="about-section" id="about">
  <div class="container">
    <div class="about-grid">
      <div class="about-image-wrap">
        <img src="https://images.unsplash.com/photo-1559839734-2b71ea197ec2?w=800&q=80" alt="Medical professionals" />
        <div class="about-image-accent"></div>
      </div>
      <div class="about-content">
        <div class="section-label">Who We Are</div>
        <h2 class="section-title">Welcome to PALTmed Georgia</h2>
        <div class="section-accent"></div>
        <p>PALTmed Georgia is an official chapter of the Post-Acute and Long-Term Care Medical Association (PALTmed) — the only medical specialty society representing the community of medical directors, physicians, nurse practitioners, physician assistants, and other practitioners working in the various post-acute and long-term care (PALTC) settings.</p>
        <p>Our chapter connects Georgia's PALTC professionals with education, advocacy resources, peer networks, and tools to deliver the highest standard of care in skilled nursing, assisted living, and other post-acute settings.</p>
        <div class="stat-row">
          <div class="stat-box"><div class="stat-num">500+</div><div class="stat-label">Georgia Members</div></div>
          <div class="stat-box"><div class="stat-num">10+</div><div class="stat-label">CEUs per Symposium</div></div>
          <div class="stat-box"><div class="stat-num">30+</div><div class="stat-label">Years of PALTmed</div></div>
        </div>
        <a href="#register" class="btn btn-blue">Start Your Journey Today</a>
      </div>
    </div>
  </div>
</section>
 
<!-- ══════════ QUICK ACTIONS ══════════ -->
<section class="actions-section">
  <div class="container">
    <div class="section-label">Get Involved</div>
    <h2 class="section-title">How Can We Help You?</h2>
    <div class="section-accent"></div>
    <div class="actions-grid">
      <div class="action-card">
        <div class="action-icon icon-blue">🏥</div>
        <h3>Join &amp; Register</h3>
        <p>Become a PALTmed Georgia member. Access exclusive education resources, events, and peer networks.</p>
        <!-- REPLACE href with your Stripe payment link for membership -->
        <a href="https://buy.stripe.com/YOUR_MEMBERSHIP_LINK" class="btn btn-blue btn-sm">Join via Stripe</a>
      </div>
      <div class="action-card">
        <div class="action-icon icon-gold">📅</div>
        <h3>Upcoming Events</h3>
        <p>From the PALTC26 Annual Conference to our Symposium 2026 at Lake Lanier — stay connected.</p>
        <a href="#events" class="btn btn-primary btn-sm">View Events</a>
      </div>
      <div class="action-card">
        <div class="action-icon icon-teal">❤️</div>
        <h3>Support Our Mission</h3>
        <p>Help us advance advocacy, education, and excellence in post-acute care across Georgia.</p>
        <!-- REPLACE href with your GoFundMe link -->
        <a href="https://www.gofundme.com/YOUR_CAMPAIGN" target="_blank" class="btn btn-teal btn-sm">Donate on GoFundMe</a>
      </div>
    </div>
  </div>
</section>
 
<!-- ══════════ MEMBERSHIP PLANS / STRIPE ══════════ -->
<section class="membership-section" id="membership">
  <div class="container">
    <div class="section-label">Membership</div>
    <h2 class="section-title">Choose Your Plan</h2>
    <div class="section-accent"></div>
    <p class="section-intro">Secure, instant payment via Stripe. Choose the membership tier that fits your practice and career stage.</p>
    <div class="plans-grid">
      <div class="plan-card">
        <h3>Associate</h3>
        <div class="plan-price">
          <span class="amount">$99</span>
          <span class="period"> / year</span>
        </div>
        <ul class="plan-features">
          <li>Access to member resources</li>
          <li>PALTmed Georgia newsletter</li>
          <li>Member directory listing</li>
          <li>Discounted event pricing</li>
        </ul>
        <!-- REPLACE href with your Stripe payment link -->
        <a href="https://buy.stripe.com/YOUR_ASSOCIATE_LINK" class="btn btn-outline" style="width:100%;justify-content:center;border-color:rgba(255,255,255,0.3);color:#fff;">Select Plan</a>
      </div>
 
      <div class="plan-card featured">
        <div class="plan-badge">Most Popular</div>
        <h3>Active Member</h3>
        <div class="plan-price">
          <span class="amount">$199</span>
          <span class="period"> / year</span>
        </div>
        <ul class="plan-features">
          <li>All Associate benefits</li>
          <li>CEU course access</li>
          <li>Voting rights &amp; governance</li>
          <li>Symposium early registration</li>
          <li>Member Forum access</li>
        </ul>
        <!-- REPLACE href with your Stripe payment link -->
        <a href="https://buy.stripe.com/YOUR_ACTIVE_LINK" class="btn btn-blue" style="width:100%;justify-content:center;">Join Now</a>
      </div>
 
      <div class="plan-card">
        <h3>Fellow / Medical Director</h3>
        <div class="plan-price">
          <span class="amount">$299</span>
          <span class="period"> / year</span>
        </div>
        <ul class="plan-features">
          <li>All Active Member benefits</li>
          <li>Leadership opportunities</li>
          <li>Complimentary symposium ticket</li>
          <li>PALTmed national benefits</li>
          <li>Priority CME resources</li>
        </ul>
        <!-- REPLACE href with your Stripe payment link -->
        <a href="https://buy.stripe.com/YOUR_FELLOW_LINK" class="btn btn-outline" style="width:100%;justify-content:center;border-color:rgba(255,255,255,0.3);color:#fff;">Select Plan</a>
      </div>
    </div>
    <div class="stripe-note">
      <svg viewBox="0 0 24 24" fill="currentColor"><path d="M20 4H4c-1.11 0-2 .89-2 2v12c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V8h16v10zm-11-7v2H7v-2h2zm0 4v-2H7v2h2zm4-4v2h-2v-2h2zm0 4v-2h-2v2h2zm4-4v2h-2v-2h2zm0 4v-2h-2v2h2z"/></svg>
      Payments are processed securely by <strong style="color:rgba(255,255,255,0.7);">Stripe</strong> &nbsp;·&nbsp; SSL encrypted &nbsp;·&nbsp; No data stored on this site
    </div>
  </div>
</section>
 
<!-- ══════════ MEMBER REGISTRATION FORM ══════════ -->
<section class="register-section" id="register">
  <div class="container">
    <div class="register-grid">
      <div class="register-info">
        <div class="section-label">Registration</div>
        <h2 class="section-title">Create Your<br/>Member Profile</h2>
        <div class="section-accent"></div>
        <p>Register to track your membership, access CEU certificates, connect with peers, and stay current on Georgia PALTC news and advocacy.</p>
        <ul class="benefit-list">
          <li><span class="check">✓</span> Access your member dashboard &amp; CEU tracking</li>
          <li><span class="check">✓</span> Manage event registrations in one place</li>
          <li><span class="check">✓</span> Connect with Georgia's PALTC community</li>
          <li><span class="check">✓</span> Receive advocacy alerts and legislative updates</li>
          <li><span class="check">✓</span> Download resources, toolkits, and publications</li>
        </ul>
      </div>
      <div class="register-form">
        <h3>Member Registration</h3>
        <!-- NOTE: Connect this form to your backend / Zoho CRM / email service for tracking -->
        <form id="memberForm" onsubmit="handleRegister(event)">
          <div class="form-row">
            <div class="form-group">
              <label for="fname">First Name *</label>
              <input type="text" id="fname" placeholder="e.g. Jane" required />
            </div>
            <div class="form-group">
              <label for="lname">Last Name *</label>
              <input type="text" id="lname" placeholder="e.g. Smith" required />
            </div>
          </div>
          <div class="form-group">
            <label for="email">Email Address *</label>
            <input type="email" id="email" placeholder="jane@clinic.com" required />
          </div>
          <div class="form-group">
            <label for="phone">Phone Number</label>
            <input type="tel" id="phone" placeholder="(404) 000-0000" />
          </div>
          <div class="form-group">
            <label for="credential">Professional Credential *</label>
            <select id="credential" required>
              <option value="">Select credential…</option>
              <option>MD – Medical Doctor</option>
              <option>DO – Doctor of Osteopathic Medicine</option>
              <option>NP – Nurse Practitioner</option>
              <option>PA – Physician Assistant</option>
              <option>RN – Registered Nurse</option>
              <option>Other</option>
            </select>
          </div>
          <div class="form-group">
            <label for="facility">Facility / Organization</label>
            <input type="text" id="facility" placeholder="e.g. Peachtree SNF, Atlanta" />
          </div>
          <div class="form-group">
            <label for="tier">Membership Tier *</label>
            <select id="tier" required>
              <option value="">Select tier…</option>
              <option>Associate – $99/yr</option>
              <option>Active Member – $199/yr</option>
              <option>Fellow / Medical Director – $299/yr</option>
            </select>
          </div>
          <div class="form-submit-row">
            <span class="form-note">🔒 Your info is private &amp; secure</span>
            <button type="submit" class="btn btn-blue btn-sm">Submit &amp; Pay →</button>
          </div>
          <p id="form-msg" style="display:none;margin-top:12px;font-size:0.85rem;color:var(--teal);font-weight:600;"></p>
        </form>
      </div>
    </div>
  </div>
</section>
 
<!-- ══════════ EVENTS ══════════ -->
<section class="events-section" id="events">
  <div class="container">
    <div class="section-label">Calendar</div>
    <h2 class="section-title">Upcoming Events</h2>
    <div class="section-accent"></div>
    <div class="events-grid">
      <div class="event-card">
        <img class="event-card-img"
          src="https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=300&q=80"
          alt="PALTC26 Conference" />
        <div class="event-card-body">
          <div class="event-tag">Annual Conference</div>
          <div class="event-date-badge">March 26–28, 2026</div>
          <h3>PALTC 26 — Attend Your Way</h3>
          <p>Join us in Anaheim, CA for PALTC26. Learn, connect, and be inspired — onsite or via Virtual Learning Track with no change fees.</p>
          <a href="#" class="btn btn-blue btn-sm">Secure My Spot</a>
        </div>
      </div>
      <div class="event-card">
        <img class="event-card-img"
          src="https://images.unsplash.com/photo-1566438480900-0609be27a4be?w=300&q=80"
          alt="Symposium 2026" />
        <div class="event-card-body">
          <div class="event-tag">Georgia Symposium</div>
          <div class="event-date-badge">August 28–30, 2026</div>
          <h3>PALTmed Georgia Symposium 2026</h3>
          <p>Lake Lanier, GA. Expert speakers, interactive workshops, networking &amp; 10 CEUs. Don't miss Georgia's premier PALTC event.</p>
          <!-- REPLACE href with your Stripe symposium registration link -->
          <a href="https://buy.stripe.com/YOUR_SYMPOSIUM_LINK" class="btn btn-primary btn-sm">Register Now</a>
        </div>
      </div>
    </div>
  </div>
</section>
 
<!-- ══════════ COURSES ══════════ -->
<section class="courses-section" id="resources">
  <div class="container">
    <div class="section-label">Education</div>
    <h2 class="section-title">PALT Essentials &amp; Resources</h2>
    <div class="section-accent"></div>
    <p class="section-intro">Self-paced courses and clinical resources designed specifically for PALTC practitioners. Earn CEUs while advancing your practice.</p>
    <div class="courses-grid">
      <div class="course-card">
        <div class="course-card-header"></div>
        <div class="course-card-body">
          <div class="module-count">16 Modules</div>
          <h3>PALT Essentials: Clinical Competencies</h3>
          <p>Explore unique clinical and professional competencies needed to manage medically complex patients and navigate PALTC practice challenges.</p>
          <a href="#" class="btn btn-blue btn-sm">Start Course</a>
        </div>
      </div>
      <div class="course-card">
        <div class="course-card-header" style="background:linear-gradient(90deg,var(--teal),#2d8a82)"></div>
        <div class="course-card-body">
          <div class="module-count" style="color:var(--teal);background:rgba(61,168,160,0.1);">New Modules Added</div>
          <h3>Drive to Deprescribe (D2D)</h3>
          <p>Equip yourself with skills to implement and sustain effective deprescribing practices in your facility. Start with any module that fits your practice.</p>
          <a href="#" class="btn btn-teal btn-sm">Know More</a>
        </div>
      </div>
      <div class="course-card">
        <div class="course-card-header" style="background:linear-gradient(90deg,var(--gold),#f0b030)"></div>
        <div class="course-card-body">
          <div class="module-count" style="color:var(--gold);background:rgba(232,160,32,0.1);">Member Exclusive</div>
          <h3>Advocacy Toolkit &amp; Resources</h3>
          <p>Access legislative briefings, position statements, and tools to advocate for PALTC patients and providers at the state and federal level.</p>
          <a href="#membership" class="btn btn-primary btn-sm">Join to Access</a>
        </div>
      </div>
    </div>
  </div>
</section>
 
<!-- ══════════ DONATE ══════════ -->
<section class="donate-section" id="donate">
  <div class="container">
    <div class="section-label">Support the Mission</div>
    <h2 class="section-title">Help Us Make a Difference</h2>
    <div class="section-accent"></div>
    <p>Your donation supports education, advocacy, and resources that improve care quality for Georgia's most vulnerable patients in post-acute and long-term care settings.</p>
    <div class="donate-features">
      <div class="donate-feat"><span class="num">500+</span><span class="lbl">Members Supported</span></div>
      <div class="donate-feat"><span class="num">10+</span><span class="lbl">CEUs per Event</span></div>
      <div class="donate-feat"><span class="num">100%</span><span class="lbl">Goes to Mission</span></div>
    </div>
    <div class="donate-buttons">
      <!-- REPLACE href with your actual GoFundMe campaign URL -->
      <a href="https://www.gofundme.com/YOUR_CAMPAIGN_LINK" target="_blank" class="btn btn-white">
        ❤&nbsp; Donate on GoFundMe
      </a>
      <a href="#membership" class="btn btn-outline-white">Become a Member</a>
    </div>
  </div>
</section>
 
<!-- ══════════ FOOTER ══════════ -->
<footer>
  <div class="footer-grid">
    <div class="footer-brand">
      <div class="logo-fallback">
        <div class="logo-icon-block">
          <div class="sq sq-navy" style="background:rgba(255,255,255,0.25)"></div>
          <div class="sq sq-gold"></div>
          <div class="sq sq-teal"></div>
          <div class="sq sq-teal2"></div>
        </div>
        <div class="logo-text-block">
          <div class="lt-palt" style="color:#fff;">PALT<span class="lt-med" style="color:var(--sky);">med</span></div>
          <span class="lt-ga" style="color:rgba(255,255,255,0.55);">Georgia</span>
        </div>
      </div>
      <p>Georgia's chapter of the Post-Acute and Long-Term Care Medical Association. Serving PALTC practitioners across the state.</p>
    </div>
    <div class="footer-col">
      <h4>Membership</h4>
      <ul>
        <li><a href="#membership">Join Now</a></li>
        <li><a href="#register">Register</a></li>
        <li><a href="#">Member Benefits</a></li>
        <li><a href="#">Renew</a></li>
      </ul>
    </div>
    <div class="footer-col">
      <h4>Resources</h4>
      <ul>
        <li><a href="#">Events</a></li>
        <li><a href="#">Publications</a></li>
        <li><a href="#">PALT Essentials</a></li>
        <li><a href="#">Advocacy</a></li>
      </ul>
    </div>
    <div class="footer-col">
      <h4>Connect</h4>
      <ul>
        <li><a href="#">About Us</a></li>
        <li><a href="#">Member Forum</a></li>
        <li><a href="#">Contact</a></li>
        <!-- REPLACE with GoFundMe link -->
        <li><a href="https://www.gofundme.com/YOUR_CAMPAIGN_LINK" target="_blank">Donate</a></li>
      </ul>
    </div>
  </div>
  <div class="footer-bottom">
    <span>© 2026 PALTmed Georgia. All rights reserved.</span>
    <span><a href="#">Privacy Policy</a> · <a href="#">Terms of Use</a></span>
  </div>
</footer>
 
<!-- ══════════ FORM HANDLER ══════════ -->
<script>
  function handleRegister(e) {
    e.preventDefault();
    const tier = document.getElementById('tier').value;
    const msg = document.getElementById('form-msg');
 
    // Map tiers to Stripe payment links — REPLACE these with your actual Stripe links
    const stripeLinks = {
      'Associate – $99/yr':               'https://buy.stripe.com/YOUR_ASSOCIATE_LINK',
      'Active Member – $199/yr':           'https://buy.stripe.com/YOUR_ACTIVE_LINK',
      'Fellow / Medical Director – $299/yr': 'https://buy.stripe.com/YOUR_FELLOW_LINK',
    };
 
    const link = stripeLinks[tier];
    if (link && !link.includes('YOUR_')) {
      // In production: collect form data, POST to backend/Zoho CRM, then redirect to Stripe
      window.location.href = link;
    } else {
      msg.style.display = 'block';
      msg.textContent = '✓ Details received! You will be redirected to secure payment once Stripe links are configured.';
    }
  }
 
  // Smooth active nav state on scroll
  const sections = document.querySelectorAll('section[id], div[id]');
  window.addEventListener('scroll', () => {
    let current = '';
    sections.forEach(s => {
      if (window.scrollY >= s.offsetTop - 80) current = s.id;
    });
    document.querySelectorAll('nav ul li a').forEach(a => {
      a.style.background = a.getAttribute('href') === '#' + current
        ? 'rgba(255,255,255,0.15)' : '';
    });
  });
</script>
</body>
</html>
 