/* =========================================
   Yo-Pe-Yo Foundation — Main Stylesheet
   ========================================= */

/* --- Variables --- */
:root {
  --green:       #44873F;
  --green-dark:  #2e5e2a;
  --amber:       #CBA949;
  --amber-light: #e8c25d;
  --teal-900:    #134e4a;
  --teal-700:    #0f766e;
  --teal-600:    #0d9488;
  --teal-50:     #f0fdfa;
  --amber-50:    #fffbeb;
  --amber-100:   #fef3c7;
  --amber-200:   #fde68a;
  --amber-300:   #fcd34d;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-300:    #d1d5db;
  --gray-500:    #6b7280;
  --gray-600:    #4b5563;
  --gray-700:    #374151;
  --gray-800:    #1f2937;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --transition: 0.3s ease;
  --shadow-lg: 0 10px 25px -3px rgba(0,0,0,.15), 0 4px 6px -2px rgba(0,0,0,.08);
  --shadow-xl: 0 20px 40px -4px rgba(0,0,0,.2);
  --radius: 1rem;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-800); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

/* --- Animations --- */
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp   { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { from { opacity: 0; transform: translateX(-60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeRight{ from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn  { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes pulse    { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes slideOutRight { from { transform: translateX(0); } to { transform: translateX(100%); } }

.anim-fade-up   { animation: fadeUp   0.8s ease both; }
.anim-fade-left { animation: fadeLeft 0.8s ease both; }
.anim-fade-right{ animation: fadeRight 0.8s ease both; }
.anim-scale-in  { animation: scaleIn  0.5s ease both; }

/* Scroll-triggered reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  height: 5.5rem;
}
@media (min-width: 768px) { .navbar { height: 8rem; padding: 0 1.75rem; } }

.navbar-logo img {
  height: 5.5rem;
  width: auto;
}
@media (min-width: 768px) { .navbar-logo img { height: 8.5rem; } }

.navbar-nav a {
  color: white;
  font-weight: 600;
  transition: color var(--transition);
}
.navbar-nav a:hover { color: var(--amber); }

/* Mobile sidebar */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,78,38,0.5);
  z-index: 40;
  justify-content: flex-end;
}
.sidebar-overlay.open { display: flex; animation: fadeIn 0.2s ease; }

.sidebar {
  background: white;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: slideInRight 0.3s ease;
  box-shadow: var(--shadow-lg);
}
.sidebar nav ul { display: flex; gap: 1.25rem; align-items: center; }
.sidebar nav a { color: var(--gray-800); transition: color var(--transition); font-size: 1.125rem; }
.sidebar nav a:hover { color: var(--gray-500); }
.sidebar-close {
  font-size: 1.875rem;
  color: var(--green);
  background: none;
  line-height: 1;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-bg-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.55), rgba(0,0,0,0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 8rem 1.5rem 3rem;
  max-width: 800px;
  width: 100%;
}

.hero-tagline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-tagline.fade-out { opacity: 0; transform: translateY(10px); }
.hero-tagline.fade-in  { opacity: 1; transform: translateY(0); }

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  transition: opacity 0.6s ease;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.btn:hover  { transform: scale(1.05); box-shadow: var(--shadow-lg); }
.btn:active { transform: scale(0.97); }

.btn-green {
  background: var(--green);
  color: white;
}
.btn-green:hover { background: var(--green-dark); }

.btn-amber {
  background: var(--amber);
  color: white;
}
.btn-amber:hover { background: var(--amber-light); }

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

/* =========================================
   VISION SECTION
   ========================================= */
.vision {
  padding: 5rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .vision { grid-template-columns: 1fr 1fr; padding: 5rem 3rem; }
}

.vision-image {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  background-size: 90%;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
}

.vision-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-style: italic;
  margin-bottom: 1rem;
}
.vision-label span { font-size: 1.05rem; font-weight: 600; color: var(--teal-700); }
.vision-label .bar { width: 2rem; height: 3px; background: var(--teal-700); border-radius: 2px; }

.vision h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--teal-900);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.vision-verse {
  font-style: italic;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.vision p {
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.vision .highlight { font-weight: 600; color: #92400e; }

/* =========================================
   DONATION / EVERY SEED MATTERS
   ========================================= */
.donation {
  background: var(--green);
  padding: 5rem 0;
  width: 100%;
}

.donation-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .donation-inner { grid-template-columns: 1fr 1.5fr; padding: 4rem 3rem; }
}

.donation-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-style: italic;
  margin-bottom: 0.75rem;
}
.donation-label .bar { width: 2rem; height: 3px; background: var(--amber-200); border-radius: 2px; }
.donation-label span { font-size: 1rem; font-weight: 600; color: var(--amber-200); }

.donation h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
}

.donation > .donation-inner > .donation-text > p {
  color: #e5e7eb;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.donation-list { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.875rem; }

.donation-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  color: #f3f4f6;
  line-height: 1.6;
}
.donation-list li .check { color: var(--amber-200); font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.donation-list li strong { font-weight: 700; }

.donation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.donation-grid-img {
  border-radius: 1.5rem;
  background-size: cover;
  background-position: center;
  min-height: 350px;
}
@media (min-width: 768px) { .donation-grid-img { min-height: 400px; } }
.donation-grid-img.tall { grid-row: span 2; }

/* =========================================
   LAUNCH SECTION
   ========================================= */
.launch {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 50%, var(--green) 100%);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.launch-dots {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.launch-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }

.launch-header { text-align: center; margin-bottom: 3rem; }

.badge {
  display: inline-block;
  background: var(--amber);
  color: var(--teal-900);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.launch-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
}
.launch-header .sub-title { font-size: 1.2rem; color: var(--amber); font-style: italic; margin-bottom: 0.5rem; }
.launch-header .sub-desc { color: #e5e7eb; font-size: 0.9rem; max-width: 520px; margin: 0 auto; }

/* Event card */
.event-card {
  background: white;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.event-card-header {
  background: var(--amber);
  padding: 1.5rem;
  text-align: center;
}
.event-card-header h3 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--teal-900);
  margin-bottom: 0.4rem;
}
.event-card-header p { color: var(--teal-900); font-weight: 500; }

.event-card-body { padding: 2rem 2.5rem; }
@media (max-width: 640px) { .event-card-body { padding: 1.5rem; } }

.event-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .event-meta { grid-template-columns: repeat(3, 1fr); } }

.event-meta-item { display: flex; align-items: flex-start; gap: 0.875rem; }
.event-meta-item .icon { color: var(--amber); font-size: 1.5rem; flex-shrink: 0; margin-top: 0.2rem; }
.event-meta-item .label { font-size: 0.7rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.event-meta-item .value { font-weight: 700; color: var(--gray-800); font-size: 0.95rem; }
.event-meta-item .note  { font-size: 0.8rem; color: var(--gray-600); }

.about-box {
  background: var(--amber-50);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.about-box h4 { font-size: 1.1rem; font-weight: 700; color: var(--teal-900); margin-bottom: 0.875rem; }
.about-box p  { color: var(--gray-700); line-height: 1.75; margin-bottom: 0.875rem; }
.about-box p:last-child { margin-bottom: 0; }
.about-box .highlight { font-weight: 600; color: #92400e; }

.commitment h4 { font-size: 1.1rem; font-weight: 700; color: var(--teal-900); margin-bottom: 1.25rem; }
.commitment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .commitment-grid { grid-template-columns: 1fr 1fr; } }

.commitment-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.commitment-item .star { color: var(--amber); font-size: 1.1rem; flex-shrink: 0; margin-top: 0.2rem; }
.commitment-item p { color: var(--gray-700); line-height: 1.6; }

.rsvp-cta { text-align: center; }
.rsvp-cta .note { color: var(--gray-500); font-size: 0.875rem; margin-top: 0.875rem; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--green);
  color: white;
  padding: 4rem 0 0;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; text-align: left; padding: 0 3rem; }
}

.footer-logo .logo-wrap {
  background: white;
  border-radius: 9999px;
  display: inline-block;
  padding: 0;
}
.footer-logo img { height: 10rem; margin: 0 auto; }
@media (min-width: 768px) { .footer-logo .logo-wrap { width: 65%; } }
@media (min-width: 1024px) { .footer-logo .logo-wrap { width: 50%; } }

.footer-center h2 { font-size: 1.5rem; font-weight: 700; color: var(--amber-300, #fcd34d); margin-bottom: 0.5rem; }
.footer-center .tagline { color: var(--amber-100, #fef3c7); font-style: italic; font-size: 0.9rem; margin-bottom: 0.75rem; }
.footer-center p { color: #e5e7eb; max-width: 28rem; margin: 0 auto; font-size: 0.95rem; line-height: 1.7; }

.footer-contact h3 { font-size: 1.05rem; font-weight: 600; color: var(--amber-300, #fcd34d); margin-bottom: 1rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  justify-content: center;
}
@media (min-width: 768px) { .footer-contact-item { justify-content: flex-start; } }
.footer-contact-item .icon { color: var(--amber-300, #fcd34d); flex-shrink: 0; margin-top: 0.1rem; font-size: 1.1rem; }
.footer-contact-item a,
.footer-contact-item p { color: #e5e7eb; font-size: 0.9rem; line-height: 1.6; }
.footer-contact-item a:hover { color: var(--amber-300, #fcd34d); text-decoration: underline; }

.footer-verse {
  text-align: center;
  padding: 3rem 1.5rem 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.footer-verse p { color: var(--amber-200, #fde68a); font-style: italic; font-size: 0.9rem; line-height: 1.75; }

.footer-bottom {
  text-align: center;
  color: #e5e7eb;
  font-size: 0.85rem;
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 0 1.5rem;
}
@media (min-width: 768px) { .footer-bottom { margin: 0 3rem; } }

/* =========================================
   RSVP MODAL
   ========================================= */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 50;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.2s ease;
}
.modal-overlay.open { display: flex; }

.modal {
  background: white;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-xl);
  max-width: 42rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: scaleIn 0.25s ease;
}

.modal-head {
  background: var(--green);
  padding: 1.5rem;
  position: relative;
  border-radius: 1.25rem 1.25rem 0 0;
}
.modal-head h3 { font-size: 1.5rem; font-weight: 700; color: white; margin-bottom: 0.35rem; }
.modal-head p  { color: var(--amber); font-size: 0.9rem; }
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  color: white;
  font-size: 1.5rem;
  line-height: 1;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
}
.modal-close:hover { color: var(--amber); background: rgba(255,255,255,0.1); }

.modal-body { padding: 2rem; }

.greeting { color: var(--gray-700); margin-bottom: 1.5rem; line-height: 1.75; }
.greeting strong { color: var(--teal-700); }

/* Form styles */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}
.form-label .req { color: #ef4444; margin-left: 0.2rem; }
.form-input {
  width: 100%;
  border: 2px solid var(--gray-300);
  border-radius: 0.5rem;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  color: var(--gray-800);
  background: white;
}
.form-input:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(203,169,73,0.2); }
.form-input.error { border-color: #ef4444; }

.form-row { display: grid; grid-template-columns: 1fr 2fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* Toggle switch */
.toggle-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
}
.toggle-box-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.toggle-box-head p { font-weight: 600; color: var(--gray-800); font-size: 0.95rem; }
.toggle-box-head small { display: block; color: var(--gray-500); font-size: 0.78rem; margin-top: 0.2rem; font-weight: 400; }
.toggle-status { font-size: 0.875rem; font-weight: 500; margin-top: 0.625rem; }
.toggle-status .on  { color: #16a34a; }
.toggle-status .off { color: #dc2626; }

/* Toggle switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 3.5rem;
  height: 1.75rem;
  flex-shrink: 0;
  cursor: pointer;
}
.toggle-switch input { display: none; }
.toggle-track {
  position: absolute;
  inset: 0;
  background: var(--gray-300);
  border-radius: 9999px;
  transition: background 0.25s ease;
}
.toggle-switch input:checked ~ .toggle-track { background: var(--green); }
.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 1.375rem;
  height: 1.375rem;
  background: white;
  border-radius: 50%;
  transition: transform 0.25s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.toggle-switch input:checked ~ .toggle-track ~ .toggle-thumb { transform: translateX(1.75rem); }

.form-actions {
  display: flex;
  gap: 0.875rem;
  margin-top: 1.5rem;
}
.form-actions .btn { flex: 1; justify-content: center; padding: 0.875rem; font-size: 0.95rem; border-radius: 0.625rem; }

.btn-gray { background: var(--gray-200); color: var(--gray-700); }
.btn-gray:hover { background: var(--gray-300); }

.form-note {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.8rem;
  margin-top: 1rem;
}

/* Error state */
.form-error-msg {
  color: #dc2626;
  font-size: 0.78rem;
  margin-top: 0.35rem;
  display: none;
}
.form-error-msg.show { display: block; }

/* =========================================
   SUCCESS PAGE
   ========================================= */
.success-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--teal-50) 0%, white 50%, var(--amber-50) 100%);
  display: flex;
  flex-direction: column;
}

.success-nav {
  background: var(--green);
  padding: 1rem 1.5rem;
}
.success-nav a { color: white; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; }
.success-nav a:hover { color: var(--amber); }

.success-inner {
  max-width: 48rem;
  margin: 3rem auto;
  padding: 0 1.5rem;
  width: 100%;
}

.success-card {
  background: white;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: fadeUp 0.6s ease;
}

.success-head {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  padding: 3rem 2rem;
  text-align: center;
}
.success-head .check-circle {
  width: 5rem;
  height: 5rem;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--green);
  font-size: 2.5rem;
  animation: scaleIn 0.5s ease 0.3s both;
}
.success-head h2 { color: white; font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 700; }

.success-body { padding: 2.5rem; }
@media (max-width: 480px) { .success-body { padding: 1.5rem; } }

.success-thanks { text-align: center; margin-bottom: 2rem; }
.success-thanks p { color: var(--gray-700); line-height: 1.75; margin-bottom: 0.75rem; }
.success-thanks .highlight { font-weight: 600; color: #92400e; }

.info-box {
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.info-box.amber { background: linear-gradient(135deg, var(--amber-50), var(--teal-50)); border: 2px solid var(--amber-200); }
.info-box.teal  { background: var(--teal-50); border: 1px solid rgba(13,148,136,0.2); }

.info-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal-900);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.info-box h3 .icon { color: #d97706; }
.info-box.teal h3 .icon { color: var(--teal-600); }

.detail-row { display: flex; align-items: flex-start; gap: 0.875rem; margin-bottom: 0.875rem; }
.detail-row:last-child { margin-bottom: 0; }
.detail-row .key { font-weight: 700; color: var(--amber); min-width: 5rem; font-size: 0.95rem; }
.detail-row .val { color: var(--gray-700); font-size: 0.95rem; }

.next-list { display: flex; flex-direction: column; gap: 0.875rem; }
.next-item { display: flex; align-items: flex-start; gap: 0.875rem; }
.next-item .num { color: var(--teal-600); font-size: 1.2rem; font-weight: 700; flex-shrink: 0; }
.next-item p { color: var(--gray-700); line-height: 1.7; }
.next-item strong { font-weight: 600; }

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 2rem;
}
@media (min-width: 480px) { .success-actions { flex-direction: row; } }
.success-actions .btn { flex: 1; justify-content: center; padding: 1rem; border-radius: 0.75rem; font-size: 1rem; }
.btn-teal { background: var(--teal-700); color: white; }
.btn-teal:hover { background: var(--teal-600); }

.success-verse {
  margin-top: 2rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}
.success-verse p { color: var(--gray-600); font-style: italic; font-size: 0.875rem; line-height: 1.75; }
.success-verse .ref { color: var(--gray-500); font-size: 0.8rem; margin-top: 0.35rem; }

/* =========================================
   TOAST / NOTIFICATIONS
   ========================================= */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--teal-900);
  color: white;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  animation: fadeUp 0.3s ease;
  max-width: 320px;
}

/* =========================================
   UTILITIES
   ========================================= */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-amber { color: var(--amber); }
.text-center { text-align: center; }
.italic { font-style: italic; }
