/* Import local font */
@font-face {
    font-family: 'HONORSansArabicUI-DB';
    src: url('../Fonts/HONORSansArabicUI-DB.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #34C334, #28a745, #20c997, #17a2b8, #6f42c1, #e83e8c);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    color: white;
    position: relative;
}

.loading-logo img {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.loading-content p {
    font-size: 18px;
    margin: 0;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #ffcc00, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 2s ease-in-out infinite alternate;
    letter-spacing: 1px;
    position: relative;
}

.loading-content p::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 204, 0, 0.1));
    border-radius: 20px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes textGlow {
    0% { 
        background-position: 0% 50%;
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    }
    100% { 
        background-position: 100% 50%;
        filter: drop-shadow(0 0 15px rgba(255, 204, 0, 0.8));
    }
}

@keyframes borderGlow {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.05);
    }
}

/* General styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    font-family: 'HONORSansArabicUI-DB', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(45deg, #34C334, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header styles */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.logo {
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.nav-buttons {
    position: absolute;
    left: -8%;
    display: flex;
    gap: 15px;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.nav-links a:hover {
    color: #34C334;
    background-color: rgba(52, 195, 52, 0.1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #34C334;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 80%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e9eef5 0%, #eaf4f4 50%, #eef7f1 100%);
    color: #1f2937;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Smoke/Cloud effect at bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: 
        radial-gradient(ellipse 200px 50px at 20% 0%, rgba(52, 195, 52, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 300px 60px at 50% 0%, rgba(40, 167, 69, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 250px 40px at 80% 0%, rgba(32, 201, 151, 0.06) 0%, transparent 50%);
    animation: smokeRise 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes smokeRise {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) scale(1.1);
        opacity: 0.6;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px, 70px 70px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.container_hero {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #0f172a;
    text-shadow: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
}

.hero-badge i {
    color: #34C334;
    text-shadow: none;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 900;
    color: #0f172a;
    text-shadow: none;
    filter: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: -0.02em;
}

.hero-title .gradient-text {
    background: linear-gradient(45deg, #000000, #34C334, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: none;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.98;
    line-height: 1.6;
    color: #334155;
    text-shadow: none;
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 23, 42, 0.06);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
}

.hero-description strong {
    color: #34C334;
    text-shadow: none;
    font-weight: bold;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.75);
    padding: 15px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #34C334;
    text-shadow: none;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #475569;
    text-shadow: none;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button.primary {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(107, 114, 128, 0.4), 0 0 0 0 rgba(107, 114, 128, 0.7);
    text-shadow: none;
    position: relative;
    z-index: 1;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #4b5563, #374151);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(107, 114, 128, 0.6), 0 0 0 8px rgba(107, 114, 128, 0.1);
    animation: pulseGlow 1.5s ease-in-out infinite alternate;
}

.cta-button.secondary {
    background: transparent;
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.2);
    backdrop-filter: blur(10px);
    text-shadow: none;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08);
}

.cta-button.secondary:hover {
    background: rgba(15, 23, 42, 0.06);
    border-color: rgba(15, 23, 42, 0.35);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12), 0 0 0 8px rgba(15, 23, 42, 0.05);
    animation: subtleGlow 2s ease-in-out infinite alternate;
}

/* Enhanced button effects */
.cta-button.primary::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.6s ease;
    z-index: -1;
}

.cta-button.primary:hover::before {
    left: 100%;
}

.cta-button.secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(15, 23, 42, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.cta-button.secondary:hover::after {
    width: 100%;
    height: 100%;
    border-radius: 50px;
}

/* Enhanced button animations */
@keyframes pulseGlow {
    0% { box-shadow: 0 12px 30px rgba(107, 114, 128, 0.6), 0 0 0 8px rgba(107, 114, 128, 0.1); }
    100% { box-shadow: 0 12px 30px rgba(107, 114, 128, 0.8), 0 0 0 12px rgba(107, 114, 128, 0.2); }
}

@keyframes subtleGlow {
    0% { box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12), 0 0 0 8px rgba(15, 23, 42, 0.05); }
    100% { box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18), 0 0 0 12px rgba(15, 23, 42, 0.08); }
}

/* Button focus states for accessibility */
.cta-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(14, 165, 166, 0.3);
}

/* Button active states */
.cta-button:active {
    transform: translateY(-2px) scale(0.98);
    transition: all 0.1s ease;
}

/* Button loading state */
.cta-button.loading {
    pointer-events: none;
    opacity: 0.8;
    transform: scale(0.95);
}

/* Button ripple effect */
.cta-button.ripple {
    position: relative;
    overflow: hidden;
}

.cta-button.ripple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button.ripple:active::before {
    width: 300px;
    height: 300px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
    color: #0ea5a6;
}

.image-container {
    position: relative;
    display: inline-block;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    background: #ffffff;
    padding: 20px;
}

.image-container:hover img {
    transform: scale(1.02);
}

/* Dashboard Mockup Styles */
.dashboard-mockup {
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    animation: dashboardFloat 6s ease-in-out infinite;
}

@keyframes dashboardFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-10px) rotateY(5deg); }
}

.dashboard-header {
    background: linear-gradient(135deg, #34C334, #28a745);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-dots {
    display: flex;
    gap: 6px;
}

.header-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.header-dots span:nth-child(1) { background: #ff5f57; }
.header-dots span:nth-child(2) { background: #ffbd2e; }
.header-dots span:nth-child(3) { background: #28ca42; }

.header-title {
    font-weight: bold;
    font-size: 16px;
}

.dashboard-content {
    padding: 20px;
    background: #f8f9fa;
}

.stats-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.stat-box {
    flex: 1;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #34C334, #28a745);
    border-radius: 10px;
    color: white;
}

.stat-info {
    flex: 1;
}

.stat-value {
    font-weight: bold;
    font-size: 18px;
    color: #333;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 12px;
    color: #666;
}

.notification-panel {
    background: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.notification-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item:hover {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    margin: 0 -10px;
}

.notification-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #34C334, #28a745);
    border-radius: 8px;
    color: white;
    font-size: 16px;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: bold;
    font-size: 14px;
    color: #333;
    margin-bottom: 2px;
}

.notification-desc {
    font-size: 12px;
    color: #666;
}

.notification-time {
    font-size: 11px;
    color: #999;
    background: #f0f0f0;
    padding: 4px 8px;
    border-radius: 12px;
}

.chart-area {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.chart-title {
    font-weight: bold;
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 80px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #34C334, #28a745);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    transition: all 0.3s ease;
    animation: chartGrow 2s ease-out;
}

.chart-bar:hover {
    background: linear-gradient(to top, #28a745, #20c997);
    transform: scaleY(1.1);
}

@keyframes chartGrow {
    from { height: 0; }
    to { height: var(--height); }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-weight: 500;
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-card i {
    color: #34C334;
    font-size: 1.2rem;
}

.card-1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -30px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: -10px;
    animation-delay: 2s;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;

}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
    font-weight: bold;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #fff;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    font-size: 3rem;
    color: #34C334;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}



/* Testimonials Section - Enhanced Design */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f0f8f0 100%);
    color: #2c3e50;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(52, 196, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(42, 165, 42, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(32, 201, 151, 0.06) 0%, transparent 50%);
    animation: backgroundShift 8s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.1) rotate(2deg);
        opacity: 1;
    }
}

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: bold;
    position: relative;
    z-index: 10;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(52, 196, 53, 0.3);
    }
    50% { 
        text-shadow: 0 0 30px rgba(52, 196, 53, 0.5);
    }
}

.testimonials .gradient-text {
    background: linear-gradient(135deg, #34C435 0%, #2AA52A 50%, #20c997 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { 
        background-position: 0% 50%;
    }
    50% { 
        background-position: 100% 50%;
    }
}

.testimonials .container {
    position: relative;
    z-index: 10;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    animation: cardFloat 6s ease-in-out infinite;
}

.testimonial-card:nth-child(1) { animation-delay: 0s; }
.testimonial-card:nth-child(2) { animation-delay: 1s; }
.testimonial-card:nth-child(3) { animation-delay: 2s; }

@keyframes cardFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
    }
    50% { 
        transform: translateY(-8px) scale(1.02);
    }
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 196, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(52, 196, 53, 0.2);
    border-color: rgba(52, 196, 53, 0.3);
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card.featured {
    background: linear-gradient(145deg, #f0f8f0 0%, #e8f5e8 100%);
    border: 3px solid #34C435;
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(52, 196, 53, 0.25);
}

.testimonial-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow: 0 35px 70px rgba(52, 196, 53, 0.3);
}

.testimonial-rating {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 1.3rem;
    animation: starPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.testimonial-rating i:nth-child(1) { animation-delay: 0s; }
.testimonial-rating i:nth-child(2) { animation-delay: 0.2s; }
.testimonial-rating i:nth-child(3) { animation-delay: 0.4s; }
.testimonial-rating i:nth-child(4) { animation-delay: 0.6s; }
.testimonial-rating i:nth-child(5) { animation-delay: 0.8s; }

@keyframes starPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
    }
    50% { 
        transform: scale(1.2);
        filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.6));
    }
}

.testimonial-card p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.7;
    font-style: italic;
    color: #2c3e50;
    position: relative;
    z-index: 2;
    text-align: center;
    font-weight: 500;
    animation: textFadeIn 1s ease-out;
}

@keyframes textFadeIn {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card p::before {
    content: '"';
    font-size: 4rem;
    color: #34C435;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    opacity: 0.3;
    animation: quoteFloat 3s ease-in-out infinite;
}

.testimonial-card p::after {
    content: '"';
    font-size: 4rem;
    color: #34C435;
    position: absolute;
    bottom: -40px;
    right: -10px;
    font-family: serif;
    opacity: 0.3;
    animation: quoteFloat 3s ease-in-out infinite reverse;
}

@keyframes quoteFloat {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-5px);
    }
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #34C435;
    box-shadow: 0 8px 20px rgba(52, 196, 53, 0.3);
    transition: all 0.3s ease;
}

.testimonial-author img:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(52, 196, 53, 0.4);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #34C435 0%, #2AA52A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #34C435;
    color: white;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(52, 196, 53, 0.3);
    transition: all 0.3s ease;
    animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(52, 196, 53, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 12px 25px rgba(52, 196, 53, 0.4);
    }
}

.author-info {
    text-align: center;
}

.author-info h4 {
    margin: 0 0 8px 0;
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: bold;
    animation: nameSlideIn 1s ease-out;
}

@keyframes nameSlideIn {
    from { 
        opacity: 0;
        transform: translateX(-20px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

.author-info span {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 500;
    animation: roleSlideIn 1s ease-out 0.2s both;
}

@keyframes roleSlideIn {
    from { 
        opacity: 0;
        transform: translateX(20px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

/* Override for new pricing layout */
.pricing .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #34C334, #28a745);
    color: white;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffcc00;
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 3rem;
    font-weight: bold;
    color: #34C334;
}

.pricing-card.featured .currency {
    color: white;
}

.currency-symbol {
    font-size: 1.5rem;
    font-weight: bold;
    color: #34C334;
}

.pricing-card.featured .currency-symbol {
    color: white;
}

.period {
    font-size: 1rem;
    color: #666;
}

.pricing-card.featured .period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.pricing-features i {
    color: #34C334;
    font-size: 1.1rem;
}

.pricing-card.featured .pricing-features i {
    color: #ffcc00;
}

.pricing-button {
    display: inline-block;
    padding: 15px 30px;
    background: #34C334;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #34C334;
}

.pricing-button:hover {
    background: #28a745;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 195, 52, 0.3);
}

.pricing-button.featured {
    background: #ffcc00;
    color: #000;
    border-color: #ffcc00;
}

.pricing-button.featured:hover {
    background: #ffaa00;
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.3);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 0;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(52, 195, 52, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: #34C334;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #ffcc00;
}

.footer-logo img {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffcc00;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #ccc;
}

.contact-info i {
    color: #ffcc00;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Responsive design */
@media (max-width: 900px) {
    .container {
        flex-wrap: wrap;
    }

    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .logo img {
        max-height: 30px;
        width: auto;
        margin: 3px auto;
        display: block;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .container_hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .floating-card {
        display: none;
    }

    .dashboard-mockup {
        max-width: 350px;
        margin: 0 auto;
    }

    .features-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
        margin: 0 10px;
    }
    
    .testimonial-card.featured {
        transform: none;
    }
    
    .testimonial-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .testimonial-card p {
        font-size: 1.1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 15px;
    }
    
    .testimonial-author img,
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .author-info h4 {
        font-size: 1.1rem;
    }
    
    .author-info span {
        font-size: 0.9rem;
    }

    .feature-card.featured {
        transform: none;
    }

    .feature-card.featured:hover {
        transform: translateY(-10px);
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .features h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .testimonials h2 {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .feature-stats {
        padding: 12px;
    }
    
    .stat {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .features h2 {
        font-size: 1.5rem;
    }
    
    .testimonials h2 {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .feature-icon i {
        font-size: 2.5rem;
    }
    
    .feature-stats {
        padding: 10px;
    }
    
    .stat {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-card,
    .pricing-card {
        padding: 30px 20px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .dashboard-mockup {
        max-width: 300px;
    }

    .stats-row {
        flex-direction: column;
        gap: 10px;
    }

    .stat-box {
        padding: 12px;
    }

    .notification-item {
        padding: 8px 0;
    }

    .chart-bars {
        height: 60px;
        gap: 6px;
    }
}

/* FAQ Explore Button Styles */
.faq-more-button {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
}

.faq-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #34C435 0%, #2AA52A 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(52, 196, 53, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.faq-explore-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.6s ease;
}

.faq-explore-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(52, 196, 53, 0.4);
    border-color: rgba(255,255,255,0.3);
}

.faq-explore-btn:hover::before {
    left: 100%;
}

.faq-explore-btn i:first-child {
    font-size: 1.3rem;
    animation: iconPulse 2s ease-in-out infinite;
}

.faq-explore-btn i:last-child {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-explore-btn:hover i:last-child {
    transform: translateX(-5px);
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1); 
        filter: drop-shadow(0 0 5px rgba(255,255,255,0.5));
    }
    50% { 
        transform: scale(1.1); 
        filter: drop-shadow(0 0 10px rgba(255,255,255,0.8));
    }
}

/* Responsive FAQ Button */
@media (max-width: 768px) {
    .faq-explore-btn {
        padding: 15px 30px;
        font-size: 1rem;
        gap: 10px;
    }
    
    .faq-more-button {
        margin-top: 30px;
        padding: 15px;
    }
}

/* Pricing Section Header - Centered */
.pricing .section-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0;
}

.pricing .section-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: center;
}

.pricing .section-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Toggle - Centered */
.pricing .pricing-toggle-container {
    display: flex;
    justify-content: center;
    margin: 20px 0 40px 0;
    padding: 0;
}

.pricing .pricing-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.toggle-label {
    font-size: 1.1rem;
    font-weight: bold;
    color: #666;
    transition: color 0.3s ease;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.toggle-switch.active {
    background: linear-gradient(135deg, #34C435 0%, #2AA52A 100%);
    border-color: rgba(52, 196, 53, 0.3);
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.toggle-switch.active .toggle-slider {
    transform: translateX(30px);
    box-shadow: 0 2px 12px rgba(52, 196, 53, 0.4);
}

.savings-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: savingsPulse 2s ease-in-out infinite;
}

@keyframes savingsPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.savings-text {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Pricing Cards Container */
.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(52, 196, 53, 0.15);
    border-color: rgba(52, 196, 53, 0.2);
}

.pricing-card.featured {
    border: 3px solid #34C435;
    transform: scale(1.08);
    background: linear-gradient(145deg, #f0f8f0 0%, #e8f5e8 100%);
    box-shadow: 0 25px 50px rgba(52, 196, 53, 0.25);
    position: relative;
    z-index: 10;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 196, 53, 0.05) 0%, rgba(42, 165, 42, 0.02) 100%);
    border-radius: 20px;
    z-index: -1;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-12px);
    box-shadow: 0 35px 70px rgba(52, 196, 53, 0.3);
}

.popular-badge {
    position: absolute;
    top: -18px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 3px solid white;
}

.popular-badge i {
    font-size: 1.2rem;
    animation: crownRotate 3s ease-in-out infinite;
}

@keyframes crownRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-8deg) scale(1.1); }
    75% { transform: rotate(8deg) scale(1.1); }
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    }
    50% { 
        transform: scale(1.08); 
        box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
    }
}

.card-header {
    padding: 40px 30px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.card-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.price-container {
    position: relative;
}

.price {
    margin-bottom: 0;
}

.currency {
    font-size: 3.2rem;
    font-weight: bold;
    color: #2c3e50;
    display: block;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured .currency {
    color: #34C435;
    font-size: 3.5rem;
    text-shadow: 0 3px 6px rgba(52, 196, 53, 0.2);
}

.currency-symbol {
    font-size: 1.3rem;
    color: #666;
    margin-left: 5px;
    font-weight: 600;
}

.pricing-card.featured .currency-symbol {
    color: #2AA52A;
}

.period {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-top: 8px;
    display: block;
    font-weight: 500;
}

.pricing-card.featured .period {
    color: #27ae60;
}

.card-features {
    flex: 1;
    padding: 30px;
}

.card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.card-features li {
    padding: 12px 0;
    color: #555;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.card-features li:hover {
    color: #34C435;
}

.card-features i {
    color: #34C435;
    font-size: 1.1rem;
    animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.card-footer {
    padding: 0 30px 30px;
    margin-top: auto;
}

.pricing-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #34C435 0%, #2AA52A 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 25px rgba(52, 196, 53, 0.3);
}

.pricing-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 ease;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(52, 196, 53, 0.4);
    border-color: rgba(255,255,255,0.3);
}

.pricing-btn:hover::before {
    left: 100%;
}

.pricing-btn.featured {
    background: linear-gradient(135deg, #2AA52A 0%, #1e7e1e 100%);
    box-shadow: 0 12px 30px rgba(42, 165, 42, 0.4);
}

/* Responsive Pricing */
@media (max-width: 1200px) {
    .pricing-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: scale(1.05);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.05) translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .currency {
        font-size: 2.8rem;
    }
    
    .pricing-card.featured .currency {
        font-size: 3rem;
    }
    
    .pricing-toggle {
        padding: 12px 20px;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .toggle-switch {
        width: 50px;
        height: 25px;
    }
    
    .toggle-slider {
        width: 19px;
        height: 19px;
    }
    
    .toggle-switch.active .toggle-slider {
        transform: translateX(25px);
    }
    
    .card-header {
        padding: 30px 20px 15px;
    }
    
    .card-features {
        padding: 20px;
    }
    
    .card-footer {
        padding: 0 20px 20px;
    }
    
    .popular-badge {
        top: -15px;
        right: 10px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .pricing .section-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .pricing .section-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .pricing .section-header {
        text-align: center;
        padding-right: 0;
    }
    
    .pricing .pricing-toggle-container {
        justify-content: center;
        padding-right: 0;
    }
    
    .pricing .container {
        align-items: center;
    }
}