/* ============================================================
   Alpicio AML AI - Portal Landing Page Custom Styles
   ============================================================ */

@import url('https://rsms.me/inter/inter.css');

:root {
  --alpicio-primary: #066fd1;
  --alpicio-primary-dark: #0457a8;
  --alpicio-accent: #f6c344;
  --alpicio-dark: #0a1628;
  --alpicio-dark-2: #0d1f3c;
  --alpicio-dark-3: #112244;
  --alpicio-text-muted: #94a3b8;
  --alpicio-gradient: linear-gradient(135deg, #066fd1 0%, #0d47a1 50%, #1a237e 100%);
  --alpicio-gradient-hero: linear-gradient(135deg, #020b18 0%, #0a1628 40%, #0d2b52 100%);
  --alpicio-glow: 0 0 40px rgba(6, 111, 209, 0.3);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff;
  color: #1e293b;
  overflow-x: hidden;
}

/* ---- NAVBAR ---- */
.navbar-alpicio {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(6, 111, 209, 0.2);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar-alpicio.scrolled {
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.navbar-brand-alpicio {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-brand-alpicio .brand-logo {
  width: 42px;
  height: 42px;
  background: var(--alpicio-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  box-shadow: 0 4px 15px rgba(6, 111, 209, 0.4);
}

.navbar-brand-alpicio .brand-text {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.navbar-brand-alpicio .brand-text span {
  color: var(--alpicio-accent);
}

.navbar-alpicio .nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.4rem 1rem !important;
  transition: color 0.2s;
}

.navbar-alpicio .nav-link:hover { color: #fff !important; }

.btn-demo {
  background: var(--alpicio-gradient);
  color: #fff !important;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.4rem !important;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(6, 111, 209, 0.4);
}

.btn-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6, 111, 209, 0.5);
}

/* ---- HERO ---- */
.hero-section {
  min-height: 100vh;
  background: var(--alpicio-gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23066fd1' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 111, 209, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 111, 209, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-orb-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 111, 209, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: pulse-orb 6s ease-in-out infinite;
}

.hero-orb-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 195, 68, 0.08) 0%, transparent 70%);
  bottom: -50px;
  left: 5%;
  animation: pulse-orb 8s ease-in-out infinite reverse;
}

@keyframes pulse-orb {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 111, 209, 0.15);
  border: 1px solid rgba(6, 111, 209, 0.3);
  border-radius: 50px;
  padding: 6px 16px;
  color: #7eb8f7;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #066fd1, var(--alpicio-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary-hero {
  background: var(--alpicio-gradient);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.9rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(6, 111, 209, 0.4);
}

.btn-primary-hero:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(6, 111, 209, 0.5);
}

.btn-secondary-hero {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 0.9rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-secondary-hero:hover {
  color: #fff;
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.hero-trust .avatars {
  display: flex;
}

.hero-trust .avatar-small {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  margin-left: -8px;
  background: linear-gradient(135deg, #066fd1, #1a237e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
}

.hero-trust .avatar-small:first-child { margin-left: 0; }

/* Hero mockup */
.hero-mockup {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.5deg); }
}

.mockup-window {
  background: #0d1f3c;
  border-radius: 16px;
  overflow: hidden;
}

.mockup-titlebar {
  background: #1a2d4d;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yellow { background: #febc2e; }
.mockup-dot.green { background: #28c840; }

.mockup-body {
  padding: 20px;
}

/* ---- STATS ---- */
.stats-section {
  background: var(--alpicio-dark);
  padding: 4rem 0;
  border-top: 1px solid rgba(6, 111, 209, 0.2);
  border-bottom: 1px solid rgba(6, 111, 209, 0.2);
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}

.stat-number .stat-unit {
  color: var(--alpicio-accent);
}

.stat-label {
  color: var(--alpicio-text-muted);
  font-size: 0.9rem;
  margin-top: 8px;
  font-weight: 500;
}

/* ---- SECTION COMMON ---- */
.section-light { background: #f8fafc; }
.section-dark { background: var(--alpicio-dark); }
.section-dark-2 { background: var(--alpicio-dark-2); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(6, 111, 209, 0.1);
  border: 1px solid rgba(6, 111, 209, 0.25);
  color: #3b82f6;
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: #0f172a;
}

.section-title-light { color: #fff; }

.section-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.75;
  max-width: 600px;
}

.section-subtitle-light { color: rgba(255,255,255,0.6); }

/* ---- FEATURE CARDS ---- */
.feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--alpicio-gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgba(6, 111, 209, 0.3);
  box-shadow: 0 20px 60px rgba(6, 111, 209, 0.1);
  transform: translateY(-4px);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(6, 111, 209, 0.1), rgba(6, 111, 209, 0.05));
  border: 1px solid rgba(6, 111, 209, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--alpicio-primary);
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  background: var(--alpicio-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(6, 111, 209, 0.4);
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.6rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
}

/* ---- AI SECTION ---- */
.ai-section {
  background: var(--alpicio-dark);
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(6, 111, 209, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ai-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  transition: all 0.3s ease;
}

.ai-card:hover {
  background: rgba(6, 111, 209, 0.08);
  border-color: rgba(6, 111, 209, 0.3);
  transform: translateY(-4px);
}

.ai-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(6,111,209,0.2), rgba(13,71,161,0.2));
  border: 1px solid rgba(6,111,209,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #7eb8f7;
  margin-bottom: 1rem;
}

.ai-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.ai-card-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ---- HOW IT WORKS ---- */
.step-card {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--alpicio-gradient);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(6, 111, 209, 0.4);
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
}

.step-connector {
  position: absolute;
  top: 46px;
  right: -15%;
  width: 30%;
  height: 2px;
  background: linear-gradient(90deg, var(--alpicio-primary), transparent);
  opacity: 0.3;
}

/* ---- REGULATORY ---- */
.reg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 4px;
  transition: all 0.2s;
}

.reg-badge:hover {
  background: rgba(34, 197, 94, 0.15);
  transform: translateY(-2px);
}

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  color: rgba(6, 111, 209, 0.1);
  font-family: Georgia, serif;
}

.testimonial-stars { color: var(--alpicio-accent); margin-bottom: 1rem; }

.testimonial-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--alpicio-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-name { font-weight: 700; color: #0f172a; font-size: 0.95rem; }
.testimonial-role { color: #94a3b8; font-size: 0.82rem; }

/* ---- CTA SECTION ---- */
.cta-section {
  background: var(--alpicio-gradient);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ---- CONTACT FORM ---- */
.contact-section {
  background: var(--alpicio-dark-2);
}

.form-control-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: #fff;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.form-control-dark:focus {
  background: rgba(255,255,255,0.08);
  border-color: var(--alpicio-primary);
  box-shadow: 0 0 0 4px rgba(6, 111, 209, 0.15);
  color: #fff;
  outline: none;
}

.form-control-dark::placeholder { color: rgba(255,255,255,0.3); }

.form-label-dark {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.btn-submit {
  background: var(--alpicio-gradient);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.9rem 2.5rem;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(6, 111, 209, 0.4);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(6, 111, 209, 0.5);
}

/* ---- FOOTER ---- */
.footer {
  background: #020b18;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
}

.footer-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

.footer-logo-text span { color: var(--alpicio-accent); }

.footer-desc {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 0.75rem;
}

.footer-heading {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.footer-link {
  display: block;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.875rem;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-link:hover { color: rgba(255,255,255,0.85); }

.footer-divider {
  border-color: rgba(255,255,255,0.06);
  margin: 2.5rem 0 1.5rem;
}

.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}

/* ---- ANIMATIONS (AOS-like manual) ---- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="100"] { transition-delay: 0.1s; }
[data-animate-delay="200"] { transition-delay: 0.2s; }
[data-animate-delay="300"] { transition-delay: 0.3s; }
[data-animate-delay="400"] { transition-delay: 0.4s; }
[data-animate-delay="500"] { transition-delay: 0.5s; }
[data-animate-delay="600"] { transition-delay: 0.6s; }

/* ---- PARTICLES ---- */
#particles-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* ---- MODULE TABS ---- */
.module-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2rem;
}

.module-tab-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.module-tab-btn.active,
.module-tab-btn:hover {
  background: var(--alpicio-primary);
  border-color: var(--alpicio-primary);
  color: #fff;
}

/* ---- SCROLL TO TOP ---- */
#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--alpicio-gradient);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(6, 111, 209, 0.4);
  z-index: 9999;
  transition: all 0.3s;
  font-size: 18px;
}

#scrollTop.visible { display: flex; }
#scrollTop:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(6,111,209,0.5); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .hero-cta-group { flex-direction: column; }
  .btn-primary-hero, .btn-secondary-hero { width: 100%; justify-content: center; }
  .stat-number { font-size: 2rem; }
  .step-connector { display: none; }
}

/* ---- GLOW EFFECTS ---- */
.glow-blue { box-shadow: 0 0 30px rgba(6, 111, 209, 0.3); }
.glow-accent { box-shadow: 0 0 30px rgba(246, 195, 68, 0.3); }

/* ---- DASHBOARD MOCKUP ---- */
.mock-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 10px;
}

.mock-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mock-stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.mock-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.mock-badge {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: 600;
}

.mock-badge.green { background: rgba(34,197,94,0.15); color: #22c55e; }
.mock-badge.red { background: rgba(239,68,68,0.15); color: #ef4444; }
.mock-badge.yellow { background: rgba(246,195,68,0.15); color: #f6c344; }

.mock-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
  margin-top: 8px;
  overflow: hidden;
}

.mock-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #066fd1, #3b82f6);
}

.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='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
