/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #592261;
    --primary-light: #7c4a87;
    --primary-dark: #3f1845;
    --secondary-color: #4CAF50;
    --accent-color: #FF6B35;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e5e9;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 100%;
    max-height: 60vh;
    object-fit: contain;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero .container {
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-logo {
        max-height: 40vh;
    }
}

.security-shield {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.security-shield i {
    font-size: 4rem;
    color: var(--text-white);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Introduction Section */
.introduction {
    padding: 4rem 0;
    background: var(--bg-white);
}

.intro-text {
    font-size: 1.3rem;
    text-align: center;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.about-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    background: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Technologies Section */
.technologies {
    padding: 4rem 0;
    background: var(--primary-color);
    color: var(--text-white);
}

.technologies .section-title {
    color: var(--text-white);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.tech-item i {
    font-size: 2rem;
    color: var(--accent-color);
}

.tech-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background: var(--bg-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-icon i {
    font-size: 1.2rem;
    color: var(--text-white);
}

.advantage-item p {
    color: var(--text-dark);
    font-weight: 500;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: var(--bg-white);
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 300px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--text-white);
    padding: 3rem 0 1rem;
}

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

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    color: var(--text-white);
}

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

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

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* Footer Image Section */
.footer-image-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.footer-design-image {
    width: 90%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .security-shield {
        width: 150px;
        height: 150px;
    }

    .security-shield i {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 100%;
    }

    .tech-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Case Studies Page Styles */
.case-studies-hero {
    padding: 120px 0 80px;
    background: var(--primary-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.case-studies-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.case-studies-hero .hero-title {
    font-size: 4rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.case-studies-hero .hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.case-studies-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.case-study-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.case-study-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.case-study-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.case-study-card.reverse .case-study-visual {
    order: -1;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.case-study-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.case-study-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.case-study-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.case-study-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.case-study-metrics {
    display: flex;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Case Study Animations */
.case-study-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.protection-animation {
    position: relative;
    width: 200px;
    height: 200px;
}

.threat-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #ff4757;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: threat-pulse 2s infinite;
}

.threat-icon i {
    color: white;
    font-size: 1.5rem;
}

.shield-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: shield-glow 3s infinite;
}

.shield-icon i {
    color: white;
    font-size: 3rem;
}

.protection-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: wave-expand 2s infinite;
    opacity: 0.7;
}

@keyframes threat-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes shield-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(89, 34, 97, 0.5); }
    50% { box-shadow: 0 0 40px rgba(89, 34, 97, 0.8); }
}

@keyframes wave-expand {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

.access-animation {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wallet-icon {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: #f39c12;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.wallet-icon i {
    color: white;
    font-size: 2rem;
}

.warning-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: warning-blink 1.5s infinite;
    z-index: 3;
}

.warning-icon i {
    color: white;
    font-size: 1.5rem;
}

.access-denied-animation {
    position: absolute;
    top: 40px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: access-denied 2s infinite;
    z-index: 3;
}

.access-denied-animation i {
    color: white;
    font-size: 1.5rem;
}

@keyframes warning-blink {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

@keyframes access-denied {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Add connecting lines */
.access-animation::before,
.access-animation::after {
    content: '';
    position: absolute;
    background: rgba(231, 76, 60, 0.4);
    z-index: 1;
}

.access-animation::before {
    top: 60px;
    left: 60px;
    width: 100px;
    height: 2px;
    transform: rotate(45deg);
}

.access-animation::after {
    top: 60px;
    right: 45px;
    width: 80px;
    height: 2px;
    transform: rotate(-45deg);
}

/* Markets Section */
.markets-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.market-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.market-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.market-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.market-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.market-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.market-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.market-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.market-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.market-features i {
    color: var(--secondary-color);
    margin-right: 1rem;
    font-size: 1.1rem;
}

.market-visual {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.individual-animation i,
.business-animation i,
.institution-animation i {
    font-size: 3rem;
    color: var(--primary-light);
    animation: float-gentle 3s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-content .cta-button {
    background: var(--text-white);
    color: var(--primary-color);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-content .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Animation on Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials Page Styles */
.testimonials-hero,
.pricing-hero {
    padding: 120px 0 80px;
    background: var(--primary-color);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonials-hero .container,
.pricing-hero .container {
    width: 100%;
}

.testimonials-hero .hero-content,
.pricing-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-hero .hero-title,
.pricing-hero .hero-title {
    font-size: 4rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.testimonials-hero .hero-subtitle,
.pricing-hero .hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .testimonials-hero .hero-title,
    .pricing-hero .hero-title {
        font-size: 3rem;
    }

    .testimonials-hero .hero-subtitle,
    .pricing-hero .hero-subtitle {
        font-size: 1.2rem;
    }
}

.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.testimonial-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card.reverse .testimonial-visual {
    order: -1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.quote-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 2rem;
    border: none;
    padding: 0;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.8rem;
    color: var(--text-white);
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.stars {
    display: flex;
    gap: 0.2rem;
}

.stars i {
    color: #ffd700;
    font-size: 1.1rem;
}

.rating-text {
    font-weight: 600;
    color: var(--primary-color);
}

/* Testimonial Animations */
.testimonial-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.savings-animation {
    position: relative;
    width: 200px;
    height: 200px;
}

.money-icon {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: money-float 3s ease-in-out infinite;
}

.money-icon i {
    font-size: 2rem;
    color: white;
}

.shield-protection {
    position: absolute;
    top: 20%;
    right: 20%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: shield-pulse 2s infinite;
}

.shield-protection i {
    font-size: 1.5rem;
    color: white;
}

.savings-effect {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: savings-glow 2s infinite;
}

.savings-effect span {
    display: block;
    font-weight: 700;
    color: var(--secondary-color);
}

.savings-effect span:first-child {
    font-size: 1.5rem;
}

.savings-effect span:last-child {
    font-size: 0.9rem;
}

@keyframes money-float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-15px); }
}

@keyframes shield-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes savings-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.integration-animation {
    position: relative;
    width: 200px;
    height: 200px;
}

.puzzle-pieces {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px;
}

.puzzle-piece {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: puzzle-connect 3s ease-in-out infinite;
}

.puzzle-piece i {
    font-size: 1.5rem;
    color: white;
}

.puzzle-piece:nth-child(2) {
    animation-delay: 0.5s;
}

.integration-success {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: success-bounce 2s infinite;
}

.integration-success i {
    font-size: 1.5rem;
    color: white;
}

@keyframes puzzle-connect {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}

@keyframes success-bounce {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1); }
}

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-stat {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--bg-light);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.trust-stat.animate {
    opacity: 1;
    transform: translateY(0);
}

.trust-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

/* Review Categories */
.review-categories {
    padding: 5rem 0;
    background: var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.category-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.category-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.category-rating span {
    font-weight: 600;
    color: var(--primary-color);
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    text-align: center;
}

.pricing-hero .hero-title {
    color: var(--text-white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.pricing-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(50px);
}

.pricing-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.plan-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.plan-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.plan-name {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.plan-description {
    color: var(--text-light);
    font-size: 1rem;
}

.plan-price {
    margin-bottom: 2rem;
    padding: 1.5rem 0;
}

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

.amount {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.period {
    font-size: 1.2rem;
    color: var(--text-light);
}

.custom-price, .contact-price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    display: block;
}

.price-note {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.plan-features {
    text-align: left;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 0.8rem;
    color: var(--text-white);
}

.plan-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(89, 34, 97, 0.3);
}

.plan-visual {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pricing Animations */
.individual-animation {
    position: relative;
    width: 80px;
    height: 80px;
}

.user-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: user-pulse 2s infinite;
}

.user-icon i {
    font-size: 1.5rem;
    color: white;
}

.protection-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    animation: ring-expand 3s infinite;
    opacity: 0.6;
}

@keyframes user-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes ring-expand {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

.business-animation {
    position: relative;
    width: 80px;
    height: 80px;
}

.dashboard-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.dashboard-icon i {
    font-size: 1.5rem;
    color: white;
}

.data-flow {
    position: absolute;
    top: -10px;
    right: -10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.data-point {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: data-flow 2s infinite;
}

.data-point:nth-child(2) {
    animation-delay: 0.5s;
}

.data-point:nth-child(3) {
    animation-delay: 1s;
}

@keyframes data-flow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

.enterprise-animation {
    position: relative;
    width: 80px;
    height: 80px;
}

.enterprise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.enterprise-icon i {
    font-size: 1.8rem;
    color: white;
}

.security-layers {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    animation: layer-pulse 3s infinite;
}

.layer:nth-child(1) {
    width: 70px;
    height: 70px;
    animation-delay: 0s;
}

.layer:nth-child(2) {
    width: 90px;
    height: 90px;
    animation-delay: 1s;
}

.layer:nth-child(3) {
    width: 110px;
    height: 110px;
    animation-delay: 2s;
}

@keyframes layer-pulse {
    0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
}

/* Features Comparison */
.features-comparison {
    padding: 5rem 0;
    background: var(--bg-white);
}

.comparison-table {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.comparison-table.animate {
    opacity: 1;
    transform: translateY(0);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: var(--primary-color);
    color: var(--text-white);
    font-weight: 600;
}

.table-header > div {
    padding: 1.5rem 1rem;
    text-align: center;
}

.feature-col {
    text-align: left !important;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

.table-row:last-child {
    border-bottom: none;
}

.table-row > div {
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-name {
    justify-content: flex-start !important;
    font-weight: 500;
    color: var(--text-dark);
}

.feature-check i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.feature-cross i {
    color: #e74c3c;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.faq-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Partnerships Section */
.partnerships-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.partnerships-section .section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.partnership-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.partnership-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.partnership-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

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

.partner-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: partner-glow 3s ease-in-out infinite;
}

.partner-logo i {
    font-size: 2rem;
    color: var(--text-white);
}

@keyframes partner-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(89, 34, 97, 0.3); }
    50% { box-shadow: 0 0 30px rgba(89, 34, 97, 0.6); }
}

.partner-name {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.partner-description {
    margin-bottom: 2rem;
}

.partner-description p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.partner-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: var(--bg-light);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: scale(1.05);
}

.feature-badge i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.feature-badge:hover i {
    color: var(--text-white);
}

.feature-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.feature-badge:hover span {
    color: var(--text-white);
}

.partner-visual {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Partnership Animations */
.chainalysis-animation {
    position: relative;
    width: 100px;
    height: 80px;
}

.chain-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: chain-pulse 2s infinite;
}

.chain-link i {
    font-size: 1.2rem;
    color: white;
}

.analysis-flow {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flow-point {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: flow-pulse 2s infinite;
}

.flow-point:nth-child(2) {
    animation-delay: 0.5s;
}

.flow-point:nth-child(3) {
    animation-delay: 1s;
}

@keyframes chain-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes flow-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.elliptic-animation {
    position: relative;
    width: 100px;
    height: 80px;
}

.api-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.api-icon i {
    font-size: 1.5rem;
    color: white;
}

.verification-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 3px solid var(--primary-light);
    border-top-color: transparent;
    border-radius: 50%;
    animation: ring-spin 3s linear infinite;
}

.data-packets {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.packet {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: packet-orbit 4s linear infinite;
}

.packet:nth-child(1) {
    animation-delay: 0s;
}

.packet:nth-child(2) {
    animation-delay: 1.3s;
}

.packet:nth-child(3) {
    animation-delay: 2.6s;
}

@keyframes ring-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes packet-orbit {
    0% { transform: rotate(0deg) translateX(40px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(40px) rotate(-360deg); }
}

.metamask-animation {
    position: relative;
    width: 100px;
    height: 80px;
}

.wallet-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.wallet-icon i {
    font-size: 1.3rem;
    color: white;
}

.security-shield {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    animation: shield-glow 2s infinite;
}

.security-shield i {
    font-size: 1.3rem;
    color: white;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: 30px;
    right: 30px;
    height: 3px;
    background: linear-gradient(90deg, #f39c12, var(--primary-color));
    transform: translateY(-50%);
    animation: connection-pulse 3s infinite;
}

@keyframes connection-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; box-shadow: 0 0 10px rgba(89, 34, 97, 0.5); }
}

.partnership-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.stat-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .case-study-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .case-study-card.reverse .case-study-visual {
        order: 0;
    }

    .case-study-metrics {
        flex-direction: column;
        gap: 1rem;
    }

    .markets-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .market-card {
        padding: 2rem;
    }

    .case-studies-hero .hero-title {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .testimonials-hero .hero-title {
        font-size: 2.5rem;
    }

    .testimonial-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .testimonial-card.reverse .testimonial-visual {
        order: 0;
    }

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-hero .hero-title {
        font-size: 2.5rem;
    }

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

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .comparison-table {
        overflow-x: auto;
    }

    .table-header,
    .table-row {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        min-width: 600px;
    }

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

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

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .about-card,
    .feature-card {
        padding: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .case-studies-hero .hero-title {
        font-size: 2rem;
    }

    .case-study-card {
        padding: 1.5rem;
    }

    .case-study-text h3 {
        font-size: 1.5rem;
    }

    .testimonials-hero .hero-title {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .trust-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .pricing-hero .hero-title {
        font-size: 2rem;
    }

    .plan-name {
        font-size: 1.5rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .custom-price, .contact-price {
        font-size: 1.8rem;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .partnership-card {
        padding: 2rem;
    }

    .partner-name {
        font-size: 1.5rem;
    }

    .partnership-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-item .stat-number {
        font-size: 2rem;
    }
}

/* About Us Page Styles */
.about-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(89, 34, 97, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

.about-hero .hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.about-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Company Story Section */
.company-story {
    padding: 80px 0;
    background: rgba(89, 34, 97, 0.02);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
}

/* Leadership Team Section */
.leadership-section {
    padding: 80px 0;
    background: white;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.leader-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(89, 34, 97, 0.15);
}

.leader-image {
    position: relative;
    margin-bottom: 1.5rem;
}

.leader-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.leader-role-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.leader-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.leader-expertise {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.leader-contact {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(89, 34, 97, 0.1);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.leader-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.specialty-tag {
    background: rgba(89, 34, 97, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: rgba(89, 34, 97, 0.02);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(89, 34, 97, 0.12);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Contact Information Section */
.contact-info-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(89, 34, 97, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-color);
    line-height: 1.6;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--accent-color);
}

/* Responsive Design for About Us Page */
@media (max-width: 768px) {
    .about-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .leader-contact {
        flex-direction: column;
        align-items: center;
    }
}

/* Access Icons */
.access-icons {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wallet-icon {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: #f39c12;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wallet-icon i {
    color: white;
    font-size: 2rem;
}

.stop-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stop-icon i {
    color: white;
    font-size: 1.5rem;
}

.alert-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-icon i {
    color: white;
    font-size: 1.5rem;
}

/* Remove all previous animation styles */
.access-icons::before,
.access-icons::after {
    content: '';
    position: absolute;
    background: rgba(231, 76, 60, 0.4);
    z-index: 1;
}

.access-icons::before {
    top: 60px;
    left: 60px;
    width: 100px;
    height: 2px;
    transform: rotate(45deg);
}

.access-icons::after {
    top: 60px;
    right: 45px;
    width: 80px;
    height: 2px;
    transform: rotate(-45deg);
}

.access-detection {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 20px;
}

.wallet {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: #f39c12;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wallet i {
    color: white;
    font-size: 2rem;
}

.stop-sign {
    position: absolute;
    top: 0;
    left: 0;
    width: 55px;
    height: 55px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stop-sign i {
    color: white;
    font-size: 1.5rem;
}

.alert-triangle {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    background: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-triangle i {
    color: white;
    font-size: 1.2rem;
}

/* Events Page Styles */
.events-hero {
    padding: 120px 0 80px;
    background: var(--primary-color);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.events-hero .container {
    width: 100%;
}

.events-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.events-hero .hero-title {
    font-size: 4rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.events-hero .hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.events-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.events-section:nth-child(even) {
    background: var(--bg-white);
}

.presentation-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.presentation-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.presentation-card:hover {
    transform: translateY(-5px);
}

.presentation-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.presentation-icon i {
    font-size: 3rem;
    color: var(--text-white);
}

.presentation-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.presentation-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.download-button:hover {
    transform: translateY(-2px);
}

.gallery-container {
    padding: 3rem;
    text-align: center;
}

.gallery-placeholder {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 768px) {
    .events-hero .hero-title {
        font-size: 3rem;
    }

    .events-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .presentation-card {
        padding: 2rem;
    }

    .presentation-icon {
        width: 80px;
        height: 80px;
    }

    .presentation-icon i {
        font-size: 2.5rem;
    }

    .presentation-card h3 {
        font-size: 1.5rem;
    }
}

.pdf-viewer {
    width: 100%;
    margin-bottom: 2rem;
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.pdf-viewer embed {
    display: block;
    border: none;
}

@media (max-width: 768px) {
    .pdf-viewer embed {
        height: 400px;
    }
}

.gallery-cta {
    text-align: center;
    padding: 3rem 1rem;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.gallery-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.gallery-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-button i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .gallery-cta {
        padding: 2rem 1rem;
    }
    
    .gallery-button {
        padding: 0.75rem 1.5rem;
    }
}

/* Photo Gallery Page Styles */
.gallery-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.gallery-upload {
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-upload:hover {
    transform: translateY(-5px);
}

.upload-content {
    padding: 3rem 2rem;
    text-align: center;
}

.upload-content i.fa-cloud-upload-alt {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.upload-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.upload-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.upload-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.upload-button:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .upload-content {
        padding: 2rem 1.5rem;
    }
}