/* DataNXT Website - Main CSS 
   This file handles:
   - Colors, fonts, and visual styling
   - Brand identity and theming
   - Effects, shadows, and animations
   - Global component styling and interactions
   
   Layout and sizing adjustments for different screens are in responsive.css
   Page-specific styles are in their respective page directories
*/

/* Brand Color Palette - Trust & Growth:
   #0E3A74 – Deep Atlantic Blue (Primary brand / hero background)
   #1768D4 – Royal Wave Blue (Secondary brand, gradients & hovers)
   #2DA66E – Verdant Rise Green (Growth accent, positive data, secondary highlights)
   #FF9F1C – Gold Signal (Primary CTA highlight)
   #F5F7FA – Mist Grey 00 (Neutral surfaces & backgrounds)
   #344054 – Slate Grey 90 (Body text & neutral outlines)
   #C62828 – Alert Red (warnings, errors - retained)
*/

/* CSS Variables for Color Scheme */
:root {
    --deep-atlantic-blue: #0E3A74;
    --royal-wave-blue: #1768D4;
    --verdant-rise-green: #2DA66E;
    --gold-signal: #FF9F1C;
    --mist-grey: #F5F7FA;
    --slate-grey: #344054;
    --alert-red: #C62828;
    --white: #FFFFFF;
    --text-dark: var(--slate-grey);
    --text-light: #546E7A;
    --text-muted: #78909C;
    --gradient-primary: linear-gradient(135deg, var(--deep-atlantic-blue) 0%, var(--royal-wave-blue) 100%);
    --gradient-accent: linear-gradient(135deg, var(--royal-wave-blue) 0%, var(--deep-atlantic-blue) 100%);
    --gradient-green: linear-gradient(135deg, var(--verdant-rise-green) 0%, #239A5C 100%);
    --shadow-light: 0 2px 8px rgba(14, 58, 116, 0.08);
    --shadow-medium: 0 4px 16px rgba(14, 58, 116, 0.12);
    --shadow-heavy: 0 8px 32px rgba(14, 58, 116, 0.16);
    --shadow-green: 0 4px 16px rgba(45, 166, 110, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* === UNIQUE.AI-INSPIRED DATANXT SYSTEM === */
    --primaryCTA: var(--verdant-rise-green);        /* DataNXT green for CTAs */
    --primaryDark: #239A5C;                         /* Darker green for hovers */
    --accentLight: var(--royal-wave-blue);          /* DataNXT blue authority */
    --accentDark: var(--deep-atlantic-blue);        /* DataNXT navy premium */
    --secondaryLight: #6C7B7F;                      /* DataNXT muted text */
    --secondaryDark: var(--slate-grey);             /* DataNXT text dark */
    --backgroundLight: var(--mist-grey);            /* DataNXT light backgrounds */
    --outlineDark: #E1E5E9;                         /* DataNXT borders */
    
    /* 8px Grid Spacing System - Research Validated */
    --space-1: 8px;            /* Micro spacing */
    --space-2: 16px;           /* Small spacing - element gaps */
    --space-3: 24px;           /* Medium spacing - card padding */
    --space-4: 32px;           /* Large spacing - section headers */
    --space-5: 40px;           /* XL spacing - rare use */
    --space-6: 48px;           /* Section spacing - maximum */
    --space-8: 64px;           /* Hero sections only */
    
    /* Legacy support during transition */
    --spacing-xs: var(--space-1);
    --spacing-sm: var(--space-2);
    --spacing-md: var(--space-2);
    --spacing-lg: var(--space-3);
    --spacing-xl: var(--space-4);
    --spacing-2xl: var(--space-6);
}

/* Reset and Base Styles */
/* Unique.ai Global Styling System */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--secondaryDark);
    font-weight: 400;
    font-size: 18px;              /* Unique.ai desktop body text */
    line-height: 22px;
    word-break: break-word;
}

@media (max-width: 1512px) {
    * {
        font-size: 16px;          /* Unique.ai medium screens */
        line-height: 19px;
    }
}

@media (max-width: 744px) {
    * {
        font-size: 14px;          /* Unique.ai mobile screens */
        line-height: 18px;
    }
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    font-weight: 400;
    overflow-x: hidden;
}

/* Typography - IMPROVED for better readability */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Lora", Georgia, serif;    /* Unique.ai serif headings */
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;                    /* Unique.ai consistent spacing */
    color: var(--deep-atlantic-blue);
    letter-spacing: -0.02em;
}

h1, .h1 {
    font-size: 100px;              /* Unique.ai MASSIVE desktop scale */
    font-weight: 600;
    line-height: 110px;
    margin-bottom: 24px;
    color: var(--deep-atlantic-blue);
}

@media (max-width: 1512px) {
    h1, .h1 {
        font-size: 64px;           /* Unique.ai exact scaling */
        line-height: 72px;
    }
}

@media (max-width: 744px) {
    h1, .h1 {
        font-size: 48px;           /* Unique.ai mobile scaling */
        line-height: 56px;
    }
}

h2, .h2 {
    font-size: 64px;               /* Unique.ai MASSIVE section headers */
    font-weight: 700;
    line-height: 72px;
    margin-bottom: 24px;
}

@media (max-width: 1512px) {
    h2, .h2 {
        font-size: 48px;           /* Unique.ai exact scaling */
        line-height: 56px;
    }
}

@media (max-width: 744px) {
    h2, .h2 {
        font-size: 32px;           /* Unique.ai mobile scaling */
        line-height: 41px;
    }
}

h3, .h3 {
    font-size: 48px;               /* Unique.ai large subsections */
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 24px;
}

@media (max-width: 1512px) {
    h3, .h3 {
        font-size: 32px;           /* Unique.ai scaled subsections */
        line-height: 41px;
    }
}

@media (max-width: 744px) {
    h3, .h3 {
        font-size: 24px;           /* Unique.ai mobile subsections */
        line-height: 32px;
    }
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    line-height: 1.65;
    color: var(--text-light);
    font-size: 1rem;
}

a {
    color: var(--royal-wave-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--royal-wave-blue);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons - ENHANCED WITH MODERN STYLING */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;                /* Unique.ai smaller radius */
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    min-height: 44px;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--deep-atlantic-blue);
    border: 2px solid var(--deep-atlantic-blue);
    box-shadow: var(--shadow-light);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--deep-atlantic-blue);
    color: var(--white);
    border-color: var(--deep-atlantic-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-outline {
    background: transparent;
    color: var(--royal-wave-blue);
    border: 2px solid var(--royal-wave-blue);
}

.btn-outline:hover {
    background: var(--royal-wave-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn.secondary:hover {
    border: 1px solid #fff;
    background: rgba(20, 54, 74, 0.4);  /* DataNXT navy with transparency */
    backdrop-filter: blur(3px);         /* Unique.ai glassmorphism */
    color: var(--white);
}

.btn-green {
    background: var(--verdant-rise-green);      /* DataNXT signature green */
    color: var(--white);
    border: 2px solid var(--verdant-rise-green);
    font-weight: 700;                           /* Unique.ai premium button weight */
    padding: 11px 16px;                         /* Unique.ai button padding */
    box-shadow: var(--shadow-green);
    transition: var(--transition);
}

.btn-green:hover {
    background: #239A5C;                        /* Darker DataNXT green */
    border-color: #239A5C;
    transform: translateY(-2px);                /* Unique.ai subtle lift */
    box-shadow: 0 12px 28px rgba(45, 166, 110, 0.4);
}

.btn-outline-green {
    background: transparent;
    color: var(--verdant-rise-green);
    border: 2px solid var(--verdant-rise-green);
}

.btn-demo {
    background: linear-gradient(135deg, var(--gold-signal) 0%, #FF8A00 100%);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(255, 159, 28, 0.3);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-demo:hover::before {
    left: 100%;
}

.btn-demo:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 159, 28, 0.4);
    color: var(--white);
    background: linear-gradient(135deg, #FF8A00 0%, var(--gold-signal) 100%);
    border-color: rgba(255, 159, 28, 0.2);
}

.btn-demo:active {
    transform: translateY(-1px);
}

.btn-outline-green:hover {
    background: var(--verdant-rise-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Navigation - ENHANCED WITH LOGO TEXT */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(14, 58, 116, 0.1);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition);
}

.nav-logo:hover {
    transform: translateY(-1px);
}

.logo-image {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-atlantic-blue);
    letter-spacing: -0.02em;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--royal-wave-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gold-signal);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--deep-atlantic-blue);
    color: var(--white);
    transform: translateY(-1px);
}

.nav-cta.active {
    background: var(--white);
    color: var(--deep-atlantic-blue);
    border: 2px solid var(--gold-signal);
    transform: translateY(-1px);
}

.nav-cta.active:hover {
    background: var(--mist-grey);
    color: var(--deep-atlantic-blue);
}

.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--text-dark);
}

/* Hero Section - Generic styling for all hero sections */
.hero {
    padding: var(--space-30) 0 var(--space-24);  /* 240px top, 192px bottom - Unique.ai ultra-luxury */
    background: var(--gradient-primary);          /* DataNXT signature blue gradient */
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 159, 28, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(45, 166, 110, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.05) 15%, 
        rgba(255, 255, 255, 0.15) 30%, 
        rgba(255, 255, 255, 0.35) 50%, 
        rgba(255, 255, 255, 0.65) 70%, 
        rgba(255, 255, 255, 0.85) 85%, 
        var(--white) 100%
    );
    backdrop-filter: blur(30px);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;             /* 64px - Unique.ai massive scale with DataNXT colors */
    font-weight: 700;
    margin-bottom: 2rem;         /* 32px - generous spacing */
    line-height: 1.05;           /* Ultra-tight luxury line height */
    letter-spacing: -0.02em;     /* Premium optical spacing */
    color: var(--white);
    background: none;
    -webkit-text-fill-color: initial;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Global Section Styling with Subtle Transitions */
section {
    padding: var(--space-6) 0;        /* 48px - Research maximum */
    position: relative;
}

/* Subtle gradient transition between sections */
section:not(.hero):not(.research-background):not(.newsletter):not(.cta):not(.footer)::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 1) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero + section {
    padding-top: var(--space-4);  /* 32px - much tighter flow */
}

/* Remove transition effect from first section after hero */
.hero + section::before {
    display: none;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;                    /* Proportional to new sizing */
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* SVG Icons */
svg {
    transition: var(--transition);
    fill: currentColor;
}

/* CTA Section with smooth transition */
.cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Smooth transition from previous section to CTA */
.cta::after {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(247, 250, 252, 0.7) 30%,
        rgba(59, 130, 246, 0.4) 70%,
        rgba(14, 58, 116, 0.9) 100%);
    z-index: 0;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(23, 104, 212, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .logo-image {
        height: 32px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0 2rem;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .logo-text {
        font-size: 1.125rem;
    }

    .logo-image {
        height: 28px;
    }

    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }

    .hero::after {
        height: 120px;
        backdrop-filter: blur(20px);
    }

    .hero + section {
        padding-top: var(--space-3);  /* 24px - mobile tight flow */
    }
}

/* Footer with smooth transition from last section */
.footer {
    background: var(--deep-atlantic-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
}

/* Ultra-subtle transition from last section to footer */
.footer::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(14, 58, 116, 0.15) 50%,
        rgba(14, 58, 116, 0.8) 100%);
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-section {
    text-align: left;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--white);
    font-size: 0.875rem;
}

.footer-copyright #year {
    color: var(--white);
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--royal-wave-blue);
    transform: translateY(-2px);
    color: var(--white);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Color Strategy Implementation Classes */

/* Blue (Primary) Classes */
.text-primary {
    color: var(--royal-wave-blue) !important;
}

.bg-primary {
    background: var(--gradient-accent) !important;
}

.border-primary {
    border-color: var(--royal-wave-blue) !important;
}

.accent-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 1;
}

.hover-primary:hover {
    box-shadow: var(--shadow-heavy);
    border-color: rgba(23, 104, 212, 0.2);
}

/* Green (Success) Classes */
.text-success {
    color: var(--verdant-rise-green) !important;
    font-weight: 600;
}

.bg-success {
    background: var(--gradient-green) !important;
}

.accent-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-green);
    opacity: 1;
}

.hover-success:hover {
    box-shadow: var(--shadow-green);
    border-color: rgba(45, 166, 110, 0.2);
}

.growth-number {
    background: var(--gradient-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Special Purpose Classes */
.success-highlight {
    color: var(--verdant-rise-green) !important;
    font-weight: 600;
}

.growth-accent {
    position: relative;
}

.growth-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-green);
    opacity: 1;
}

.metric-card {
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-green);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.metric-card:hover {
    box-shadow: var(--shadow-green);
    border-color: rgba(45, 166, 110, 0.2);
}

.achievement-badge {
    background: var(--gradient-green);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}