  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    font-family: 'Roboto', sans-serif;
    background: #f0f4f8;
    color: #1a1a2e;
    overflow-x: hidden;
  }

    /* ============ HEADER ============ */
  .header {
    background: linear-gradient(135deg, #022B59 0%, #022B59 0%, #022B59 0%);
    padding: 50px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    position: relative;
    overflow: hidden;
  }
  .header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 400px 300px at 15% 50%, rgba(37,99,235,0.08), transparent),
      radial-gradient(ellipse 300px 250px at 85% 50%, rgba(96,165,250,0.06), transparent);
    pointer-events: none;
  }
  .header::after {
    content: '';
    position: absolute;
    right: 0; top: 0;
    width: 220px; height: 100%;
    background: repeating-linear-gradient(
      0deg, transparent, transparent 12px, rgba(255,255,255,0.03) 12px, rgba(255,255,255,0.03) 13px
    );
    pointer-events: none;
  }

  .logo-block {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1;
  }
  .logo-block .logo-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }
  .logo-block .logo-label {
    display: flex;
    flex-direction: column;
  }
  .logo-block .logo-label .name {
    font-size: 21px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2.5px;
    line-height: 1.15;
  }
  .logo-block .logo-label .sub {
    font-size: 10.5px;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.3px;
    font-weight: 400;
    margin-top: 2px;
  }
  .header-divider {
    width: 2px;
    height: 56px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.3), transparent);
    flex-shrink: 0;
  }
  .logo-aapm .name {
    font-size: 15px !important;
    letter-spacing: 1.2px !important;
    line-height: 1.35 !important;
  }
  .logo-aapm .name em {
    font-style: italic;
    font-weight: 400;
    opacity: 0.85;
  }

  /* Main container */
  .main-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Title section */
  .title-section {
    text-align: center;
    padding: 40px 20px 20px;
    position: relative;
  }
  .title-section::before, .title-section::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 60px;
    top: 20px;
    opacity: 0.08;
    background: url("data:image/svg+xml,%3Csvg width='120' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60 Q30 0 60 30 Q90 60 120 0' stroke='%230d2a5c' fill='none' stroke-width='1'/%3E%3C/svg%3E") no-repeat;
  }
  .title-section::before { left: 0; }
  .title-section::after { right: 0; transform: scaleX(-1); }

  .main-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: #0d2a5c;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 8px;
  }
  .main-title .highlight {
    color: #1e5faa;
  }
  .subtitle {
    font-size: 29px;
    color: #2563eb;
    font-weight: 500;
    letter-spacing: 0.3px;
    max-width: 100%;
    margin: 0 auto;
  }

  /* CPE badge */
  .cpe-badge {
    background: linear-gradient(135deg, #CEE1F0 0%, #CEE1F0 0%);
    border-radius: 12px;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /*margin: 24px auto 16px;
    max-width: 900px;*/
    flex-wrap: wrap;
    border: 1px solid #c5d6ec;
  }
  .cpe-badge-text {
    font-size: 20px;
    font-weight: 600;
    color: #0d2a5c;
    letter-spacing: 0.5px;
  }
  .cpe-badge-divider {
    width: 1px;
    height: 24px;
    background: #a0b8d4;
  }
  .cpe-iomp {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .cpe-iomp svg {
    width: 40px;
    height: 40px;
  }
  .cpe-iomp-text {
    font-size: 11px;
    color: #4a6785;
    line-height: 1.3;
  }
  .cpe-iomp-text strong {
    display: block;
    font-size: 16px;
    color: #0d2a5c;
    font-weight: 800;
    letter-spacing: 1px;
  }

  /* Tagline */
  .tagline {
    text-align: center;
    font-size: 20px;
    color: #0d2a5c;
    font-weight: 500;
    padding: 12px 20px 28px;
    letter-spacing: 0.3px;
  }
  .tagline strong {
    font-weight: 700;
  }

  /* Content grid */
  .content-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 24px;
    margin-bottom: 24px;
  }

  /* Left column */
  .left-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
  }
  .card-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 10px;
  }
  .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .card-icon svg {
    width: 28px;
    height: 28px;
  }
  .card-icon.blue { background: linear-gradient(135deg, #0d2a5c, #1e5faa); }
  .card-icon.blue svg path, .card-icon.blue svg rect, .card-icon.blue svg circle, .card-icon.blue svg line, .card-icon.blue svg polyline { stroke: #fff; fill: none; }
  .card-icon.red { background: linear-gradient(135deg, #dc2626, #ef4444); }
  .card-icon.red svg path, .card-icon.red svg rect, .card-icon.red svg circle { stroke: #fff; fill: none; }
  .card-icon.cyan { background: linear-gradient(135deg, #0891b2, #06b6d4); }
  .card-icon.cyan svg path, .card-icon.cyan svg rect, .card-icon.cyan svg circle { stroke: #fff; fill: none; }

  .card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0d2a5c;
    letter-spacing: 0.3px;
  }
  .card-body {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    padding-left: 62px;
    text-align: justify;
  }

  .experience-badge {
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 4px 0;
    border: 1px solid #c7d2fe;
  }
  .experience-badge svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }
  .experience-badge-text {
    font-size: 18px;
    color: #0d2a5c;
    font-weight: 500;
  }
  .experience-badge-text strong {
    font-weight: 700;
  }

  .discount-text {
    color: #dc2626;
    font-weight: 800;
    font-size: 15px;
  }

  .capstone-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }
  .capstone-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
    padding-left: 62px;
    font-size: 14px;
    color: #1e5faa;
    font-weight: 600;
  }
  .capstone-location svg {
    width: 18px;
    height: 18px;
    color: #1e5faa;
  }
  .capstone-desc {
    padding-left: 62px;
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
  }
  .city-skyline {
    margin-top: 16px;
    width: 100%;
    height: 100px;
    object-fit: contain;
    opacity: 0.7;
    border-radius: 8px;
  }

  /* Right column */
  .right-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .dark-card {
    background: linear-gradient(135deg, #0a1e3d 0%, #0d2a5c 50%, #123a7a 100%);
    border-radius: 16px;
    padding: 28px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
  }
  .dark-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
    border-radius: 50%;
  }

  .dark-card .card-header {
    margin-bottom: 16px;
  }
  .dark-card .card-icon {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
  }
  .dark-card .card-icon svg path, .dark-card .card-icon svg rect, .dark-card .card-icon svg circle, .dark-card .card-icon svg line, .dark-card .card-icon svg polyline { stroke: #ffffff; fill: none; }
  .dark-card .card-title {
    color: #ffffff;
    font-size: 20px;
  }
  .dark-card .card-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
  }

  .program-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 16px;
  }
  .program-col {
    text-align: center;
    position: relative;
  }
  .program-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255,255,255,0.15);
  }
  .program-col-icon {
    width: 52px;
    height: 52px;
    background: rgba(59,130,246,0.2);
    border: 1px solid rgba(59,130,246,0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
  }
  .program-col-icon svg {
    width: 26px;
    height: 26px;
  }
  .program-col-title {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
  }
  .program-col-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
    font-style: italic;
  }
  .program-col-desc {
    font-size: 11.5px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
  }

  /* Modules */
  .modules-card {
    background: linear-gradient(135deg, #0a1e3d 0%, #0d2a5c 50%, #123a7a 100%);
    border-radius: 16px;
    padding: 24px 28px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
  }
  .modules-card::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
    border-radius: 50%;
  }
  .modules-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  .modules-title-row svg {
    width: 28px;
    height: 28px;
  }
  .modules-title-text {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
  }

  .modules-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
  .module-item {
    text-align: center;
    padding: 10px 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.2s, background 0.2s;
  }
  .module-item:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.1);
  }
  .module-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
  }
  .module-icon svg {
    width: 22px;
    height: 22px;
  }
  .module-num {
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 2px;
  }
  .module-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 6px;
  }
  .module-desc {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
  }

  /* Bottom section */
  .bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 20px;
    margin-bottom: 24px;
  }
  .bottom-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }
  .bottom-card.blue-tint {
    background: linear-gradient(135deg, #eff6ff, #e0f0ff);
    border: 1px solid #c5d6ec;
  }
  .bottom-card.orange-tint {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border: 1px solid #fed7aa;
  }

  .bottom-card-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
  }
  .bottom-card.blue-tint .bottom-card-title { color: #0d2a5c; }
  .bottom-card.orange-tint .bottom-card-title { color: #c2410c; }

  .bottom-card-subtitle {
    font-size: 15px;
    color: #4a5568;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .qr-container {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
  }
  .qr-container img {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }

  .qr-link {
    text-align: center;
    font-size: 11px;
    color: #6b7280;
    word-break: break-all;
    line-height: 1.4;
  }
  .qr-link a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
  }
  .qr-link a:hover {
    text-decoration: underline;
  }

  /* Investment / Includes / Contact card */
  .info-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .info-card {
    background: linear-gradient(135deg, #f8fafc, #eff6ff);
    border-radius: 12px;
    padding: 18px 20px;
    border: 1px solid #e2e8f0;
  }
  .info-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }
  .info-card-header svg {
    width: 24px;
    height: 24px;
    color: #0d2a5c;
  }
  .info-card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0d2a5c;
  }

  .price {
    font-size: 28px;
    font-weight: 900;
    color: #0d2a5c;
  }
  .price-note {
    font-size: 12px;
    color: #6b7280;
  }

  .info-list {
    list-style: none;
    padding: 0;
  }
  .info-list li {
    font-size: 15px;
    color: #374151;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
  }
  .info-list li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: #2563eb;
    font-weight: bold;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #374151;
    padding: 3px 0;
  }
  .contact-item svg {
    width: 16px;
    height: 16px;
    color: #0d2a5c;
    flex-shrink: 0;
  }
  .contact-item a {
    color: #2563eb;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }

  /* Footer */
  .footer {
    background: linear-gradient(135deg, #0a1e3d 0%, #0d2a5c 100%);
    padding: 20px 40px;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
  }
  .footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa, #3b82f6, #2563eb);
  }
  .footer .highlight-blue {
    color: #60a5fa;
  }
  .footer-note {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
    font-weight: 400;
  }

  /* Animations */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
  }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.3s; }
  .delay-4 { animation-delay: 0.4s; }
  .delay-5 { animation-delay: 0.5s; }
  .delay-6 { animation-delay: 0.6s; }
  .delay-7 { animation-delay: 0.7s; }
  .delay-8 { animation-delay: 0.8s; }

  /* Responsive */
  @media (max-width: 900px) {
    .header { padding: 16px 20px; flex-wrap: wrap; justify-content: center; gap: 12px; background:#022954 !important ; }
    .logo-text-acofimed .name { font-size: 16px; }
    .logo-text-aapm { font-size: 14px; }
    .header-divider { height: 40px; }
    .main-title { font-size: 40px; }
    .subtitle { font-size: 14px; }
    .content-grid { grid-template-columns: 1fr; }
    .program-columns { grid-template-columns: 1fr; }
    .program-col::after { display: none !important; }
    .modules-grid { grid-template-columns: repeat(3, 1fr); }
    .bottom-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .main-title { font-size: 40px; }
    .modules-grid { grid-template-columns: repeat(2, 1fr); }
    .cpe-badge { flex-direction: column; text-align: center; }
    .cpe-badge-divider { width: 60px; height: 1px; }
  }