/* ============================================================
   ABUNDANTIA S.R.L. — Design System
   Theme: Noir & Gold Fintech
   ============================================================ */

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

/* --- CSS Custom Properties --- */
:root {
  /* Backgrounds */
  --bg-primary: #0f0f0f;
  --bg-card: #1a1a1a;
  --bg-soft: #1e1e1e;
  --bg-elevated: #252525;

  /* Gold Palette */
  --gold-primary: #c8a84e;
  --gold-light: #d4b85c;
  --gold-dark: #a88a3a;
  --gold-glow: rgba(200, 168, 78, 0.15);
  --gold-glow-strong: rgba(200, 168, 78, 0.3);

  /* Text */
  --text-primary: #f0f0f0;
  --text-secondary: #999999;
  --text-muted: #666666;

  /* Accent */
  --green-success: #2ebd85;
  --red-danger: #e74c3c;

  /* Spacing */
  --section-py: 6rem;
  --section-px: 1.5rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Borders */
  --border-color: rgba(200, 168, 78, 0.15);
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold-light);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: 3.5rem; font-weight: 800; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.text-gold { color: var(--gold-primary); }
.text-muted-custom { color: var(--text-secondary); }

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.gold-accent {
  color: var(--gold-primary);
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  border-radius: 2px;
  margin: 0 auto 1.5rem;
  border: none;
}

/* --- Navbar --- */
.navbar-custom {
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
  transition: all var(--transition-base);
  z-index: 1050;
}

.navbar-custom.scrolled {
  background: rgba(15, 15, 15, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-custom .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.navbar-custom .navbar-brand img {
  height: 40px;
  width: auto;
}

.navbar-custom .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
  transition: color var(--transition-fast);
  position: relative;
}

.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: all var(--transition-base);
  transform: translateX(-50%);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--gold-primary) !important;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  width: 60%;
}

.navbar-custom .navbar-toggler {
  border-color: var(--gold-primary);
  padding: 0.4rem 0.6rem;
}

.navbar-custom .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c8a84e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* --- Button Styles --- */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--bg-primary);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-base);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 168, 78, 0.3);
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-primary);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: 2px solid var(--gold-primary);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-base);
  font-size: 0.95rem;
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 168, 78, 0.2);
}

.btn-sm-gold {
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
}

/* --- Hero Section --- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0 var(--section-py);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroPulse 6s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 168, 78, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroPulse 8s ease-in-out infinite reverse;
}

@keyframes heroPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-glow);
  border: 1px solid rgba(200, 168, 78, 0.25);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

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

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  max-height: 550px;
  filter: drop-shadow(0 20px 60px rgba(200, 168, 78, 0.2));
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item i {
  font-size: 1.5rem;
  color: var(--gold-primary);
}

/* --- Sections General --- */
.section {
  padding: var(--section-py) 0;
}

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

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

/* --- Feature Cards --- */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-base);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 168, 78, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
              0 0 40px var(--gold-glow);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-glow);
  border: 1px solid rgba(200, 168, 78, 0.2);
  border-radius: var(--border-radius-md);
  font-size: 1.75rem;
  color: var(--gold-primary);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: var(--gold-glow-strong);
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.feature-coming-soon {
  opacity: 0.6;
}

.feature-coming-soon .badge-soon {
  display: inline-block;
  background: rgba(200, 168, 78, 0.15);
  color: var(--gold-primary);
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* --- Why Section (3 Columns) --- */
.why-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border-radius: 50%;
  font-size: 2rem;
  color: var(--bg-primary);
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(200, 168, 78, 0.08) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, var(--gold-glow) 0%, transparent 50%);
  animation: ctaGlow 5s linear infinite;
}

@keyframes ctaGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

/* --- Contact Section --- */
.contact-form .form-control {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  color: var(--text-primary);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.contact-form .form-control:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px var(--gold-glow);
  background: var(--bg-card);
  color: var(--text-primary);
}

.contact-form .form-control::placeholder {
  color: var(--text-muted);
}

.contact-form .form-label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  font-size: 1.25rem;
  color: var(--gold-primary);
  margin-top: 0.2rem;
}

.contact-info-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --- Footer --- */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
}

.footer h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--gold-glow-strong);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  margin-top: 3rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* --- Steps / How it Works --- */
.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--bg-primary);
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
}

.step-connector {
  position: absolute;
  top: 30px;
  left: 60%;
  right: -40%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.step-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* --- FAQ Accordion --- */
.faq-accordion .accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  margin-bottom: 0.75rem;
  border-radius: var(--border-radius-sm) !important;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background: var(--bg-card);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--bg-soft);
  color: var(--gold-primary);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  filter: invert(72%) sepia(52%) saturate(419%) hue-rotate(10deg) brightness(92%) contrast(87%);
}

.faq-accordion .accordion-body {
  background: var(--bg-card);
  color: var(--text-secondary);
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Legal Pages --- */
.legal-content {
  padding: 8rem 0 4rem;
}

.legal-content h1 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.legal-content .legal-date {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gold-primary);
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  margin-bottom: 0.4rem;
}

/* --- Delete Account Form --- */
.delete-account-form {
  background: var(--bg-card);
  border: 1px solid rgba(231, 76, 60, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
}

.delete-account-form .alert-warning-custom {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.25);
  border-radius: var(--border-radius-sm);
  color: #ff6b6b;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
}

/* --- Security Badge Bar --- */
.security-badges {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.security-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.security-badge i {
  font-size: 2.5rem;
  color: var(--gold-primary);
}

.security-badge span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }

/* --- Google Play Badge --- */
.google-play-badge {
  display: inline-block;
  transition: transform var(--transition-base);
}

.google-play-badge:hover {
  transform: scale(1.05);
}

.google-play-badge img {
  height: 50px;
  width: auto;
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  .hero-section {
    text-align: center;
    padding-top: 7rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    margin-top: 3rem;
  }

  .hero-image img {
    max-height: 400px;
  }

  .section-title {
    font-size: 2rem;
  }

  .step-connector {
    display: none;
  }

  .cta-banner {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 767.98px) {
  :root {
    --section-py: 4rem;
  }

  h1 { font-size: 2rem; }

  .hero-title {
    font-size: 2rem;
  }

  .hero-image img {
    max-height: 300px;
  }

  .trust-item {
    margin-bottom: 1rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .footer {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* --- PymeGo Page Specific --- */
.pymego-hero .hero-title .pymego-brand {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.download-section {
  text-align: center;
}

.download-qr {
  width: 160px;
  height: 160px;
  background: white;
  border-radius: var(--border-radius-md);
  padding: 0.5rem;
  margin: 1rem auto;
}

/* --- Glassmorphism utility --- */
.glass {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
}

/* --- Counter/Stats --- */
.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* --- Breadcrumbs --- */
.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: var(--gold-primary);
}

.breadcrumb-item.active {
  color: var(--text-secondary);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted);
}

/* --- Utilities --- */
.text-gold {
  color: var(--gold-primary) !important;
}

/* --- Form Check (dark theme) --- */
.form-check-input {
  background-color: var(--bg-card);
  border-color: var(--border-color);
}

.form-check-input:checked {
  background-color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.form-check-input:focus {
  box-shadow: 0 0 0 3px var(--gold-glow);
  border-color: var(--gold-primary);
}

/* --- Alert styles (dark theme) --- */
.alert-success-custom {
  background: rgba(39, 174, 96, 0.12);
  border: 1px solid rgba(39, 174, 96, 0.3);
  color: #27ae60;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-md);
  font-size: 0.95rem;
}

.alert-warning-custom {
  background: rgba(243, 156, 18, 0.12);
  border: 1px solid rgba(243, 156, 18, 0.3);
  color: #f39c12;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-md);
  font-size: 0.95rem;
}

