/* ============================================
   KEITH DOBER — Private Wealth Advisory
   Premium Clone Structure
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #000000;
  --bg-card: #0A0A0B;
  --bg-elevated: #111113;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  
  --white: #F8FAFC;
  --grey: #94A3B8;
  --muted: #64748B;
  --dark-grey: #334155;
  
  --accent: #C9A96E;
  --accent-hover: #D4B87A;
  --accent-glow: rgba(201,169,110,0.15);
  --accent-soft: rgba(201,169,110,0.08);
  
  --font: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --radius: 16px;
  --radius-sm: 12px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom);
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 0;
  transition: all var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--grey);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

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

.nav-cta-btn {
  background: var(--accent) !important;
  color: var(--bg) !important;
  font-weight: 600 !important;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  transition: all var(--transition);
}

.nav-cta-btn:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  background: var(--accent-soft);
  border: 1px solid rgba(201,169,110,0.2);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--white);
}

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

.hero-desc {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 520px;
}

.hero-features {
  list-style: none;
  margin-bottom: 2rem;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.65rem;
  font-weight: 400;
}

.hero-features li .check {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-primary .arrow {
  transition: transform var(--transition);
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grey);
  padding: 0.9rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-secondary:hover {
  color: var(--white);
  border-color: var(--border-hover);
  background: var(--bg-elevated);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Right - Portrait Card */
.hero-portrait {
  position: relative;
  display: flex;
  justify-content: center;
}

.portrait-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 420px;
  position: relative;
}

.portrait-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(201,169,110,0.3), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.portrait-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(20%);
}

.portrait-info {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}

.portrait-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.portrait-info p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-soft);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.stat-text .number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.stat-text .label {
  font-size: 0.75rem;
  color: var(--grey);
  font-weight: 400;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */

.section {
  padding: 6rem 0;
}

.stats-micro {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1.75rem;
  letter-spacing: 0.02em;
}

.section-tag {
  display: inline-block;
  background: var(--accent-soft);
  border: 1px solid rgba(201,169,110,0.15);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.section-desc {
  font-size: 1rem;
  color: var(--grey);
  max-width: 600px;
  line-height: 1.7;
}

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

.section-header-center .section-desc {
  margin: 0 auto;
}

/* ============================================
   SERVICES GRID (8 cards, 4x2)
   ============================================ */

.services-section {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-elevated);
  transform: translateY(-3px);
}

.service-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-soft);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.65;
}

/* ============================================
   EARN & LEARN / VALUE PROP
   ============================================ */

.value-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.value-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.value-content > p {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.value-list {
  list-style: none;
}

.value-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.value-list li:last-child {
  border-bottom: none;
}

.value-list li strong {
  color: var(--white);
  font-weight: 600;
}

.value-list li span {
  color: var(--grey);
  font-size: 0.92rem;
}

.value-img-wrap {
  position: relative;
}

.value-closing {
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  font-style: italic;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.value-img-wrap img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  filter: brightness(0.85) contrast(1.1);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: var(--border-hover);
}

.testimonial-card .stars {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-card .quote {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
}

.author-info .name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.author-info .role {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ============================================
   FAQ
   ============================================ */

.faq-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 2rem;
  text-align: left;
  font-family: var(--font);
}

.faq-q span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition);
}

.faq-q:hover span {
  color: var(--accent);
}

.faq-icon {
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-weight: 300;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-a-inner {
  padding-bottom: 1.25rem;
}

.faq-a-inner p {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.75;
}

/* ============================================
   CTA / CONTACT
   ============================================ */

.cta-section {
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-section > .container > p {
  font-size: 1rem;
  color: var(--grey);
  margin-bottom: 2rem;
}

.cta-micro {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.75rem;
  letter-spacing: 0.03em;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-elevated);
}

.contact-card .c-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-card .c-value {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.footer-brand small {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.15rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-nav a {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-legal {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: var(--muted);
}

.footer-bottom a {
  color: var(--accent);
  font-weight: 500;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-grid, .value-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-portrait {
    order: -1;
  }
  .portrait-card {
    max-width: 320px;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    transition: right 0.4s ease;
  }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 1rem; color: var(--white); }
  .nav-toggle { display: flex; }
  
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  
  .footer-top { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .footer-nav { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  
  .section { padding: 3.5rem 0; }
}

/* CONTACT MODAL */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(145deg, #0f0f0f, #151515);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 24px;
    padding: 50px 40px 40px;
    max-width: 540px;
    width: 90%;
    position: relative;
    transform: scale(0.9) translateY(40px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 40px rgba(201, 169, 110, 0.05);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #C9A96E;
    color: #000;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(201, 169, 110, 0.3);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #C9A96E;
    color: #000;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 35px;
}

.modal-header h3 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.modal-header p {
    color: #aaa;
    font-size: 16px;
    line-height: 1.6;
}

.modal-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.modal-trust span {
    font-size: 11px;
    color: #C9A96E;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.modal-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-link-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px 24px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-link-item.highlight {
    border-color: rgba(201, 169, 110, 0.3);
    background: rgba(201, 169, 110, 0.03);
}

.modal-link-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(201, 169, 110, 0.6);
    transform: scale(1.02);
}

.modal-link-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 169, 110, 0.1);
    color: #C9A96E;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-right: 20px;
    box-shadow: inset 0 0 20px rgba(201, 169, 110, 0.05);
}

.modal-link-text {
    flex: 1;
}

.modal-link-text span {
    display: block;
    color: #888;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    font-weight: 600;
}

.modal-link-text strong {
    display: block;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.modal-link-arrow {
    color: #333;
    font-size: 20px;
    transition: all 0.3s ease;
}

.modal-link-item:hover .modal-link-arrow {
    color: #C9A96E;
    transform: translateX(5px);
}

.modal-availability {
    margin-top: 25px;
    background: rgba(76, 175, 80, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.1);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

.pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 0 rgba(76, 175, 80, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.modal-footer {
    margin-top: 30px;
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-footer p {
    color: #666;
    font-size: 13px;
    font-weight: 500;
}