/* Modal tabs styling */
.modal-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e8e8e8;
  margin-bottom: 24px;
  padding: 0 24px;
}

/* iOS Bounce Fix - Pure CSS Solution */
.tab-content {
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}

.tab-btn {
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #666;
  transition: all 0.2s ease;
  position: relative;
  font-family: 'Inter', sans-serif;
}

.tab-btn:hover {
  color: #333;
}

.tab-btn.active {
  color: #1a1a1a;
  border-bottom-color: #5b9dd9; /* Professional blue instead of green */
}

.tab-content {
  max-height: 70vh;
  overflow-y: auto;
  padding: 0 24px;
}

/* About Content Typography */
#about-content {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

#about-content h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 24px 0 16px 0;
  color: #1a1a1a;
}

#about-content p {
  margin-bottom: 16px;
  font-size: 15px;
  color: #4a4a4a;
}

#about-content strong {
  font-weight: 600;
  color: #1a1a1a;
}

/* Match guide tab styling */
#guide-content {
  font-family: 'Inter', sans-serif;
  color: #333;
}

/* Also ensure the updates container has proper spacing */
.updates-container {
  max-width: 450px;
  margin: 0 auto;
  padding-bottom: 20px;  /* Add padding at bottom */
}

.updates-container h2 {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.updates-container > p:first-of-type {
  text-align: center;
  color: #666;
  font-size: 15px;
  margin-bottom: 25px;
  line-height: 1.5;
}

.update-benefits {
  text-align: left;
  margin: 25px 0;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
}

.update-benefits p {
  margin: 0 0 12px 0;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.update-benefits ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.update-benefits li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #4B5563;
  font-size: 14px;
  line-height: 1.5;
}

.update-benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8B5CF6; /* Purple checkmarks matching your theme */
  font-weight: bold;
  font-size: 14px;
}

.email-capture {
  display: flex;
  gap: 0;
  margin: 25px 0 10px 0;  /* Reduced bottom margin from 12px to 10px */
  background: white;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  padding: 4px;
  transition: all 0.3s ease;
}

.email-capture:focus-within {
  border-color: #8B5CF6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

#email-input {
  flex: 1;
  border: none;
  padding: 12px 14px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: transparent;
  outline: none;
}

#email-input::placeholder {
  color: #9CA3AF;
}

#notify-btn {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  margin: 2px;
}

#notify-btn:hover {
  background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
}

#notify-btn:active {
  transform: translateY(0);
}

#notify-btn:disabled {
  background: #9CA3AF;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

#notify-btn.success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  cursor: default;
  pointer-events: none;
}

.privacy-note {
  text-align: center;
  font-size: 12px;
  color: #9CA3AF;
  margin-top: 6px;  /* Reduced from 8px to bring even closer */
  margin-bottom: 20px;
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .modal-tabs {
    gap: 0;
    padding: 0 12px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    scrollbar-width: none; /* Firefox */
  }
  
  /* Hide scrollbar on Chrome/Safari/Edge */
  .modal-tabs::-webkit-scrollbar {
    display: none;
  }
  
  .tab-btn {
    padding: 10px 16px;
    font-size: 14px;
    flex-shrink: 0;
    white-space: nowrap;
  }
  
  .tab-content {
    padding: 0 15px;
  }
  
  #about-content h2 {
    font-size: 20px;
    margin: 20px 0 12px 0;
  }
  
  #about-content p {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .updates-container {
    max-width: 100%;
  }
  
  .email-capture {
    flex-direction: column;
    gap: 15px;
  }
}

/* REPLACE the existing Guide Tab Enhancement section with this improved version */

/* Guide Tab Typography Enhancement */
#guide-content {
    font-family: 'Inter', sans-serif;
    color: #333;
}

#guide-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 36px;  /* More breathing room */
    margin-bottom: 16px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

/* First h3 shouldn't have top margin */
#guide-content .about-section:first-child h3 {
    margin-top: 0;
}

#guide-content p {
    font-size: 14px;
    line-height: 1.8;  /* More line height for readability */
    color: #4a4a4a;
    margin-bottom: 20px;  /* More space between paragraphs */
}

/* Philosophy section - make the percentages pop */
#guide-content p strong {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 14px;
}

/* Section spacing - critical for readability */
#guide-content .about-section {
    margin-bottom: 40px;  /* Generous space between sections */
}

/* Lists need breathing room */
#guide-content .benefits-list {
    margin: 24px 0;
    padding-left: 0;
}

#guide-content .benefits-list li {
    padding: 14px 0 14px 32px;  /* More padding */
    position: relative;
    line-height: 1.7;
    font-size: 14px;
    color: #4a4a4a;
    margin-bottom: 8px;  /* Space between items */
}

#guide-content .benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 4px;
    color: #8B5CF6;
    font-weight: bold;
    font-size: 14px;
    top: 14px;
}

#guide-content .benefits-list li strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Score visual needs space */
.score-visual {
    margin: 40px 0;
    padding: 0;
}

/* Coming Soon section */
.coming-soon-section {
    background: #f8f9fa;
    border-left: 3px solid #8B5CF6;
    margin: 40px 0;
    padding: 20px 24px;
    border-radius: 4px;
}

.coming-soon-section h3 {
    margin-top: 0 !important;
}

/* Data sources section */
.data-sources-section {
    margin: 40px 0;
    padding: 24px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.data-sources-section .sources-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    margin-bottom: 8px;
}

.data-sources-section .sources-list {
    font-size: 13px;
    color: #4a4a4a;
}

/* Final CTA - make it subtle but impactful */
.cta-section {
    text-align: center;
    margin: 40px 0 20px 0;
    padding: 32px 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f5f6f7 100%);
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

.cta-section .cta-main {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.cta-section .cta-sub {
    font-size: 13px;
    color: #666;
    font-style: italic;
    margin: 0;
}

/* Fix the purple box issue - if it exists elsewhere, override it */
#guide-content .cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #f5f6f7 100%) !important;
}

#guide-content .cta-section .cta-main {
    color: #1a1a1a !important;
}

/* Make sure hero section has proper spacing */
.hero-section {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.hero-section h3 {
    margin-top: 0 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #guide-content .about-section {
        margin-bottom: 32px;
    }
    
    #guide-content h3 {
        font-size: 17px;
        margin-top: 28px;
    }
    
    #guide-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* ========= GUIDE TAB - PROFESSIONAL REDESIGN ========= */

/* Base setup */
#guide-content {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
}

#guide-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: 32px 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}

#guide-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0 0 16px 0;
}

/* Hero - subtle gradient background */
.hero-section {
    background: linear-gradient(135deg, #faf5ff 0%, #f3f4f6 100%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #8B5CF6 0%, #7C3AED 100%);
}

.hero-section h3 {
    margin: 0 0 8px 0;
    text-transform: none;
    font-size: 16px;
}

/* Philosophy section - make percentages stand out */
#guide-content p strong {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Factor cards - add depth */
.factors-grid {
    margin: 24px 0 32px 0;
    gap: 14px;
}

.factor-card {
    background: white;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.factor-card:hover {
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
    border-color: #8B5CF6;
}

.factor-card .factor-percentage {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    font-weight: 800;
}

/* Benefits list - clean lines */
#guide-content .benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    background: #fafafa;
    border-radius: 8px;
    padding: 4px;
}

#guide-content .benefits-list li {
    padding: 12px 16px 12px 36px;
    position: relative;
    font-size: 14px;
    color: #374151;
    background: white;
    margin: 4px;
    border-radius: 6px;
    transition: all 0.15s ease;
}

#guide-content .benefits-list li:hover {
    background: #f9fafb;
    padding-left: 40px;
}

#guide-content .benefits-list li::before {
    content: "→";
    position: absolute;
    left: 14px;
    color: #8B5CF6;
    font-weight: bold;
    transition: all 0.15s ease;
}

#guide-content .benefits-list li:hover::before {
    left: 18px;
}

/* Coming Soon - professional gradient with glass effect */
.coming-soon-section {
    background: linear-gradient(135deg, #6366f1 0%, #8B5CF6 50%, #a855f7 100%);
    padding: 24px;
    border-radius: 12px;
    margin: 32px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    transform: rotate(45deg);
    opacity: 0.3;
}

.coming-soon-section h3 {
    color: white !important;
    margin: 0 0 12px 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    opacity: 0.95;
}

.coming-soon-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 13px !important;
    margin-bottom: 8px !important;
    font-weight: 500;
}

.coming-features {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 12px !important;
    line-height: 1.6 !important;
}

/* Score bars - modern flat design */
.score-visual {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.score-bar {
    padding: 14px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.score-bar:hover {
    transform: translateX(4px);
}

.score-bar.elite {
    background: #10b981;
    color: white;
}

.score-bar.strong {
    background: #22c55e;
    color: white;
}

.score-bar.average {
    background: #f59e0b;
    color: white;
}

.score-bar.avoid {
    background: #ef4444;
    color: white;
}

/* Your Control section - highlight box */
#guide-content .about-section:has(h3:contains("Your Control")) {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 20px;
    margin: 28px 0;
}

/* Two Resets - clean cards */
#guide-content .about-section:has(h3:contains("Two Resets")) .benefits-list {
    background: transparent;
    padding: 0;
}

#guide-content .about-section:has(h3:contains("Two Resets")) .benefits-list li {
    background: white;
    border: 1px solid #e5e7eb;
    margin-bottom: 8px;
}

/* ========= BOTTOM SECTIONS ENHANCEMENT ========= */

/* Data Sources - Professional Certification Vibe */
.data-sources-section {
    text-align: center;
    padding: 28px 24px;
    margin: 32px 0 24px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f3f4f6 100%);
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    position: relative;
}

.data-sources-section::before {
    content: '✓';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.sources-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6b7280;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sources-label::before,
.sources-label::after {
    content: '';
    height: 1px;
    width: 40px;
    background: linear-gradient(90deg, transparent, #d1d5db, transparent);
}

.sources-list {
    font-size: 13px;
    color: #374151;
    line-height: 1.8;
    font-weight: 500;
}

/* Final CTA - Silver Chrome Design */
.cta-section {
    text-align: center;
    margin: 32px 0 0 0;
    padding: 24px;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 50%, #9ca3af 100%);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    animation: chrome-shine 3s ease-in-out infinite;
}

@keyframes chrome-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.cta-section .cta-sub {
    font-size: 14px;
    color: #1f2937;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Hide the main CTA text if it exists */
.cta-section .cta-main {
    display: none;
}

/* ========= GLOSSARY TAB - PROFESSIONAL CLEAN DESIGN ========= */

/* Base typography - override any inherited colors */
#glossary-content {
    font-family: 'Inter', sans-serif;
    color: #1f2937 !important;
    line-height: 1.6;
}

#glossary-content * {
    color: inherit !important;
}

/* Main title */
#glossary-content > .about-section > h3:first-child {
    font-size: 18px;
    font-weight: 700;
    color: #111827 !important;
    margin: 0 0 24px 0;
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 2px solid #e5e7eb;
}

/* Section headings with emojis */
#glossary-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937 !important;
    margin: 28px 0 12px 0;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-left: 3px solid #8B5CF6;
    border-radius: 6px;
    transition: all 0.2s ease;
}

#glossary-content h4:hover {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    transform: translateX(2px);
}

/* First h4 shouldn't have top margin */
#glossary-content > .about-section > h4:first-of-type {
    margin-top: 0;
}

/* Paragraphs */
#glossary-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563 !important;
    margin: 0 0 12px 16px;
}

/* Strong text in paragraphs */
#glossary-content p strong,
#glossary-content li strong {
    color: #111827 !important;
    font-weight: 600;
}

/* Emphasized text */
#glossary-content em {
    color: #6b7280 !important;
    font-style: italic;
}

/* Lists */
#glossary-content ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 16px 16px;
}

#glossary-content li {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563 !important;
    padding: 8px 0 8px 24px;
    position: relative;
    margin-bottom: 6px;
    transition: all 0.15s ease;
}

#glossary-content li:hover {
    padding-left: 28px;
}

/* Custom bullet points */
#glossary-content li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8B5CF6 !important;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.15s ease;
}

#glossary-content li:hover::before {
    left: 4px;
}

/* Spacing for the about-section wrapper */
#glossary-content .about-section {
    padding-bottom: 20px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #glossary-content h4 {
        font-size: 14px;
        padding: 10px 14px;
        margin: 24px 0 10px 0;
    }
    
    #glossary-content p,
    #glossary-content li {
        font-size: 13px;
        margin-left: 8px;
    }
    
    #glossary-content ul {
        margin-left: 8px;
    }
}

/* ========= INCOMING UPDATES TAB - REMOVE ALL GREEN COLORS ========= */

/* Force normal colors for all incoming-content elements */
#incoming-content,
#incoming-content * {
    color: inherit !important;
}

#incoming-content {
    font-family: 'Inter', sans-serif;
    color: #1f2937 !important;
}

/* Main heading - normal color */
#incoming-content > h2 {
    font-size: 20px;
    font-weight: 700;
    color: #111827 !important;
    margin: 0 0 28px 0;
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 2px solid #e5e7eb;
}

/* Section headings - professional gray */
#incoming-content h3 {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937 !important;
    margin: 24px 0 12px 0;
    padding: 10px 14px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-left: 3px solid #8B5CF6;
    border-radius: 6px;
}

/* Paragraphs - dark gray */
#incoming-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563 !important;
    margin: 0 0 12px 0;
}

/* Lists - remove any green */
#incoming-content ul {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

#incoming-content li {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563 !important;
    padding: 8px 0 8px 24px;
    position: relative;
    margin-bottom: 8px;
}

/* Bullet points - use purple accent */
#incoming-content li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8B5CF6 !important;
    font-weight: bold;
    font-size: 14px;
}

/* Strong text - dark gray */
#incoming-content strong {
    color: #111827 !important;
    font-weight: 600;
}

/* Keep the purple subtitle styling */
#incoming-content p[style*="color: #9D7FFF"] {
    color: #9D7FFF !important;
}

/* Preserve FINTEL ADVANTAGE styling - Clean smooth gradient */
#incoming-content .coming-soon-section {
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%) !important;
    color: white !important;
    padding: 24px !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 32px 0 !important;
}

/* Remove the dotted pattern overlay - was causing layered appearance */
#incoming-content .coming-soon-section::before {
    display: none !important;
}

#incoming-content .coming-soon-section h3 {
    color: white !important;
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

#incoming-content .coming-soon-section .coming-soon-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 13px !important;
    margin-bottom: 8px !important;
    font-weight: 500 !important;
}

#incoming-content .coming-soon-section .coming-features {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 12px !important;
    line-height: 1.6 !important;
}

#incoming-content .coming-soon-section p {
    color: white !important;
}

#incoming-content .coming-soon-section div {
    color: white !important;
}

/* Section spacing */
#incoming-content .about-section {
    margin-bottom: 32px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #incoming-content h2 {
        font-size: 18px;
    }
    
    #incoming-content h3 {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    #incoming-content p,
    #incoming-content li {
        font-size: 13px;
    }
}

/* ========= MOBILE OPTIMIZATION FOR GLOSSARY SECTIONS ========= */
@media (max-width: 768px) {
    #glossary-content .about-section {
        padding: 16px 12px;
    }
    
    #glossary-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 12px;
    }
    
    #glossary-content h3 {
        font-size: 16px;
    }
    
    #glossary-content h4 {
        font-size: 14px;
        padding: 10px 12px;
    }
}

/* ========= PREMIUM GREEN DATA VERIFICATION SECTION ========= */
.data-verification-section {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    padding: 16px 20px;
    border-radius: 8px;
    margin: 24px 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.data-verification-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    pointer-events: none;
}

.verification-text {
    color: white;
    font-size: 14px;
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.verification-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    width: 22px;
    height: 22px;
    line-height: 22px;
    border-radius: 50%;
    text-align: center;
    margin-right: 8px;
    font-weight: bold;
    vertical-align: middle;
}

.verification-text strong {
    color: white;
    font-weight: 600;
}

.source-reference {
    display: inline-block;
    margin-left: 4px;
    opacity: 0.9;
    font-size: 13px;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .data-verification-section {
        padding: 14px 16px;
    }
    
    .verification-text {
        font-size: 13px;
    }
    
    .source-reference {
        display: block;
        margin-top: 4px;
        margin-left: 0;
    }
}
