/* ============================================
   FIX.NG - Main Stylesheet
   A Movement for Change
   ============================================ */

/* ============================================
   CSS Variables & Base Styles
   ============================================ */
   
span.hero-badge {display:none !important ;}
   
:root {
    /* Colors */
    --green-primary: #008751;
    --green-light: #00A86B;
    --green-dark: #006640;
    --gold: #FFD700;
    --gold-dark: #E6C200;
    --bg-dark: #0A0F0D;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-primary: #FFFFFF;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    --border-light: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.15);
    
    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --container-max: 1280px;
    --section-padding: 8rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-glow: 0 0 60px -12px;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-green { color: var(--green-primary); }
.text-gold { color: var(--gold); }
.text-white { color: var(--text-primary); }
.font-semibold { font-weight: 600; }

.text-gradient {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--green-primary) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
}

.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .desktop-only {
        display: inline-flex;
    }
}

/* ============================================
   Button Styles
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn i {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 10px 40px rgba(0, 135, 81, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--green-primary);
    color: var(--green-primary);
}

.btn-outline:hover {
    background: var(--green-primary);
    color: white;
}

.btn-glass {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-white {
    background: white;
    color: var(--green-primary);
}

.btn-white:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

.btn-large i {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-medium);
}

.btn-large:hover i {
    transform: translateX(4px);
}

/* Inactive Button State */
.btn-inactive {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

.btn-inactive::after {
    content: 'Coming Soon';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity var(--transition-medium);
    white-space: nowrap;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.btn-inactive:hover::after {
    opacity: 1;
}

.btn-inactive:hover > * {
    opacity: 0.2;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Logo Image Styles */
.nav-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .nav-logo-img {
        height: 55px;
    }
    .footer-logo-img {
        height: 60px;
    }
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active {
    color: var(--green-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn i {
    width: 24px;
    height: 24px;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    margin: 1rem 1.5rem;
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid var(--border-light);
    transition: color var(--transition-fast);
}

.mobile-link:last-child {
    border-bottom: none;
}

.mobile-link:hover,
.mobile-link.active {
    color: var(--text-primary);
}

.mobile-link.active {
    color: var(--green-primary);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 135, 81, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(0, 135, 81, 0.2) 0%, transparent 50%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='rgba(0,135,81,0.1)' stroke-width='1'/%3E%3C/svg%3E");
}

.map-decoration {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
    opacity: 0.1;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 500' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M200 50 C250 80, 320 100, 350 150 C380 200, 370 280, 340 340 C310 400, 250 450, 200 470 C150 450, 90 400, 60 340 C30 280, 20 200, 50 150 C80 100, 150 80, 200 50' fill='none' stroke='%23008751' stroke-width='2'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 8rem 1.5rem 5rem;
    width: 100%;
}

.hero-text {
    max-width: 56rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 42rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 5rem;
}

@media (min-width: 768px) {
    .stats-bar {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.stat-card {
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: background var(--transition-medium);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 2.5rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-line {
    width: 1px;
    height: 2rem;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* Animations */
.animate-slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* ============================================
   TOOLS SECTION
   ============================================ */
.tools-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 135, 81, 0.05), transparent);
}

.tools-app-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 24px;
    padding: 0;
    min-height: 500px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-screen {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tool-screen.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tools Home Screen */
.tools-categories {
    padding: 2rem 1.5rem 1rem;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    border: none;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    touch-action: manipulation;
}

.category-btn:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

.category-btn:active {
    transform: scale(0.98);
    background: rgba(255,255,255,0.12);
}

.category-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon svg { width: 24px; height: 24px; stroke: #fff; }
.category-icon.documents { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
.category-icon.utilities { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }

.category-info h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.15rem; }
.category-info p { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin: 0; }
.category-arrow { margin-left: auto; color: rgba(255,255,255,0.4); }

.tools-secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    background: rgba(17, 153, 142, 0.2);
    border: 1px solid rgba(17, 153, 142, 0.4);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    color: #38ef7d;
    margin: 1rem 1.5rem 2rem;
}

/* Screen Header */
.screen-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.back-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #fff;
}

.back-btn:hover { background: rgba(255,255,255,0.2); }
.back-btn svg { stroke: #fff; }
.screen-title { font-size: 1.1rem; font-weight: 600; color: #fff; }

/* Tool List */
.tool-list { padding: 1rem; }

.tool-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.9rem 1rem;
    margin-bottom: 0.5rem;
    border: none;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tool-btn:hover { background: rgba(255,255,255,0.1); transform: translateX(4px); }
.tool-btn:active { transform: scale(0.98); background: rgba(255,255,255,0.1); }

.tool-btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--tool-color, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tool-btn-icon svg { width: 18px; height: 18px; stroke: #fff; }

/* Feature Content */
.feature-content { padding: 1rem; }

.tool-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    color: #333;
}

/* Tool Input Elements */
.tool-input, .tool-textarea, .tool-select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    margin-bottom: 0.75rem;
    -webkit-appearance: none;
}

.tool-textarea { min-height: 120px; resize: vertical; }
.tool-input:focus, .tool-textarea:focus { outline: none; border-color: #667eea; }

.tool-btn-action {
    width: 100%;
    padding: 0.9rem 1.25rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.tool-btn-action:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.tool-btn-action:active { transform: scale(0.98); }
.tool-btn-action:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.tool-btn-action.primary { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #fff; }
.tool-btn-action.success { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); color: #fff; }
.tool-btn-action.secondary { background: #f0f0f0; color: #333; }

/* Upload Zone */
.tool-upload-zone {
    border: 2px dashed #ddd;
    border-radius: 16px;
    padding: 2rem 1rem;
    text-align: center;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.tool-upload-zone:hover { border-color: #667eea; background: rgba(102, 126, 234, 0.05); }
.tool-upload-zone svg { width: 48px; height: 48px; stroke: #999; margin-bottom: 0.75rem; }
.tool-upload-zone p { color: #666; font-size: 0.9rem; margin: 0; }
.tool-upload-zone .file-name { color: #667eea; font-weight: 600; margin-top: 0.5rem; }
.tool-upload-zone.has-file { border-color: #667eea; background: rgba(102, 126, 234, 0.05); border-style: solid; }

/* Stats Grid */
.stats-grid-tool {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.stat-item-tool {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}

.stat-item-tool .value { font-size: 1.5rem; font-weight: 700; color: #667eea; }
.stat-item-tool .label { font-size: 0.75rem; color: #666; margin-top: 0.25rem; }

/* Output Box */
.output-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    word-break: break-all;
    font-family: 'Courier New', monospace;
}

/* Result Display */
.tool-result { text-align: center; padding: 1.5rem 0; }
.tool-result h3 { margin: 1rem 0 0.5rem; font-size: 1.1rem; }
.tool-result p { color: #666; font-size: 0.9rem; }

.success-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.success-icon svg { width: 30px; height: 30px; stroke: #fff; }

/* Progress */
.tool-progress {
    background: #e0e0e0;
    border-radius: 10px;
    height: 8px;
    margin: 1rem 0;
    overflow: hidden;
}

.tool-progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.progress-text { text-align: center; font-size: 0.85rem; color: #666; }

/* Spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   Sectors Section
   ============================================ */
.sectors {
    position: relative;
    padding: var(--section-padding) 0;
}

.section-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.map-dots {
    background-image: radial-gradient(circle, rgba(0, 135, 81, 0.4) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--green-primary);
    margin-bottom: 1.5rem;
}

.section-badge.text-gold {
    color: var(--gold);
}

.section-badge i {
    width: 16px;
    height: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 42rem;
    margin: 0 auto;
}

/* Sectors Grid */
.sectors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .sectors-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sector Card */
.sector-card {
    position: relative;
    border-radius: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all var(--transition-slow);
    overflow: hidden;
}

.sector-card:hover {
    transform: scale(1.02) translateY(-4px);
}

.sector-card-content {
    position: relative;
    z-index: 10;
}

.sector-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all var(--transition-medium);
}

.sector-icon i {
    width: 28px;
    height: 28px;
}

.sector-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color var(--transition-medium);
}

.sector-card:hover .sector-name {
    color: white;
}

.sector-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.sector-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.sector-stat-value {
    font-size: 1.5rem;
    font-weight: 900;
}

.sector-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sector-arrow {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    transition: all var(--transition-medium);
}

.sector-arrow i {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
    transition: transform var(--transition-medium);
}

.sector-card:hover .sector-arrow {
    background: rgba(255, 255, 255, 0.1);
}

.sector-card:hover .sector-arrow i {
    transform: translateX(4px);
}

/* Pulse Ring Animation */
.sector-pulse {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    pointer-events: none;
    opacity: 0;
}

.sector-card:hover .sector-pulse {
    opacity: 1;
    animation: pulseRing 1.5s ease-out infinite;
}

@keyframes pulseRing {
    0% { transform: scale(0.95); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: scale(1.05); opacity: 0; }
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.section-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 135, 81, 0.1), transparent, transparent);
    pointer-events: none;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.process-line {
    display: none;
}

@media (min-width: 768px) {
    .process-line {
        display: block;
        position: absolute;
        top: 3rem;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(0, 135, 81, 0.5), transparent);
    }
}

.process-step {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: transform var(--transition-medium);
}

.process-step:hover .step-icon {
    transform: scale(1.1);
}

.step-icon i {
    width: 32px;
    height: 32px;
    color: var(--green-primary);
}

.step-number {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--text-secondary);
    max-width: 250px;
    margin: 0 auto;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: var(--section-padding) 0;
    text-align: center;
}

.testimonial-slider {
    position: relative;
    height: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(2rem);
    transition: all 0.7s ease;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.testimonial-dot.active {
    width: 2rem;
    background: var(--green-primary);
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1'/%3E%3C/svg%3E");
    opacity: 0.1;
}

.cta-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ring-1 {
    width: 24rem;
    height: 24rem;
    animation: pulseRingCTA 4s ease-out infinite;
}

.ring-2 {
    width: 32rem;
    height: 32rem;
    animation: pulseRingCTA 4s ease-out infinite 1s;
}

@keyframes pulseRingCTA {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-footer {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 5rem 0;
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr repeat(3, 1fr);
    }
}

.footer-brand {
    max-width: 20rem;
}

.footer-description {
    color: var(--text-secondary);
    margin: 1.5rem 0;
    line-height: 1.8;
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    color: inherit;
    transition: background var(--transition-medium);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.footer-links h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--text-primary);
}

/* ============================================
   Smooth Scrolling & Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
:focus-visible {
    outline: 2px solid var(--green-primary);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: var(--green-primary);
    color: white;
}
