.aogpopup-overlay {
  --aog-navy:   #2a3073;
  --aog-navy-d: #1b2060;
  --aog-red:    #c0392b;
  --aog-red-l:  #fdf0ef;
  --aog-gold:   #e8b84b;
  --aog-gold-l: #fdf6e3;
  --aog-wa:     #25D366;
  --aog-white:  #ffffff;
  --aog-ink:    #0f1229;
  --aog-muted:  #8c90aa;
  --aog-line:   #eceef8;
  --aog-bg:     #f4f5fb;

  position: fixed;
  inset: 0;
  background: rgba(8, 10, 28, .82);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  backdrop-filter: blur(12px) saturate(1.3);
  display: none;            
  align-items: center;
  justify-content: center;
  z-index: 2147483000;    
  padding: 16px;
  overflow: auto;
  box-sizing: border-box;
  font-family: inherit;
  -webkit-font-smoothing: antialiased;
  text-align: left;
  line-height: 1.4;
}
.aogpopup-overlay.aogpopup-open {
  display: flex;
  animation: aogpopup-fade .35s ease both;
}

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

@keyframes aogpopup-fade { from { opacity: 0 } to { opacity: 1 } }
@keyframes aogpopup-rise {
  from { opacity: 0; transform: translateY(36px) scale(.96) }
  to   { opacity: 1; transform: translateY(0) scale(1) }
}
@keyframes aogpopup-blink { 0%,100% { opacity: 1 } 50% { opacity: .15 } }

.aogpopup-modal {
  width: 100%;
  max-width: 480px;
  background: var(--aog-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
  0 0 0 1px rgba(42,48,115,.13),
  0 32px 80px rgba(0,0,0,.4),
  0 8px 20px rgba(0,0,0,.15);
  animation: aogpopup-rise .48s cubic-bezier(.22,1,.36,1) both;
  color: var(--aog-ink);
}

.aogpopup-strip {
  height: 4px;
  background: linear-gradient(90deg, var(--aog-navy-d), var(--aog-navy) 50%, var(--aog-gold));
}

.aogpopup-hero {
  padding: 28px 30px 26px;
  background: linear-gradient(140deg, var(--aog-navy-d) 0%, #2d3580 100%);
  position: relative;
  overflow: hidden;
}
.aogpopup-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
  linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.aogpopup-hero::after {
  content: '';
  position: absolute; top: -30px; right: -30px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,184,75,.14), transparent 70%);
  pointer-events: none;
}

.aogpopup-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.5);
  width: 30px; height: 30px;
  border-radius: 8px; font-size: 14px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .18s;
  font-family: inherit;
}
.aogpopup-close:hover { background: var(--aog-red); border-color: var(--aog-red); color: #fff; }

.aogpopup-badge {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(192,57,43,.88);
  border-radius: 20px; padding: 4px 11px 4px 8px;
  margin-bottom: 16px;
}
.aogpopup-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #fff; flex-shrink: 0;
  animation: aogpopup-blink 1.1s infinite;
}
.aogpopup-badge span {
  font-size: 11px; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase; color: #fff;
}

.aogpopup-eyebrow {
  position: relative; z-index: 1;
  font-size: 11px; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255,255,255,.38); margin-bottom: 7px;
}

.aogpopup-title {
  position: relative; z-index: 1;
  font-size: 34px; font-weight: 800;
  color: #fff; line-height: 1.12; letter-spacing: -.025em;
}
.aogpopup-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--aog-gold), #f5da8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aogpopup-dates { padding: 22px 28px 20px; }

.aogpopup-section-title {
  font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--aog-muted); margin-bottom: 12px;
}

.aogpopup-daterow {
  display: flex; flex-direction: column;
  gap: 10px; margin-bottom: 14px;
}

.aogpopup-card {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px;
  background: var(--aog-bg);
  border: 1.5px solid var(--aog-line);
  border-radius: 14px;
  transition: border-color .2s, box-shadow .2s;
}
.aogpopup-card:hover { box-shadow: 0 4px 18px rgba(42,48,115,.1); border-color: var(--aog-navy); }
.aogpopup-card.aogpopup-red { background: var(--aog-red-l); border-color: rgba(192,57,43,.2); }
.aogpopup-card.aogpopup-red:hover { border-color: var(--aog-red); box-shadow: 0 4px 18px rgba(192,57,43,.12); }

.aogpopup-num {
  font-size: 40px; font-weight: 800;
  color: var(--aog-navy); letter-spacing: -.02em;
  line-height: 1; flex-shrink: 0;
  min-width: 52px; text-align: center;
}
.aogpopup-card.aogpopup-red .aogpopup-num { color: var(--aog-red); }

.aogpopup-info { flex: 1; min-width: 0; }
.aogpopup-type {
  font-size: 13px; font-weight: 600;
  color: var(--aog-ink); letter-spacing: .01em;
  margin-bottom: 2px;
}
.aogpopup-date {
  font-size: 12px; font-weight: 500;
  color: var(--aog-muted); line-height: 1.2;
}

.aogpopup-note {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--aog-gold-l);
  border: 1.5px solid #f0d080;
  border-radius: 12px; padding: 13px 15px;
}
.aogpopup-note-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.aogpopup-note-text { font-size: 13px; color: #4a3500; line-height: 1.55; }
.aogpopup-note-text strong { font-weight: 700; color: #2e1f00; }

.aogpopup-actions {
  padding: 16px 28px 26px;
  background: var(--aog-bg);
  border-top: 1px solid var(--aog-line);
  display: flex; flex-direction: column; gap: 9px;
}

.aogpopup-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; padding: 14px;
  border: none; border-radius: 12px;
  font-family: inherit;
  font-size: 15px; font-weight: 700; letter-spacing: -.01em;
  cursor: pointer; text-decoration: none;
  transition: transform .15s, box-shadow .2s, filter .15s;
}
.aogpopup-btn:hover { transform: translateY(-2px); }
.aogpopup-btn:active { transform: translateY(0); }

.aogpopup-btn-call {
  background: var(--aog-navy);
  color: #fff;
  box-shadow: 0 4px 16px rgba(42,48,115,.3);
}
.aogpopup-btn-call:hover { filter: brightness(1.12); box-shadow: 0 8px 28px rgba(42,48,115,.4);  text-decoration: none;}

.aogpopup-btn-wa {
  background: var(--aog-wa);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.22);
}
.aogpopup-btn-wa:hover { filter: brightness(1.07); box-shadow: 0 8px 28px rgba(37,211,102,.35); text-decoration: none; color:white;}

.aogpopup-skip {
  text-align: center; font-size: 12px;
  color: #b8bcd0; padding-top: 2px;
}
.aogpopup-skip a { color: #b8bcd0; text-decoration: underline; cursor: pointer; }
.aogpopup-skip a:hover { color: #666; }


@media (max-width: 360px) {
  .aogpopup-hero { padding: 24px 20px 22px; }
  .aogpopup-title { font-size: 28px; }
  .aogpopup-eyebrow { font-size: 10px; letter-spacing: .1em; }
  .aogpopup-badge { margin-bottom: 13px; }
  .aogpopup-badge span { font-size: 10px; }

  .aogpopup-dates { padding: 18px 18px 16px; }
  .aogpopup-section-title { font-size: 9px; letter-spacing: .1em; margin-bottom: 10px; }

  .aogpopup-card { padding: 12px 14px; gap: 12px; }
  .aogpopup-num { font-size: 34px; min-width: 42px; }
  .aogpopup-type { font-size: 12.5px; }
  .aogpopup-date { font-size: 11px; }

  .aogpopup-note { padding: 11px 13px; }
  .aogpopup-note-text { font-size: 12px; line-height: 1.5; }

  .aogpopup-actions { padding: 14px 18px 22px; }
  .aogpopup-btn { padding: 13px; font-size: 14.5px; }
}

@media (max-height: 640px) {
  .aogpopup-overlay { align-items: flex-start; }
  .aogpopup-hero { padding-top: 22px; padding-bottom: 20px; }
  .aogpopup-dates { padding-top: 16px; padding-bottom: 14px; }
  .aogpopup-actions { padding-top: 12px; padding-bottom: 18px; }
}