/* Custom CSS for Rax Data & Energy - Exact Match to React Source */

:root {
    /* Primary Colors */
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --secondary: #f59e0b;
    --secondary-hover: #d97706;
    
    /* Background Colors */
    --background: #ffffff;
    --card: hsl(0 0% 98%);
    --card-30: hsl(0 0% 98% / 30%);
    
    /* Text Colors */
    --foreground: #0a0a0a;
    --muted-foreground: #737373;
    
    /* Border Colors */
    --border: hsl(240 5% 90%);
    
    /* Other */
    --radius: 0.5rem;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    padding-top: 106px; /* Space for ticker (42px) + navbar (64px) */
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--foreground);
}

h2 {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--foreground);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
}

p {
    color: var(--muted-foreground);
}

.text-muted-foreground {
    color: var(--muted-foreground) !important;
}

/* Gradient Text */
.text-gradient-blue {
    background: linear-gradient(120deg, #3b82f6, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-gold {
    background: linear-gradient(120deg, #facc15, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Container */
.container {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Crypto Ticker */
.crypto-ticker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
    height: 42px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
    height: 100%;
    align-items: center;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 40s linear infinite;
    align-items: center;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.5rem;
    font-size: 0.875rem;
}

.ticker-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.ticker-symbol {
    font-weight: 600;
    color: #ffffff;
}

.ticker-price {
    color: #ffffff;
}

.ticker-change {
    font-size: 0.75rem;
}

.ticker-change.positive {
    color: #22c55e;
}

.ticker-change.negative {
    color: #ef4444;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

.ticker-content:hover {
    animation-play-state: paused;
}

/* Navigation */
.navbar {
    position: fixed !important;
    top: 42px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1040 !important;
    background-color: #ffffff !important;
    border-bottom: 1px solid var(--border);
    height: 64px;
    padding: 0 !important;
    display: block !important;
}

.navbar .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 100%;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Desktop Navigation */
.navbar > .container > .navbar-nav {
    display: none !important;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: row !important;
}

@media (min-width: 992px) {
    .navbar > .container > .navbar-nav.d-lg-flex {
        display: flex !important;
        flex-direction: row !important;
    }
}

.navbar-nav li {
    list-style: none;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground) !important;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--foreground) !important;
}

.nav-link.active {
    background-color: var(--primary);
    color: #ffffff !important;
}

/* Dropdown */
.navbar .dropdown {
    position: relative;
}

.navbar .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 12rem;
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 0.25rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    display: block;
    margin: 0;
}

.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.navbar .dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--foreground);
    text-decoration: none;
    transition: background-color 0.2s;
}

.navbar .dropdown-item:hover {
    background-color: rgba(59, 130, 246, 0.1);
}

/* Mobile Menu - Hidden by default */
.navbar-collapse {
    display: none !important;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1039;
}

.navbar-collapse.show {
    display: block !important;
}

.navbar-collapse .navbar-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-collapse .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 0.75rem 1rem;
}

/* Mobile Menu Toggle */
.navbar-toggler {
    display: none;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--foreground);
}

@media (max-width: 991px) {
    .navbar-toggler {
        display: block !important;
    }
    
    .navbar > .container > .navbar-nav {
        display: none !important;
    }
    
    .navbar > .container > div.d-lg-block {
        display: none !important;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--foreground);
    border-color: var(--border);
}

.btn-outline:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: var(--foreground);
}

.btn-outline-dark {
    background-color: #ffffff;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-outline-dark:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
    color: #1f2937;
}

/* CTA Section */
.cta-section {
    background-color: #ffffff;
}

.cta-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(191, 219, 254, 0.5), rgba(255, 255, 255, 0.8) 50%, rgba(254, 215, 170, 0.4));
    pointer-events: none;
}

.btn-ghost {
    background-color: transparent;
    color: var(--foreground);
    border-color: transparent;
}

.btn-ghost:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Cards */
.card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.card-content {
    padding: 1.5rem;
}

/* Sections */
section {
    background-color: var(--background);
}

.bg-card-30 {
    background-color: var(--card-30) !important;
}

.bg-card {
    background-color: var(--card) !important;
}

/* Footer */
footer {
    background-color: var(--card);
    border-top: 1px solid var(--border);
    margin-top: 5rem;
}

footer h4, footer h6 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

footer a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--primary);
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer li {
    margin-bottom: 0.5rem;
}

.footer-disclosure {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-disclosure p {
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.footer-disclosure a {
    color: var(--primary);
}

.footer-disclosure a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    background-color: #ffffff;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

/* Form Controls */
.form-label {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background-color: #ffffff;
    color: var(--foreground);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Icons */
.icon-primary {
    color: var(--primary);
}

.icon-secondary {
    color: var(--secondary);
}

/* Spacing Utilities */
.pt-32 { padding-top: 8rem; }
.pb-16 { padding-bottom: 4rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-4 { margin-top: 1rem; }
.gap-8 { gap: 2rem; }
.gap-6 { gap: 1.5rem; }
.gap-4 { gap: 1rem; }
.gap-2 { gap: 0.5rem; }

/* Grid */
.grid {
    display: grid;
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-12 { grid-template-columns: repeat(12, 1fr); }

.col-span-2 { grid-column: span 2; }
.col-span-4 { grid-column: span 4; }

/* Flex */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* Text */
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-relaxed { line-height: 1.625; }

/* Width/Height */
.w-full { width: 100%; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Responsive */
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .md\:flex-row { flex-direction: row; }
    .md\:items-center { align-items: center; }
    .md\:justify-between { justify-content: space-between; }
    .md\:gap-6 { gap: 1.5rem; }
}

@media (min-width: 1024px) {
    h1 { font-size: 3rem; }
    
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .lg\:grid-cols-12 { grid-template-columns: repeat(12, 1fr); }
    .lg\:col-span-2 { grid-column: span 2; }
    .lg\:col-span-4 { grid-column: span 4; }
}

/* Contact Cards */
.contact-card {
    text-align: center;
}

.contact-card .icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary);
    margin: 0 auto 0.75rem;
}

/* Location Cards */
.location-card .icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.location-card.mexico .icon {
    color: var(--secondary);
}

/* Check Items */
.check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background-color: rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.check-icon span {
    font-size: 0.75rem;
    color: var(--primary);
}

/* Utilities */
.rounded-full { border-radius: 9999px; }
.shadow-lg { box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.cursor-pointer { cursor: pointer; }
.transition-colors { transition: color 0.2s; }

/* Glow effects */
.glow-blue {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

/* Icon Containers - Equal size rounded circles */
.icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-container.primary {
    background-color: rgba(59, 130, 246, 0.1);
}

.icon-container.secondary {
    background-color: rgba(245, 158, 11, 0.1);
}

.icon-container i {
    font-size: 2rem;
}

/* Small icon containers for cards */
.icon-container-sm {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-container-sm.primary {
    background-color: rgba(59, 130, 246, 0.1);
}

.icon-container-sm.secondary {
    background-color: rgba(245, 158, 11, 0.1);
}

.icon-container-sm i {
    font-size: 1.5rem;
}

/* Tech Feature Cards - Advanced Technology Section */
.tech-feature-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.tech-feature-card p {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.5;
}

.tech-feature-card p strong {
    color: #3b82f6;
    font-weight: 600;
}

.tech-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 0.5rem;
}

.tech-feature-icon i {
    font-size: 1.25rem;
    color: #3b82f6;
}

/* Tech Section Background */
.tech-section {
    background-color: #ffffff;
}

/* Hero Section - Centered */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-section .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
}

.hero-section .hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 2rem;
}

.hero-section h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.25rem;
    }
}

.hero-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Partners Page Styles */
.section-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-icon svg {
    color: #3b82f6;
}

.section-icon .text-warning {
    color: #f59e0b !important;
}

.partner-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    transition: box-shadow 0.2s ease;
}

.partner-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-wrapper svg.text-warning {
    color: #f59e0b;
}

.card-icon-wrapper svg.text-primary {
    color: #3b82f6;
}

.certified-installer-box {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(59, 130, 246, 0.05));
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.investment-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bg-primary-light {
    background-color: rgba(59, 130, 246, 0.1);
}

.bg-warning-light {
    background-color: rgba(245, 158, 11, 0.1);
}

.investment-icon-box svg.text-primary {
    color: #3b82f6;
}

.investment-icon-box svg.text-warning {
    color: #f59e0b;
}

.stat-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.btn-tab-nav {
    border: 1px solid #d1d5db;
    background: #fff;
    color: #374151;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-tab-nav:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
    color: #111827;
}

.nav-account-btn {
    border: 1px solid #d1d5db;
    color: #374151;
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
}

.nav-account-btn:hover {
    background-color: #f3f4f6;
    color: #111827;
    border-color: #9ca3af;
}

/* Form styling for partner page */
#partnerForm .form-control,
#partnerForm .form-select {
    border: 1px solid #d1d5db;
    border-radius: 6px;
}

#partnerForm .form-control:focus,
#partnerForm .form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#partnerForm .form-label {
    color: #374151;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

/* Partner Card V2 - simple black border design */
.partner-card-wrapper {
    position: relative;
}

.partner-card-v2 {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #1f2937;
    box-shadow: none;
}

.partner-card-v2 .card-title {
    color: #111827;
    font-weight: 600;
}

.check-icon-black {
    color: #111827 !important;
    font-weight: 700;
}

.stat-value-black {
    color: #111827 !important;
    font-size: 2.5rem;
    font-weight: 700;
}

.step-number-simple {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    min-width: 24px;
}

/* Investment icon circles */
.invest-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.invest-icon-circle.bg-blue {
    background-color: #dbeafe;
}

.invest-icon-circle.bg-yellow {
    background-color: #fef3c7;
}

.invest-icon-circle.bg-lightblue {
    background-color: #e0f2fe;
}

/* Press & Media Section */
.press-media-section .press-card {
    background-color: #f9fafb;
}

.press-icon-container {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.press-icon-container i {
    font-size: 2.5rem;
    color: #3b82f6;
}

.press-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.press-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dbeafe;
    border-radius: 0.5rem;
}

.press-card-icon i {
    font-size: 1.25rem;
    color: #3b82f6;
}

.press-card-icon.secondary {
    background-color: #fef3c7;
}

.press-card-icon.secondary i {
    color: #f59e0b;
}

.press-card-content {
    flex: 1;
}

.press-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
}

.press-source {
    color: #6b7280;
    font-weight: 500;
}

.press-separator {
    color: #9ca3af;
}

.press-date {
    color: #9ca3af;
}

.press-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.375rem;
    line-height: 1.4;
}

.press-card-desc {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.press-card-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #3b82f6;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.press-card-link:hover {
    color: #2563eb;
}

.press-card-link i {
    font-size: 0.75rem;
}

/* Sustainability Section */
.sustainability-section {
    background-color: #f9fafb;
}

/* Sustainability Leaf Icon */
.sustainability-leaf-icon {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.sustainability-leaf-icon i {
    font-size: 3rem;
    color: #f59e0b;
}

.sustainability-stat-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    border-left: 4px solid #e5e7eb;
}

.sustainability-stat-card.border-yellow {
    border-left-color: #f59e0b;
}

.sustainability-stat-card.border-blue {
    border-left-color: #3b82f6;
}

.sustainability-stat-card.border-purple {
    border-left-color: #a855f7;
}

.sustainability-stat-card.border-green {
    border-left-color: #22c55e;
}

.sustainability-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.sustainability-stat-label {
    font-size: 0.875rem;
    color: #374151;
    font-weight: 500;
    margin: 0;
}

.sustainability-info-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    height: 100%;
}

.sustainability-info-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.sustainability-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sustainability-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.5;
}

.sustainability-list li:last-child {
    margin-bottom: 0;
}

.sustainability-list li i {
    color: #f59e0b;
    font-size: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.sustainability-list li .leaf-icon {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.sustainability-list.blue li i {
    color: #3b82f6;
}

/* Forensics Services Cards */
.forensics-services-section .forensics-card {
    background-color: #f9fafb;
}

.forensics-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.25rem;
    height: 100%;
}

.forensics-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.forensics-icon-box.blue {
    background-color: #dbeafe;
}

.forensics-icon-box.blue i {
    color: #3b82f6;
    font-size: 1.25rem;
}

.forensics-icon-box.yellow {
    background-color: #fef3c7;
}

.forensics-icon-box.yellow i {
    color: #f59e0b;
    font-size: 1.25rem;
}

.forensics-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.forensics-card-desc {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.forensics-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.forensics-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.forensics-list li:last-child {
    margin-bottom: 0;
}

.forensics-list li i {
    font-size: 1rem;
    flex-shrink: 0;
}

.forensics-list li i.blue {
    color: #3b82f6;
}

.forensics-list li i.yellow {
    color: #f59e0b;
}

/* Investigation Process Cards */
.process-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
}

.process-number {
    font-size: 35px;
    font-weight: bold;
    display: block;
    margin-bottom: 0.75rem;
    color: #bfdbfe;
}

.process-title {
    font-size: 1rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.process-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Forensics CTA Card */
.forensics-cta-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.75rem;
    overflow: hidden;
}

.forensics-cta-content {
    padding: 3rem;
    text-align: center;
}

.forensics-cta-icon {
    color: #3b82f6;
    margin: 0 auto 1.5rem;
    display: block;
}

.forensics-cta-content h2 {
    color: #1f2937;
    font-weight: 700;
}

.forensics-cta-desc {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 640px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section .pricing-card {
    background-color: #f9fafb;
}

.pricing-section-icon {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.pricing-section-icon.blue {
    background-color: #dbeafe;
}

.pricing-section-icon.blue i {
    color: #3b82f6;
    font-size: 1.75rem;
}

.pricing-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    height: 100%;
    position: relative;
    text-align: center;
}

.pricing-card.popular {
    border: 2px solid #3b82f6;
    padding-top: 2.5rem;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3b82f6;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    white-space: nowrap;
}

.pricing-card-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-plan-name {
    font-size: 0.875rem;
    color: #6b7280;
    display: block;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pricing-period {
    font-size: 0.875rem;
    color: #9ca3af;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 0.75rem;
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

.pricing-features li i {
    color: #3b82f6;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Advanced Mining Data Section */
.mining-data-section {
    background-color: #f8fafc;
}

.mining-data-icon {
    width: 64px;
    height: 64px;
    background-color: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mining-stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
}

.mining-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.mining-stat-value.blue {
    color: #3b82f6;
}

.mining-stat-value.green {
    color: #10b981;
}

.mining-stat-value.orange {
    color: #f59e0b;
}

.mining-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.mining-stat-change {
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.mining-stat-change.positive {
    color: #10b981;
}

.mining-stat-change.negative {
    color: #ef4444;
}

.mining-stat-change.neutral {
    color: #6b7280;
}

.mining-dashboard-cta {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(245, 158, 11, 0.08));
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
}

.mining-dashboard-cta h3 {
    font-size: 1.5rem;
}

.mining-dashboard-cta .btn.glow-blue {
    background-color: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
}

.mining-dashboard-cta .btn.glow-blue:hover {
    background-color: #2563eb;
    border-color: #2563eb;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

