:root {
  --bg-dark: #120A1D;
  --bg-footer: #150E1F;
  --bg-light: #ffffff;
  --bg-green-section: #73A79E;
  --bg-light-gray: #f9fafc;
  
  --text-dark: #150E1F;
  --text-light: #F4F4F6;
  --text-muted: #9E99A6;
  
  --accent-red: #DA3E41;
  --accent-green: #5DB336;
  --accent-teal: #6BB39F;
  
  --gradient-text: linear-gradient(90deg, #FA3E4D 0%, #36B89E 100%);
  
  --font-main: 'Inter', sans-serif;
  --container-width: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 32px;
}

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

html, body {
  max-width: 100vw; /* Crucial to prevent iOS scroll shifting */
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  width: 100%;
}

a { text-decoration: none; color: inherit; transition: opacity 0.3s ease; }
a:hover { opacity: 0.8; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
img { max-width: 100%; display: block; height: auto; }

.dark-bg { background-color: var(--bg-dark); color: var(--text-light); }
.bg-white { background-color: var(--bg-light); color: var(--text-dark); }
.bg-light-gray { background-color: var(--bg-light-gray); }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 4%; /* Responsive container padding natively */
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-light { color: var(--text-light); }
.mb-60 { margin-bottom: 60px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.text-dark { color: var(--text-dark); }
.text-muted { color: var(--text-muted); }
.text-green { color: var(--accent-green); }
.text-white { color: #fff; }
.fw-bold { font-weight: 800; }

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-primary {
  background-color: var(--accent-red);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(218, 62, 65, 0.4);
}

.btn-green {
  background-color: var(--accent-green);
  color: #fff;
  padding: 14px 36px;
  border-radius: 40px;
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(93, 179, 54, 0.4);
}

.btn-dark-solid {
  background-color: var(--text-dark);
  color: #fff;
  width: 100%;
  max-width: 100%;
  padding: 14px;
  border-radius: var(--radius-md);
  margin-top: 15px;
}
.btn-dark-solid:hover {
  background-color: #000;
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.text-solid { color: var(--accent-red); }

/* Fluid Typography */
.section-title { 
  font-size: clamp(2rem, 4vw + 1rem, 2.5rem); 
  font-weight: 800; 
  margin-bottom: 20px; 
  line-height: 1.2; 
}
.footer-quick-links h4 { font-size: 1.2rem; color: #fff; margin-bottom: 20px; }
.footer-quick-links a { display: block; color: var(--text-muted); margin-bottom: 12px; transition: color 0.3s; }
.footer-quick-links a:hover { color: var(--accent-teal); }

/* Header & Logo Sticky Glassmorphism */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 15px 0;
  z-index: 1000;
  color: #fff;
  background: rgba(18, 10, 29, 0.90);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { display: flex; align-items: center; z-index: 101; }
.brand-logo-img { max-height: 45px; object-fit: contain; }
.nav-links {
  display: flex;
  gap: 30px;
  font-weight: 500;
  font-size: 0.95rem;
  align-items: center;
}
.nav-links a:hover { color: var(--accent-teal); }

/* Dropdown Submenu */
.dropdown { position: relative; display: inline-flex; align-items: center; gap: 5px; cursor: pointer; height: 100%; padding: 10px 0; }
.dropdown-content {
  display: flex; flex-direction: column; position: absolute;
  background-color: #fff; min-width: 260px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15); border-radius: var(--radius-md);
  z-index: 1000; top: 100%; left: -20px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all 0.3s ease;
  overflow: hidden;
}
.dropdown:hover .dropdown-content { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-content a {
  color: var(--text-dark) !important; padding: 15px 25px;
  text-decoration: none; font-size: 0.95rem; font-weight: 600;
  border-bottom: 1px solid #f0f0f0; transition: background 0.2s;
}
.dropdown-content a:hover { color: var(--accent-red) !important; background-color: var(--bg-light-gray); }

.header-cta { margin-left: 20px; }

/* Hero */
.hero {
  padding: 180px 0 100px;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 60px;
  align-items: center;
}
.hero-title {
  /* FLUID TYPOGRAPHY: Instantly scales from Mobile (2.2rem) to Desktop (3.5rem) */
  font-size: clamp(2.2rem, 5vw + 1rem, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 100%;
}
.hero-subtitle { 
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600; margin-bottom: 20px; 
}
.hero-desc {
  font-size: clamp(0.95rem, 1vw + 0.7rem, 1.05rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.7;
}

/* Left-Aligned Marquee */
.hero-partners { margin-top: 60px; max-width: 650px; width: 100%; }
.partners-title {
  font-size: 0.75rem; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 15px; font-weight: 600;
}
.marquee-wrapper {
  overflow: hidden; white-space: nowrap; width: 100%;
  border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
}
.marquee {
  display: inline-flex;
  gap: 60px;
  padding-right: 60px;
  animation: scrollMarquee 20s linear infinite;
}
@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.p-logo {
  font-size: 1.2rem; color: #bbb; display: flex; align-items: center; gap: 8px; font-weight: 600;
}

/* Form Styles */
.hero-form-wrapper { width: 100%; position: relative; z-index: 2; min-width: 0; }
.lead-form-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px;
  color: var(--text-dark);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 100%;
}
.lead-form-card h2 { font-size: clamp(1.2rem, 3vw, 1.4rem); margin-bottom: 20px; font-weight: 700; }
.input-group { position: relative; margin-bottom: 12px; width: 100%; min-width: 0; }
.input-group input {
  width: 100%;
  max-width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color 0.3s;
}
.input-group input:focus { border-color: var(--accent-teal); }
.input-group i { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: #aaa; pointer-events: none; }
.recaptcha-placeholder {
  display: flex; justify-content: space-between; align-items: center;
  background: #f9f9f9; border: 1px solid #ddd; padding: 10px 15px;
  border-radius: 3px; margin-top: 15px;
  width: 100%;
  max-width: 100%;
  overflow: hidden; /* Prevent logo pushing widths */
}
.rc-check { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 500; min-width: 0; }
.rc-logo { height: auto; max-width: 40px; } /* Ensures image doesn't crack mobile width */

/* Curve Divider */
.hero-divider {
  position: absolute; bottom: -1px; left: 0; width: 100%; overflow: hidden; line-height: 0;
}

/* New Receipts Section */
.receipts { padding: 40px 0; }

.receipt-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.receipt-card {
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  color: #fff;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}
.receipt-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
}
.bg-kpi-green { background-color: var(--accent-green); }
.bg-kpi-red { background-color: var(--accent-red); }
.bg-kpi-teal { background-color: var(--accent-teal); }
.kpi-value {
  font-size: clamp(2.5rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  border-bottom: 2px solid rgba(255,255,255,0.4);
  padding-bottom: 10px;
  margin-bottom: 15px;
  position: relative; z-index: 1;
  line-height: 1;
}
.kpi-label { font-size: 1rem; font-weight: 600; line-height: 1.4; color: #fff; position: relative; z-index: 1; }

.certified-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap; /* Allows wrapping on extreme small screens */
}
.cert-text { font-size: clamp(1.2rem, 3vw, 1.4rem); font-weight: 800; color: #444; }
.cert-line { height: 1px; width: 150px; background: #ddd; flex-shrink: 0; }
.cert-logos { display: flex; align-items: center; gap: 20px; }
.cert-logo-circle { border-radius: 50%; width: 60px; height: 60px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.cert-logo-rect { height: 50px; width: auto; }

/* How It Works Phase 3 Redesign */
.how-it-works { margin-top: 80px; }
.hiw-grid {
  display: grid; grid-template-columns: 420px minmax(0, 1fr); gap: 40px; margin-top: 40px; align-items: stretch;
}
.hiw-card {
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 480px;
  width: 100%;
}
.step-badge {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; display: inline-block;
  color: #fff; opacity: 0.8; font-weight: 600;
}
.hiw-card h3 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 20px; color: var(--accent-red); line-height: 1.2; }
.hiw-card p { font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,0.9); }

/* Navigate Arrows */
.hiw-arrows {
  position: absolute; bottom: 40px; right: 40px;
  display: flex; gap: 15px; z-index: 10;
}
.arrow-btn {
  width: 45px; height: 45px; border-radius: 50%;
  background-color: transparent; border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.arrow-btn:hover { background-color: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); transform: scale(1.05); }

/* Flowchart Container */
.hiw-flowchart-container {
  background-color: var(--bg-light-gray);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-width: 0;
}
.flow-nodes {
  display: flex; flex-direction: column; gap: 60px; width: 100%; position: relative; min-width: 0;
}
.flow-row {
  display: flex; gap: 40px; width: 100%; align-items: center; position: relative; min-width: 0;
}

/* S-Curve Formatting */
.row-1 { justify-content: flex-start; }
.row-2 { justify-content: flex-end; flex-direction: row-reverse; } /* Nodes flow visually right-to-left */
.row-3 { justify-content: flex-start; }
.row-4 { justify-content: flex-end; }

/* Map Nodes visually */
.node {
  background: #fff; border: 1px solid #ddd; padding: 18px 30px; border-radius: 40px;
  font-weight: 600; display: inline-flex; width: fit-content; align-items: center;
  position: relative; z-index: 2; box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  cursor: pointer; transition: all 0.3s; color: var(--text-dark);
  font-size: 0.95rem; text-align: center; max-width: 100%;
}
.node:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.node.active { background-color: var(--accent-red); border-color: var(--accent-red); color: #fff; }

/* The S-Curve Lines */
/* Draw basic line segments behind nodes */
.row-1::after {
  content: ''; position: absolute; top: 50%; right: -20px; width: 50%; height: 115px;
  border-top: 1px solid #ccc; border-right: 1px solid #ccc; border-bottom: 1px solid #ccc;
  border-radius: 0 40px 40px 0; z-index: 1; pointer-events: none;
}
.row-2::after {
  content: ''; position: absolute; top: 50%; left: -20px; width: 60%; height: 115px;
  border-top: none; border-left: 1px solid #ccc; border-bottom: 1px solid #ccc;
  border-radius: 40px 0 0 40px; z-index: 1; pointer-events: none;
}
.row-3::after {
  content: ''; position: absolute; top: 50%; right: 20%; width: 50%; height: 115px;
  border-top: none; border-right: 1px solid #ccc; border-bottom: 1px solid #ccc;
  border-radius: 0 40px 40px 0; z-index: 1; pointer-events: none;
}

/* Hide line inside buttons */
.node::after, .node::before { display: none; }

/* Industries Banner */
.industries {
  position: relative; padding: 100px 0; background-color: var(--bg-dark);
  background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80');
  background-size: cover; background-position: center; background-attachment: fixed; color: #fff;
}
.industries-overlay { position: absolute; inset: 0; background: rgba(31, 21, 46, 0.85); }
.industries-inner { position: relative; z-index: 1; }
.industries .section-title { color: #fff; }
.industry-lists { display: flex; justify-content: center; gap: 60px; margin-top: 40px; text-align: left; flex-wrap: wrap; }
.industry-list li { font-size: 1.1rem; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }

/* FAQ */
.faq { background-color: var(--bg-green-section); padding: 80px 0; color: #fff; }
.faq .section-title { color: #fff; }
.faq-container { max-width: 800px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.3); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.3); }
.faq-title {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; color: #fff; font-size: 1.15rem; font-weight: 600;
  padding: 24px 0; text-align: left; cursor: pointer;
}
.faq-title .icon { font-size: 1.2rem; transition: transform 0.3s; margin-left: 15px; flex-shrink: 0; }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-content p { padding-bottom: 24px; font-size: 0.95rem; opacity: 0.9; margin: 0; }
.faq-item.active .icon { transform: rotate(45deg); }

/* Footer */
.footer { padding: 80px 0 0; position: relative; overflow: hidden; }
.footer-inner { display: grid; grid-template-columns: minmax(0, 1.5fr) 1fr 400px; gap: 40px; padding-bottom: 60px; }
.footer-left { padding-right: 40px; min-width: 0; }
.footer-logo { font-size: 2rem; font-weight: 800; margin-bottom: 20px; }
.social-icons a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); margin-right: 10px; color: #fff;
}
.social-icons a:hover { background: var(--accent-red); }
.contact-info p { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; color: #ddd; word-wrap: break-word; }
.footer-right { position: relative; z-index: 10; min-width: 0; width: 100%; }


/* ========================================================= */
/* Flawless Responsive & Mobile-First Constraints */
/* ========================================================= */

/* Tablets & Small Laptops */
@media screen and (max-width: 1100px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr) 350px; gap: 40px; }
  .hiw-grid { grid-template-columns: 320px minmax(0, 1fr); gap: 30px; }
  .footer-inner { grid-template-columns: minmax(0, 1.5fr) 1fr 350px; gap: 30px; }
  .receipt-cards-grid { gap: 20px; }
}

/* Portrait Tablets & Large Phones */
@media screen and (max-width: 900px) {
  .container { padding: 0 5%; }
  
  /* Collapse Grid Dual-Columns into Stacks: minmax(0, 1fr) is essential to completely eliminate Grid stretching! */
  .hero-inner, .hiw-grid, .footer-inner, .receipt-cards-grid { grid-template-columns: minmax(0, 1fr); align-items: flex-start; }
  
  /* Hero Refinements (Align Left on Mobile for cleaner aesthetics) */
  .hero { padding-top: 130px; padding-bottom: 60px; }
  .hero-inner { text-align: left; gap: 40px; }
  /* Notice hero-title is handled globally by clamp() to fluidly avoid massive jumps */
  .hero-desc { margin: 0 0 30px 0; max-width: 100%; }
  .hero-partners { margin: 20px 0 0 0; text-align: left; }
  .marquee-wrapper { margin: 0; width: 100%; }
  
  /* Form Wrappers Guarantee constraint */
  .hero-form-wrapper, .footer-right { width: 100%; max-width: 100%; margin: 0; display: block; overflow: hidden; }
  .lead-form-card { padding: 30px 25px; } /* Slightly reduce internal card buffer securely */
  .footer-right .lead-form-card { margin-top: 0 !important; }
  .footer-left { padding-right: 0; text-align: center; }
  
  /* Receipts Section Fixes */
  .certified-row { flex-direction: column; text-align: center; }
  .cert-line { width: 60%; margin: 10px 0; }
  .cert-logos { justify-content: center; }
  
  /* Break the How It Works S-Curve into full-width simple stacked blocks */
  .hiw-flowchart-container { padding: 40px 25px; }
  .flow-nodes { gap: 15px; }
  .flow-row { 
    flex-direction: column !important; 
    justify-content: center !important; 
    gap: 15px; 
    padding: 0 !important; 
  }
  .row-1::after, .row-2::after, .row-3::after { display: none; } /* Nuke the curved lines */
  .node { 
    width: 100%; 
    max-width: 100%; /* Stop explicit widths preventing flex wrap */
    text-align: left; 
    padding: 16px 20px; 
    margin: 0; 
    justify-content: flex-start; 
    font-size: 1rem;
    border-radius: 12px; /* Square them off slightly for mobile bars */
  }
}

/* Strict Smartphone Breakpoints */
@media screen and (max-width: 600px) {
  body { font-size: 15px; }
  
  /* Header Scaling */
  .header { padding: 15px 0; }
  .brand-logo-img { max-height: 35px; }
  .header-cta { margin-left: auto; display: flex; align-items: center; }
  
  /* Input Form Padding Fixes deeply */
  .lead-form-card { padding: 25px 20px; width: 100%; }
  .rc-check { font-size: 0.75rem; word-break: break-all; } /* Prevents check text pushing */
  .recaptcha-placeholder { padding: 8px 12px; }
  
  /* KPI Cards */
  .receipt-card { padding: 30px 20px; }
  
  /* How It Works Dark Card Re-arrangement */
  .hiw-card { padding: 35px 25px; min-height: auto; padding-bottom: 80px; } /* Room for arrows */
  .hiw-arrows { bottom: 25px; right: 25px; }
  
  /* Lists & FAQs */
  .industry-list li { font-size: 1rem; align-items: flex-start; }
  .faq-title { font-size: 1rem; padding: 18px 0; }
  .faq-content p { font-size: 0.9rem; padding-bottom: 18px; }
  
  /* Footer Links */
  .social-icons { justify-content: center; }
  .contact-info p { justify-content: center; font-size: 0.95rem; }
  .footer-badges { text-align: center; }
  .footer-badges img { margin: 0 auto; }
}

/* Extra Small Constraints (iPhone SE, etc.) */
@media screen and (max-width: 400px) {
  .cert-logos { flex-direction: column; gap: 15px; }
}

/* ========================================================= */
/* SEO Page Specific Additions */
/* ========================================================= */

.seo-nodes .row-3::after { display: none; } /* SEO has 6 Steps, hide the trail down */

.industry-matrix { padding: 60px 0; }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.industry-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}
.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-color: var(--accent-red);
}
.industry-card i {
  font-size: 2.5rem;
  color: var(--accent-green);
  margin-bottom: 20px;
}
.industry-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

@media screen and (max-width: 900px) {
  .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media screen and (max-width: 600px) {
  .industry-grid { grid-template-columns: minmax(0, 1fr); }
  .industry-card { padding: 30px 20px; }
}

/* ========================================================= */
/* Dynamic Mobile Menu Integrations */
/* ========================================================= */

@media screen and (max-width: 900px) {
  .mobile-menu-btn { display: block !important; }
  
  .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--bg-dark);
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
    align-items: flex-start;
  }
  .nav-links.active { max-height: 600px; padding-bottom: 20px; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 2px solid var(--accent-red); }
  
  .nav-links a, .nav-links .dropdown {
    width: 100%; padding: 18px 5%; border-bottom: 1px solid rgba(255,255,255,0.05); color: #fff; font-size: 1.05rem; justify-content: flex-start;
  }
  .dropdown { flex-direction: column; align-items: flex-start; height: auto; }
  .dropdown-content { position: static; box-shadow: none; background: transparent; padding-left: 20px; opacity: 1; visibility: visible; display: flex; transform: none; min-width: 100%; }
  .dropdown-content a { color: #fff !important; font-size: 0.95rem; padding: 12px 0; border-bottom: none; }
  .dropdown-content a:hover { background: transparent; color: var(--accent-red) !important; }
}
