
 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Source+Serif+Pro:wght@400;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

 :root {
     --bg-primary: hsl(210, 20%, 10%);
     --bg-secondary: hsl(210, 30%, 6%);
     --bg-card: hsl(210, 20%, 10%);
     --text-primary: hsl(0, 0%, 96%);
     --text-secondary: hsl(0, 0%, 60%);
     --border-color: hsl(0, 0%, 17%);
     --accent-primary: hsl(210, 100%, 50%);
     --accent-secondary: hsl(160, 70%, 40%);
     --accent-tertiary: hsl(45, 90%, 55%);
 }

 [data-theme="light"] {
     --bg-primary: hsl(0, 0%, 98%);
     --bg-secondary: hsl(0, 0%, 95%);
     --bg-card: hsl(0, 0%, 100%);
     --text-primary: hsl(210, 30%, 15%);
     --text-secondary: hsl(0, 0%, 40%);
     --border-color: hsl(0, 0%, 85%);
 }

 body,
 html {
     color: var(--text-primary);
     background-color: var(--bg-primary);
     transition: background-color 0.3s ease, color 0.3s ease;
 }

 @media (prefers-reduced-motion: reduce) {

     *,
     *::before,
     *::after {
         animation-duration: 0.01ms !important;
         animation-iteration-count: 1 !important;
         transition-duration: 0.01ms !important;
     }
 }

 .glassmorphic {
     background: rgba(33, 37, 41, 0.7);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
 }

 [data-theme="light"] .glassmorphic {
     background: rgba(255, 255, 255, 0.8);
 }

 .glow-border {
     box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
 }

 .glow-border-hover:hover {
     box-shadow: 0 0 30px rgba(0, 123, 255, 0.5);
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

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

 .fade-in-up {
     animation: fadeInUp 0.8s ease-out forwards;
 }

 .particle-bg {
     background: linear-gradient(135deg,
             hsl(210, 30%, 15%) 0%,
             hsl(210, 20%, 10%) 100%);
     position: relative;
     overflow: hidden;
 }

 [data-theme="light"] .particle-bg {
     background: linear-gradient(135deg,
             hsl(210, 30%, 95%) 0%,
             hsl(210, 20%, 98%) 100%);
 }

 .particle-bg::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-image:
         radial-gradient(circle at 20% 50%,
             rgba(0, 123, 255, 0.1) 0%,
             transparent 50%),
         radial-gradient(circle at 80% 80%,
             rgba(16, 185, 129, 0.1) 0%,
             transparent 50%),
         radial-gradient(circle at 40% 20%,
             rgba(245, 158, 11, 0.05) 0%,
             transparent 50%);
     animation: particleFloat 20s ease-in-out infinite;
 }

 @keyframes particleFloat {

     0%,
     100% {
         transform: translate(0, 0);
     }

     50% {
         transform: translate(20px, 20px);
     }
 }

 .status-light {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     display: inline-block;
 }

 .status-online {
     background-color: hsl(145, 65%, 45%);
     box-shadow: 0 0 8px hsl(145, 65%, 45%);
 }

 .status-standby {
     background-color: hsl(35, 90%, 55%);
     box-shadow: 0 0 8px hsl(35, 90%, 55%);
 }

 /* Hero Slider Styles */
 .hero-slider {
     position: relative;
     width: 100%;
     height: 100vh;
     overflow: hidden;
 }

 .hero-slide {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     opacity: 0;
     transition: opacity 1s ease-in-out;
 }

 .hero-slide.active {
     opacity: 1;
 }

 .hero-slide img,
 .hero-slide video {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .hero-gradient {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg,
             rgba(0, 123, 255, 0.3) 0%,
             rgba(16, 185, 129, 0.2) 50%,
             rgba(245, 158, 11, 0.3) 100%);
     mix-blend-mode: overlay;
 }

 .slider-dots {
     position: absolute;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 12px;
     z-index: 20;
 }

 .slider-dot {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.5);
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .slider-dot.active {
     background: var(--accent-primary);
     transform: scale(1.2);
 }

 /* Theme Toggle */
 .theme-toggle {
     position: relative;
     width: 60px;
     height: 30px;
     background: var(--border-color);
     border-radius: 30px;
     cursor: pointer;
     transition: background 0.3s ease;
 }

 .theme-toggle-slider {
     position: absolute;
     top: 3px;
     left: 3px;
     width: 24px;
     height: 24px;
     background: var(--accent-primary);
     border-radius: 50%;
     transition: transform 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
 }

 .theme-toggle.active .theme-toggle-slider {
     transform: translateX(30px);
 }

 /* Product Cards */
 .product-card {
     background: var(--bg-card);
     border: 1px solid var(--border-color);
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     overflow: hidden;
 }

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

 .product-card:hover::before {
     left: 100%;
 }

 .product-card:hover {
     transform: translateY(-10px) scale(1.02);
     border-color: var(--accent-primary);
     box-shadow: 0 20px 40px rgba(0, 123, 255, 0.2);
 }

 /* Partner Cards */
 .partner-card {
     transition: all 0.3s ease;
 }

 .partner-card:hover {
     transform: translateY(-5px) scale(1.05);
     border-color: var(--accent-primary) !important;
     box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
 }

 /* Client Cards */
 .client-card {
     transition: all 0.3s ease;
 }

 .client-card:hover {
     transform: translateY(-5px);
     border-color: var(--accent-primary) !important;
 }

 /* Contact Info Cards */
 .contact-info-card {
     transition: all 0.3s ease;
 }

 .contact-info-card:hover {
     transform: translateX(5px);
     border-color: var(--accent-primary) !important;
 }

 /* Product Modal */
 .product-modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1000;
     align-items: center;
     justify-content: center;
     padding: 20px;
 }

 .product-modal.active {
     display: flex;
 }

 .product-modal-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.8);
     backdrop-filter: blur(5px);
     animation: fadeIn 0.3s ease;
 }

 .product-modal-content {
     position: relative;
     background: var(--bg-card);
     border: 1px solid var(--border-color);
     border-radius: 16px;
     max-width: 900px;
     width: 100%;
     max-height: 90vh;
     overflow-y: auto;
     animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
 }

 @keyframes slideUp {
     from {
         opacity: 0;
         transform: translateY(50px);
     }

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

 .product-modal-close {
     position: absolute;
     top: 20px;
     right: 20px;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: var(--bg-secondary);
     border: 1px solid var(--border-color);
     color: var(--text-primary);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     z-index: 10;
 }

 .product-modal-close:hover {
     background: var(--accent-primary);
     color: white;
     transform: rotate(90deg);
 }

 .product-modal-body {
     padding: 60px 40px 40px;
 }

 @media (max-width: 768px) {
     .product-modal-body {
         padding: 60px 20px 20px;
     }
 }

 /* Form Styles */
 .form-input,
 .form-textarea,
 select.form-input {
     background: var(--bg-card);
     border: 2px solid var(--border-color);
     color: var(--text-primary);
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     font-weight: 300;
 }

 .form-input:focus,
 .form-textarea:focus,
 select.form-input:focus {
     outline: none;
     border-color: var(--accent-primary);
     box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.15);
     transform: translateY(-1px);
 }

 .form-input::placeholder,
 .form-textarea::placeholder {
     color: var(--text-secondary);
     opacity: 0.6;
 }

 .form-group {
     position: relative;
 }

 @keyframes shimmer {
     0% {
         transform: translateX(-100%);
     }

     100% {
         transform: translateX(100%);
     }
 }

 @keyframes pulse {

     0%,
     100% {
         opacity: 1;
     }

     50% {
         opacity: 0.5;
     }
 }

 .animate-pulse {
     animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
 }

 /* Announcement Banner */
 .announcement-banner {
     background: linear-gradient(90deg,
             var(--accent-primary) 0%,
             var(--accent-secondary) 100%);
     color: white;
     padding: 12px 0;
     text-align: center;
     font-size: 14px;
     position: relative;
     overflow: hidden;
 }

 .announcement-content {
     animation: fadeIn 0.5s ease-in-out;
 }

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

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

 .announcement-banner::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg,
             transparent,
             rgba(255, 255, 255, 0.2),
             transparent);
     animation: shimmer 3s infinite;
 }

 @keyframes shimmer {
     0% {
         left: -100%;
     }

     100% {
         left: 100%;
     }
 }

 /* Contact Section Styles */
 .contact-section {
     padding: 8rem 2rem;
     background: var(--bg-primary);
     position: relative;
     overflow: hidden;
 }

 .contact-container {
     max-width: 80rem;
     margin: 0 auto;
     position: relative;
     z-index: 10;
 }

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

 .contact-badge {
     display: inline-block;
     padding: 0.5rem 1.5rem;
     border-radius: 9999px;
     background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(16, 185, 129, 0.1));
     border: 1px solid var(--accent-primary);
     color: var(--accent-primary);
     font-size: 0.875rem;
     font-weight: 500;
     margin-bottom: 1rem;
 }

 .contact-title {
     font-size: 3.5rem;
     font-weight: 500;
     color: var(--text-primary);
     margin-bottom: 1.5rem;
     letter-spacing: -0.025em;
 }

 .contact-subtitle {
     font-size: 1.25rem;
     font-weight: 300;
     color: var(--text-secondary);
     max-width: 56rem;
     margin: 0 auto;
     line-height: 1.75;
 }

 .contact-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 3rem;
 }

 @media (min-width: 1024px) {
     .contact-grid {
         grid-template-columns: 3fr 2fr;
     }
 }

 .contact-form-wrapper {
     width: 100%;
 }

 .contact-form-card {
     background: var(--bg-card);
     border: 1px solid var(--border-color);
     border-radius: 1rem;
     padding: 2.5rem;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
 }

 .form-header {
     margin-bottom: 2rem;
 }

 .form-title {
     font-size: 1.875rem;
     font-weight: 500;
     color: var(--text-primary);
     margin-bottom: 0.75rem;
 }

 .form-description {
     font-weight: 300;
     color: var(--text-secondary);
 }

 .contact-form {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .form-row {
     display: grid;
     grid-template-columns: 1fr;
     gap: 1.5rem;
 }

 @media (min-width: 768px) {
     .form-row {
         grid-template-columns: 1fr 1fr;
     }
 }

 .form-field {
     display: flex;
     flex-direction: column;
 }

 .form-label {
     display: block;
     margin-bottom: 0.5rem;
     font-size: 0.875rem;
     font-weight: 500;
     color: var(--text-secondary);
     text-transform: uppercase;
     letter-spacing: 0.05em;
 }

 .required {
     color: var(--accent-primary);
 }

 .input-wrapper {
     position: relative;
 }

 .input-icon {
     position: absolute;
     left: 1rem;
     top: 50%;
     transform: translateY(-50%);
     width: 1.25rem;
     height: 1.25rem;
     color: var(--text-secondary);
     pointer-events: none;
 }

 .textarea-icon {
     top: 1rem;
     transform: none;
 }

 .form-input,
 .form-select,
 .form-textarea {
     width: 100%;
     padding: 1rem 1rem 1rem 3rem;
     background: var(--bg-secondary);
     border: 2px solid var(--border-color);
     border-radius: 0.75rem;
     color: var(--text-primary);
     font-size: 1rem;
     font-weight: 300;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .form-select {
     appearance: none;
     cursor: pointer;
     padding-right: 3rem;
 }

 .select-arrow {
     position: absolute;
     right: 1rem;
     top: 50%;
     transform: translateY(-50%);
     width: 1.25rem;
     height: 1.25rem;
     color: var(--text-secondary);
     pointer-events: none;
 }

 .form-textarea {
     resize: none;
     padding-top: 1rem;
 }

 .form-input:focus,
 .form-select:focus,
 .form-textarea:focus {
     outline: none;
     border-color: var(--accent-primary);
     box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.15);
     transform: translateY(-1px);
 }

 .form-input::placeholder,
 .form-textarea::placeholder {
     color: var(--text-secondary);
     opacity: 0.6;
 }

 .submit-button {
     width: 100%;
     padding: 1.25rem;
     background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
     border: none;
     border-radius: 0.75rem;
     color: white;
     font-size: 1.125rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 10px 40px rgba(0, 123, 255, 0.3);
     position: relative;
     overflow: hidden;
 }

 .submit-button:hover {
     transform: scale(1.02);
     box-shadow: 0 15px 50px rgba(0, 123, 255, 0.4);
 }

 .button-content {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.75rem;
     position: relative;
     z-index: 10;
 }

 .button-arrow {
     width: 1.25rem;
     height: 1.25rem;
     transition: transform 0.3s ease;
 }

 .submit-button:hover .button-arrow {
     transform: translateX(0.25rem);
 }

 .privacy-notice {
     text-align: center;
     font-size: 0.75rem;
     font-weight: 300;
     color: var(--text-secondary);
     line-height: 1.5;
 }

 .privacy-link {
     color: var(--accent-primary);
     text-decoration: underline;
 }

 .privacy-link:hover {
     text-decoration: none;
 }

 .contact-info-wrapper {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .info-card {
     background: var(--bg-card);
     border: 1px solid var(--border-color);
     border-radius: 1rem;
     padding: 2rem;
 }

 .gradient-card {
     background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
     border: none;
     box-shadow: 0 20px 60px rgba(0, 123, 255, 0.4);
 }

 .info-card-title {
     font-size: 1.5rem;
     font-weight: 500;
     color: white;
     margin-bottom: 1.5rem;
 }

 .info-items {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .info-item {
     display: flex;
     align-items: flex-start;
     gap: 1rem;
 }

 .info-icon-wrapper {
     width: 3rem;
     height: 3rem;
     border-radius: 0.5rem;
     background: rgba(255, 255, 255, 0.2);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .info-icon {
     width: 1.5rem;
     height: 1.5rem;
     color: white;
 }

 .info-label {
     font-size: 0.875rem;
     font-weight: 500;
     color: rgba(255, 255, 255, 0.8);
     margin-bottom: 0.25rem;
 }

 .info-value {
     color: white;
     font-weight: 300;
 }

 .info-value:hover {
     text-decoration: underline;
 }

 .info-hours {
     font-size: 0.875rem;
     color: rgba(255, 255, 255, 0.7);
     margin-top: 0.25rem;
 }

 .online-status {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     margin-bottom: 1rem;
 }

 .status-dot {
     width: 0.75rem;
     height: 0.75rem;
     border-radius: 50%;
     background: #10b981;
     animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
 }

 .status-title {
     font-size: 1.125rem;
     font-weight: 500;
     color: var(--text-primary);
 }

 .status-description {
     font-weight: 300;
     color: var(--text-secondary);
     line-height: 1.625;
     margin-bottom: 1rem;
 }

 .response-time {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     font-size: 0.875rem;
     color: var(--accent-primary);
 }

 .response-icon {
     width: 1.25rem;
     height: 1.25rem;
 }

 .response-text {
     font-weight: 500;
 }

 .social-title {
     font-size: 1.125rem;
     font-weight: 500;
     color: var(--text-primary);
     margin-bottom: 1rem;
 }

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

 .social-link {
     width: 3rem;
     height: 3rem;
     border-radius: 0.5rem;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
 }

 .social-link:hover {
     transform: scale(1.1);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
 }

 .social-icon {
     width: 1.25rem;
     height: 1.25rem;
     color: white;
 }

 .social-facebook {
     background: var(--accent-primary);
 }

 .social-twitter {
     background: var(--accent-secondary);
 }

 .social-linkedin {
     background: var(--accent-tertiary);
 }

 .social-github {
     background: var(--accent-primary);
 }

 @media (max-width: 768px) {
     .contact-title {
         font-size: 2.5rem;
     }

     .contact-subtitle {
         font-size: 1.125rem;
     }

     .contact-form-card {
         padding: 1.5rem;
     }
 }

 /* Nav Link Colors */
 .nav-link {
     color: var(--text-primary);
 }

 .nav-link:hover {
     color: var(--accent-primary);
 }

 [data-theme="light"] .nav-link {
     color: var(--text-primary);
 }

 [data-theme="light"] .nav-link:hover {
     color: var(--accent-primary);
 }

 /* Typing Animation */
 .typing-text {
     display: inline-block;
     border-right: 3px solid var(--accent-primary);
     animation: blink 0.7s infinite;
 }

 @keyframes blink {

     0%,
     50% {
         border-color: var(--accent-primary);
     }

     51%,
     100% {
         border-color: transparent;
     }
 }

 .typing-text.complete {
     border-right: none;
     animation: none;
 }

 /* Donate Section Styles */
 .donate-section {
     padding: 8rem 2rem;
     background: var(--bg-primary);
     position: relative;
     overflow: hidden;
 }

 .donate-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background:
         radial-gradient(circle at 20% 30%, rgba(0, 123, 255, 0.05) 0%, transparent 50%),
         radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
     pointer-events: none;
 }

 .donate-container {
     max-width: 80rem;
     margin: 0 auto;
     position: relative;
     z-index: 10;
 }

 .donate-hero {
     text-align: center;
     margin-bottom: 5rem;
 }

 .donate-badge {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     padding: 0.75rem 1.5rem;
     background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(16, 185, 129, 0.1));
     border: 2px solid var(--accent-primary);
     border-radius: 9999px;
     color: var(--accent-primary);
     font-size: 0.875rem;
     font-weight: 600;
     letter-spacing: 0.05em;
     margin-bottom: 2rem;
 }

 .donate-badge-icon {
     width: 1.25rem;
     height: 1.25rem;
 }

 .donate-title {
     font-size: 4rem;
     font-weight: 600;
     color: var(--text-primary);
     margin-bottom: 2rem;
     letter-spacing: -0.02em;
     line-height: 1.1;
 }

 .donate-subtitle-wrapper {
     margin-bottom: 2rem;
 }

 .donate-network-badge {
     display: inline-flex;
     align-items: center;
     gap: 0.75rem;
     padding: 1rem 2rem;
     background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
     border-radius: 9999px;
     color: white;
     font-size: 1.125rem;
     font-weight: 500;
     box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
 }

 .network-icon {
     width: 1.5rem;
     height: 1.5rem;
 }

 .donate-description {
     font-size: 1.25rem;
     font-weight: 300;
     color: var(--text-secondary);
     max-width: 56rem;
     margin: 0 auto;
     line-height: 1.8;
 }

 .donate-content-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 3rem;
     margin-bottom: 5rem;
 }

 @media (min-width: 1024px) {
     .donate-content-grid {
         grid-template-columns: 1fr 1fr;
     }
 }

 .donate-left-column,
 .donate-right-column {
     display: flex;
     flex-direction: column;
     gap: 2rem;
 }

 /* Mission Card */
 .donate-mission-card {
     background: var(--bg-card);
     border: 1px solid var(--border-color);
     border-radius: 1.5rem;
     padding: 3rem;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
 }

 .mission-icon-wrapper {
     width: 5rem;
     height: 5rem;
     background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
     border-radius: 1.5rem;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 2rem;
     box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
 }

 .mission-icon {
     width: 2.5rem;
     height: 2.5rem;
     color: white;
 }

 .mission-title {
     font-size: 2rem;
     font-weight: 600;
     color: var(--text-primary);
     margin-bottom: 1.5rem;
 }

 .mission-text {
     font-size: 1.125rem;
     font-weight: 300;
     color: var(--text-secondary);
     line-height: 1.8;
     margin-bottom: 2rem;
 }

 .mission-features {
     display: flex;
     flex-direction: column;
     gap: 1rem;
 }

 .mission-feature-item {
     display: flex;
     align-items: center;
     gap: 1rem;
     padding: 1rem;
     background: var(--bg-secondary);
     border-radius: 0.75rem;
     transition: all 0.3s ease;
 }

 .mission-feature-item:hover {
     transform: translateX(0.5rem);
     background: var(--bg-primary);
 }

 .feature-icon-check {
     width: 1.5rem;
     height: 1.5rem;
     flex-shrink: 0;
     color: var(--accent-primary);
 }

 .feature-icon-check svg {
     width: 100%;
     height: 100%;
 }

 .mission-feature-item span {
     color: var(--text-primary);
     font-weight: 400;
 }

 /* Slyde Network Card */
 .slyde-network-card {
     background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
     border: 2px solid var(--accent-secondary);
     border-radius: 1.5rem;
     padding: 2.5rem;
     box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
 }

 .slyde-header {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-bottom: 1.5rem;
 }

 .slyde-icon {
     width: 2.5rem;
     height: 2.5rem;
     color: var(--accent-secondary);
 }

 .slyde-title {
     font-size: 1.5rem;
     font-weight: 600;
     color: var(--text-primary);
 }

 .slyde-description {
     font-size: 1rem;
     font-weight: 300;
     color: var(--text-secondary);
     line-height: 1.7;
     margin-bottom: 2rem;
 }

 .slyde-stats {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1.5rem;
 }

 .slyde-stat {
     text-align: center;
     padding: 1rem;
     background: var(--bg-card);
     border-radius: 0.75rem;
 }

 .stat-number {
     display: block;
     font-size: 1.75rem;
     font-weight: 700;
     color: var(--accent-secondary);
     margin-bottom: 0.5rem;
 }

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

 /* Impact Stats Card */
 .impact-stats-card {
     background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
     border-radius: 1.5rem;
     padding: 3rem;
     box-shadow: 0 20px 60px rgba(0, 123, 255, 0.4);
 }

 .impact-title {
     font-size: 2rem;
     font-weight: 600;
     color: white;
     margin-bottom: 2.5rem;
     text-align: center;
 }

 .impact-stats-grid {
     display: flex;
     flex-direction: column;
     gap: 2rem;
 }

 .impact-stat-item {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     border-radius: 1rem;
     padding: 1.5rem;
 }

 .impact-stat-number {
     font-size: 3rem;
     font-weight: 700;
     color: white;
     margin-bottom: 0.5rem;
 }

 .impact-stat-number::after {
     content: '+';
 }

 .impact-stat-label {
     font-size: 1rem;
     color: rgba(255, 255, 255, 0.9);
     margin-bottom: 1rem;
 }

 .impact-stat-bar {
     width: 100%;
     height: 0.5rem;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 9999px;
     overflow: hidden;
 }

 .impact-stat-fill {
     height: 100%;
     background: white;
     border-radius: 9999px;
     transition: width 1s ease;
 }

 /* Donation CTA Card */
 .donation-cta-card {
     background: var(--bg-card);
     border: 2px solid var(--accent-primary);
     border-radius: 1.5rem;
     padding: 3rem;
     box-shadow: 0 20px 60px rgba(0, 123, 255, 0.2);
 }

 .cta-header {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-bottom: 1.5rem;
 }

 .cta-icon {
     width: 2.5rem;
     height: 2.5rem;
     color: var(--accent-primary);
 }

 .cta-title {
     font-size: 1.875rem;
     font-weight: 600;
     color: var(--text-primary);
 }

 .cta-description {
     font-size: 1.125rem;
     font-weight: 300;
     color: var(--text-secondary);
     line-height: 1.7;
     margin-bottom: 2rem;
 }

 .donation-amounts {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1rem;
     margin-bottom: 2rem;
 }

 .amount-btn {
     padding: 1rem;
     background: var(--bg-secondary);
     border: 2px solid var(--border-color);
     border-radius: 0.75rem;
     color: var(--text-primary);
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .amount-btn:hover,
 .amount-btn.active {
     background: var(--accent-primary);
     border-color: var(--accent-primary);
     color: white;
     transform: translateY(-2px);
 }

 .amount-btn-custom {
     background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
     border-color: transparent;
     color: white;
 }

 .donate-primary-btn {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.75rem;
     width: 100%;
     padding: 1.25rem;
     background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
     border: none;
     border-radius: 0.75rem;
     color: white;
     font-size: 1.125rem;
     font-weight: 600;
     text-decoration: none;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
     margin-bottom: 1rem;
 }

 .donate-primary-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 15px 40px rgba(0, 123, 255, 0.4);
 }

 .btn-icon {
     width: 1.5rem;
     height: 1.5rem;
 }

 .donate-secondary-btn {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.75rem;
     width: 100%;
     padding: 1.25rem;
     background: var(--bg-secondary);
     border: 2px solid var(--accent-primary);
     border-radius: 0.75rem;
     color: var(--accent-primary);
     font-size: 1rem;
     font-weight: 500;
     text-decoration: none;
     cursor: pointer;
     transition: all 0.3s ease;
     margin-bottom: 2rem;
 }

 .donate-secondary-btn:hover {
     background: var(--accent-primary);
     color: white;
 }

 .btn-arrow {
     width: 1.25rem;
     height: 1.25rem;
     transition: transform 0.3s ease;
 }

 .donate-secondary-btn:hover .btn-arrow {
     transform: translateX(0.25rem);
 }

 .trust-badges {
     display: flex;
     justify-content: space-around;
     padding-top: 2rem;
     border-top: 1px solid var(--border-color);
 }

 .trust-badge {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 0.5rem;
 }

 .trust-icon {
     width: 2rem;
     height: 2rem;
     color: var(--accent-secondary);
 }

 .trust-badge span {
     font-size: 0.875rem;
     font-weight: 500;
     color: var(--text-secondary);
 }

 /* Testimonials */
 .donate-testimonials {
     margin-top: 5rem;
 }

 .testimonials-title {
     font-size: 2.5rem;
     font-weight: 600;
     color: var(--text-primary);
     text-align: center;
     margin-bottom: 3rem;
 }

 .testimonials-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 2rem;
 }

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

 .testimonial-card {
     background: var(--bg-card);
     border: 1px solid var(--border-color);
     border-radius: 1.5rem;
     padding: 2rem;
     transition: all 0.3s ease;
 }

 .testimonial-card:hover {
     transform: translateY(-0.5rem);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
     border-color: var(--accent-primary);
 }

 .testimonial-quote {
     width: 3rem;
     height: 3rem;
     margin-bottom: 1.5rem;
     color: var(--accent-primary);
     opacity: 0.3;
 }

 .testimonial-quote svg {
     width: 100%;
     height: 100%;
 }

 .testimonial-text {
     font-size: 1rem;
     font-weight: 300;
     color: var(--text-secondary);
     line-height: 1.7;
     margin-bottom: 2rem;
 }

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

 .author-avatar {
     width: 3rem;
     height: 3rem;
     background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-weight: 600;
     flex-shrink: 0;
 }

 .author-info {
     flex: 1;
 }

 .author-name {
     font-weight: 600;
     color: var(--text-primary);
     margin-bottom: 0.25rem;
 }

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

 @media (max-width: 768px) {
     .donate-title {
         font-size: 2.5rem;
     }

     .donation-amounts {
         grid-template-columns: repeat(2, 1fr);
     }
 }

