/**
 * Midnight Emerald Theme - Complete Design Overhaul
 * 
 * Premium dark theme with deep midnight tones and emerald green highlights.
 * Comprehensive styling for all UI elements.
 */

/* ============================================================================
   GLOBAL STYLES & RESET
   ============================================================================ */

* {
    box-sizing: border-box;
}

body {
    background:
        radial-gradient(circle at top, rgba(34, 197, 94, 0.15), transparent 55%),
        radial-gradient(circle at bottom, rgba(56, 189, 248, 0.12), transparent 60%),
        #020617;
    color: #e5e7eb;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

.theme-main {
    background: transparent;
    color: #e5e7eb;
}

.theme-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ============================================================================
   DOMAIN HEADER/NAV/FOOTER (Green – same structure as Blue, uses theme vars)
   Layout uses domain-top-header, domain-main-nav, domain-footer from
   public-theme.css; colours come from config/colors.json (bg_navbar,
   bg_footer, primary). Overrides below match Green’s dark style.
   ============================================================================ */
.domain-top-header {
    border-bottom-color: rgba(148, 163, 184, 0.2);
}
.domain-main-nav {
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}
.domain-nav-link::after,
.domain-nav-link.active::after,
.domain-top-link.active::after,
.domain-dropdown-trigger.active::after {
    background: var(--theme-color-primary, #22c55e);
}
.domain-cart-icon.active {
    color: var(--theme-color-primary, #22c55e);
}
.domain-nav-dropdown-item i {
    color: var(--theme-color-primary, #22c55e);
}

.navbar-toggler {
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.9);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(34, 197, 94, 0.25);
}

/* ============================================================================
   HERO SECTIONS
   ============================================================================ */

.theme-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.theme-hero::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 10% 20%, rgba(34, 197, 94, 0.25), transparent 60%),
        radial-gradient(circle at 80% 10%, rgba(56, 189, 248, 0.2), transparent 60%),
        radial-gradient(circle at 50% 80%, rgba(15, 23, 42, 0.95), #020617);
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.theme-hero-content {
    position: relative;
    z-index: 1;
}

.theme-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #f9fafb;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.theme-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(209, 213, 219, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
}

.theme-hero-page {
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.theme-hero-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.theme-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ============================================================================
   SECTIONS
   ============================================================================ */

.theme-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: transparent;
    color: #e5e7eb;
}

.theme-section-alt {
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), #020617);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.theme-section-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f9fafb;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.theme-section-sm {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.theme-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.theme-section-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.theme-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f9fafb;
    margin-bottom: 1rem;
}

.theme-section-subtitle {
    font-size: 1.125rem;
    color: rgba(209, 213, 219, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================================================
   CARDS
   ============================================================================ */

.theme-card {
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.95) 100%),
        radial-gradient(circle at top left, rgba(34, 197, 94, 0.08), transparent 60%);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 20px;
    color: #e5e7eb;
    padding: 0;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(34, 197, 94, 0.05) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.theme-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.theme-card:hover::before {
    opacity: 1;
}

.theme-card-body {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Card with image/visual element */
.theme-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

/* Card header section */
.theme-card-header {
    padding: 1.75rem 2rem;
    border-bottom: 1px solid rgba(31, 41, 55, 0.6);
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.05), transparent);
}

/* Card footer section */
.theme-card-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(31, 41, 55, 0.6);
    background: rgba(15, 23, 42, 0.5);
    border-radius: 0 0 20px 20px;
}

.theme-card-hover {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-card-hover:hover {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 
        0 12px 50px rgba(34, 197, 94, 0.25),
        0 0 0 1px rgba(34, 197, 94, 0.2) inset,
        0 0 60px rgba(34, 197, 94, 0.1);
    transform: translateY(-6px) scale(1.01);
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 1) 0%, rgba(30, 41, 59, 0.98) 100%),
        radial-gradient(circle at top left, rgba(34, 197, 94, 0.15), transparent 60%);
}

.theme-feature-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.theme-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    box-shadow: 
        0 4px 15px rgba(34, 197, 94, 0.2),
        0 0 0 1px rgba(34, 197, 94, 0.1) inset;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-feature-icon::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.theme-card-hover:hover .theme-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 8px 25px rgba(34, 197, 94, 0.4),
        0 0 0 1px rgba(34, 197, 94, 0.2) inset;
}

.theme-card-hover:hover .theme-feature-icon::before {
    opacity: 1;
}

.theme-feature-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: #f9fafb;
    margin-bottom: 0.875rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.theme-feature-text {
    color: rgba(209, 213, 219, 0.85);
    line-height: 1.75;
    font-size: 0.9375rem;
    flex: 1;
}

/* ============================================================================
   SERVICE / PRICING CARDS
   ============================================================================ */

.theme-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.theme-service-header {
    padding: 2rem 2rem 1.75rem;
    border-bottom: 1px solid rgba(31, 41, 55, 0.6);
    position: relative;
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.05), transparent);
}

.theme-service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    font-size: 1.625rem;
    margin-bottom: 1.25rem;
    box-shadow: 
        0 4px 15px rgba(34, 197, 94, 0.2),
        0 0 0 1px rgba(34, 197, 94, 0.1) inset;
    transition: all 0.3s ease;
}

.theme-card-hover:hover .theme-service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 8px 25px rgba(34, 197, 94, 0.4),
        0 0 0 1px rgba(34, 197, 94, 0.2) inset;
}

.theme-service-name {
    font-size: 1.375rem;
    font-weight: 800;
    color: #f9fafb;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.theme-service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(31, 41, 55, 0.5);
}

.theme-service-price-amount {
    font-size: 2.25rem;
    font-weight: 900;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.theme-service-price-period {
    font-size: 0.9375rem;
    color: rgba(156, 163, 175, 0.85);
    font-weight: 500;
}

.theme-service-body {
    padding: 1.75rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.theme-service-description {
    font-size: 0.9375rem;
    color: rgba(209, 213, 219, 0.85);
    line-height: 1.75;
    flex: 1;
}

.theme-pricing-card {
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
}

.theme-pricing-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.theme-card-hover:hover.theme-pricing-card::after {
    opacity: 1;
}

.theme-pricing-name {
    font-size: 1.625rem;
    font-weight: 800;
    color: #f9fafb;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.theme-pricing-description {
    color: rgba(209, 213, 219, 0.75);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.theme-pricing-price {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(31, 41, 55, 0.5);
    border-bottom: 1px solid rgba(31, 41, 55, 0.5);
}

.theme-pricing-amount {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
    line-height: 1;
}

.theme-pricing-period {
    font-size: 1.125rem;
    color: rgba(156, 163, 175, 0.85);
    margin-left: 0.5rem;
    font-weight: 500;
}

/* Additional card enhancements */
.theme-card-hover:hover .theme-pricing-amount,
.theme-card-hover:hover .theme-service-price-amount {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Card with accent border */
.theme-card-accent {
    border-left: 4px solid #22c55e;
}

/* Card with glow effect */
.theme-card-glow {
    position: relative;
}

.theme-card-glow::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.theme-card-glow:hover::after {
    opacity: 1;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */

.theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1.5;
}

.theme-btn-primary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #22c55e 100%);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
    color: #020617;
}

.theme-btn-primary:hover {
    box-shadow: 0 6px 30px rgba(34, 197, 94, 0.6);
    transform: translateY(-2px);
    color: #020617;
}

.theme-btn-secondary {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: #e5e7eb;
}

.theme-btn-secondary:hover {
    background: rgba(15, 23, 42, 1);
    border-color: #22c55e;
    color: #22c55e;
    transform: translateY(-2px);
}

.theme-btn-ghost {
    background: transparent;
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: rgba(209, 213, 219, 0.9);
}

.theme-btn-ghost:hover {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(148, 163, 184, 0.7);
    color: #f9fafb;
}

.theme-btn-outline {
    background: transparent;
    border: 2px solid rgba(34, 197, 94, 0.5);
    color: #22c55e;
}

.theme-btn-outline:hover {
    background: rgba(34, 197, 94, 0.15);
    border-color: #22c55e;
    color: #22c55e;
}

.theme-btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.theme-btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.theme-btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.w-full {
    width: 100%;
}

/* ============================================================================
   FORMS
   ============================================================================ */

.theme-form-group {
    margin-bottom: 1.5rem;
}

.theme-form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(209, 213, 219, 0.95);
    font-size: 0.9375rem;
}

.theme-form-input,
.theme-form-select,
.theme-form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(55, 65, 81, 0.8);
    border-radius: 10px;
    color: #e5e7eb;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.theme-form-input::placeholder,
.theme-form-textarea::placeholder {
    color: rgba(148, 163, 184, 0.7);
}

.theme-form-input:focus,
.theme-form-select:focus,
.theme-form-textarea:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
    background: rgba(15, 23, 42, 1);
    color: #f9fafb;
}

.theme-form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================================================
   ALERTS
   ============================================================================ */

.theme-alert {
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(31, 41, 55, 0.9);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: #e5e7eb;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.theme-alert-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.theme-alert-content {
    flex: 1;
}

.theme-alert-success {
    border-left: 4px solid #22c55e;
    background: rgba(15, 23, 42, 0.98);
}

.theme-alert-success .theme-alert-icon {
    color: #22c55e;
}

.theme-alert-danger {
    border-left: 4px solid #ef4444;
    background: rgba(15, 23, 42, 0.98);
}

.theme-alert-danger .theme-alert-icon {
    color: #ef4444;
}

.theme-alert-warning {
    border-left: 4px solid #f59e0b;
    background: rgba(15, 23, 42, 0.98);
}

.theme-alert-warning .theme-alert-icon {
    color: #f59e0b;
}

.theme-alert-info {
    border-left: 4px solid #38bdf8;
    background: rgba(15, 23, 42, 0.98);
}

.theme-alert-info .theme-alert-icon {
    color: #38bdf8;
}

/* ============================================================================
   TABLES
   ============================================================================ */

.theme-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(15, 23, 42, 0.95);
    border-radius: 12px;
    overflow: hidden;
}

.theme-table thead th {
    background: rgba(15, 23, 42, 1);
    color: rgba(229, 231, 235, 0.95);
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid rgba(55, 65, 81, 0.9);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.theme-table tbody tr {
    border-bottom: 1px solid rgba(31, 41, 55, 0.8);
    transition: background 0.2s;
}

.theme-table tbody tr:nth-child(even) {
    background: rgba(15, 23, 42, 0.8);
}

.theme-table tbody tr:hover {
    background: rgba(34, 197, 94, 0.1);
}

.theme-table tbody td {
    padding: 1rem;
    color: rgba(229, 231, 235, 0.9);
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.public-footer,
.theme-footer {
    background: radial-gradient(circle at top, rgba(34, 197, 94, 0.15), transparent 60%),
                #020617;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    color: rgba(229, 231, 235, 0.9);
    padding: 4rem 0 2rem;
}

.public-footer-logo,
.theme-footer-logo {
    max-height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(1.1);
}

.public-footer-title,
.theme-footer-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.public-footer-description,
.theme-footer-description {
    color: rgba(156, 163, 175, 0.95);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.public-footer-heading,
.theme-footer-heading {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.public-footer-links,
.theme-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.public-footer-links li,
.theme-footer-links li {
    margin-bottom: 0.75rem;
}

.public-footer-links a,
.theme-footer-link {
    color: rgba(209, 213, 219, 0.9);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.public-footer-links a:hover,
.theme-footer-link:hover {
    color: #22c55e;
    padding-left: 0.25rem;
}

.public-footer-currency-menu {
    background: rgba(15, 23, 42, 0.98) !important;
    border: 1px solid rgba(148, 163, 184, 0.2) !important;
    border-radius: 12px !important;
    padding: 0.5rem !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6) !important;
}

.public-footer-currency-menu .dropdown-item {
    color: rgba(209, 213, 219, 0.9) !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
    transition: all 0.2s ease !important;
}

.public-footer-currency-menu .dropdown-item:hover {
    background: rgba(34, 197, 94, 0.15) !important;
    color: #22c55e !important;
}

.public-footer-currency-menu .dropdown-item.active {
    background: rgba(34, 197, 94, 0.25) !important;
    color: #bbf7d0 !important;
}

/* ============================================================================
   BADGES & LABELS
   ============================================================================ */

.theme-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
}

.theme-badge-primary {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */

.text-gradient {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.text-muted {
    color: rgba(148, 163, 184, 0.9) !important;
}

.text-secondary {
    color: rgba(209, 213, 219, 0.9) !important;
}

.text-primary {
    color: #22c55e !important;
}

.hover-primary:hover {
    color: #22c55e !important;
}

/* ============================================================================
   STATS & TRUST ITEMS
   ============================================================================ */

.theme-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.theme-stat-item {
    text-align: center;
}

.theme-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.theme-stat-label {
    color: rgba(209, 213, 219, 0.85);
    font-size: 1rem;
    font-weight: 500;
}

.theme-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.theme-trust-item {
    text-align: center;
    padding: 1.5rem;
}

.theme-trust-icon {
    font-size: 2.5rem;
    color: #22c55e;
    margin-bottom: 0.75rem;
}

.theme-trust-text {
    color: rgba(209, 213, 219, 0.9);
    font-size: 0.9375rem;
}

.theme-hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.theme-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.theme-hero-trust-icon {
    font-size: 1.25rem;
}

.theme-hero-trust-text {
    color: rgba(209, 213, 219, 0.9);
    font-size: 0.9375rem;
}

/* ============================================================================
   CTA SECTION
   ============================================================================ */

.theme-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.1), transparent 70%),
                rgba(15, 23, 42, 0.95);
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.theme-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f9fafb;
    margin-bottom: 1rem;
}

.theme-cta-text {
    font-size: 1.125rem;
    color: rgba(209, 213, 219, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 0.6s ease-out;
}

.animate-fade-in-down {
    animation: fade-in-down 0.6s ease-out;
}

.animation-delay-100 {
    animation-delay: 0.1s;
}

.animation-delay-200 {
    animation-delay: 0.2s;
}

.animation-delay-300 {
    animation-delay: 0.3s;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 768px) {
    .theme-hero-title {
        font-size: 2.5rem;
    }
    
    .theme-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .theme-section-title {
        font-size: 2rem;
    }
    
    .public-navbar .navbar-brand {
        font-size: 1.25rem;
    }
    
    .public-navbar .navbar-brand img {
        max-height: 32px;
    }
    
    .theme-hero-cta {
        flex-direction: column;
    }
    
    .theme-hero-cta .theme-btn {
        width: 100%;
    }
    
    .theme-stats-grid,
    .theme-trust-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .theme-hero {
        padding: 4rem 0;
    }
    
    .theme-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .theme-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .theme-card-body {
        padding: 1.25rem;
    }
}

/* ============================================================================
   BOOTSTRAP OVERRIDES
   ============================================================================ */

.dropdown-menu {
    background: rgba(15, 23, 42, 0.98) !important;
    border: 1px solid rgba(148, 163, 184, 0.2) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6) !important;
}

.dropdown-item {
    color: rgba(209, 213, 219, 0.9) !important;
}

.dropdown-item:hover {
    background: rgba(34, 197, 94, 0.15) !important;
    color: #22c55e !important;
}

.form-control,
.form-select {
    background: rgba(15, 23, 42, 0.95) !important;
    border: 1px solid rgba(55, 65, 81, 0.8) !important;
    color: #e5e7eb !important;
}

.form-control:focus,
.form-select:focus {
    background: rgba(15, 23, 42, 1) !important;
    border-color: #22c55e !important;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2) !important;
    color: #f9fafb !important;
}

.form-control::placeholder {
    color: rgba(148, 163, 184, 0.7) !important;
}

.btn-outline-light {
    border-color: rgba(148, 163, 184, 0.4) !important;
    color: rgba(209, 213, 219, 0.9) !important;
}

.btn-outline-light:hover {
    background: rgba(34, 197, 94, 0.15) !important;
    border-color: #22c55e !important;
    color: #22c55e !important;
}
