:root {
    --primary: #4e73ff;
    --primary-light: #6d8cff;
    --primary-dark: #3a5beb;
    --secondary: #f8fafc;
    --accent: #ff7a45;
    --text: #1e293b;
    --text-light: #64748b;
    --card-bg: #ffffff;
    --sky-light: #f0f7ff;
    --sky-medium: #dbeafe;
    --success: #10b981;
    --warning: #f59e0b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #ffffff;
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1050;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.navbar-brand i {
    color: var(--primary-light);
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    color: var(--text);
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
    border-radius: 50px;
    position: relative;
}

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

.nav-link:hover::after {
    width: 60%;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(78, 115, 255, 0.08);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    border-radius: 50px;
    padding: 0.7rem 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 115, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 115, 255, 0.3);
}

.btn-primary::after {
    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.7s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-outline-primary {
    border-radius: 50px;
    padding: 0.7rem 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-color: var(--primary);
    color: var(--primary);
    position: relative;
    overflow: hidden;
}

.btn-outline-primary:hover {
    background: rgba(78, 115, 255, 0.08);
    transform: translateY(-2px);
}

/* Language Switcher - Fixed */
.language-switcher {
    position: relative;
}

.language-btn {
    background: transparent;
    border: none;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
}

.language-btn:hover {
    background: rgba(78, 115, 255, 0.08);
    color: var(--primary);
}

.language-btn img {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.language-btn:hover img {
    transform: scale(1.1);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 220px;
    padding: 1rem;
    z-index: 2000;
    display: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.language-dropdown.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.language-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    color: inherit;
}

.language-item:hover {
    background: rgba(78, 115, 255, 0.08);
    transform: translateX(5px);
}

.language-item img {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sky-light), var(--sky-medium));
    background-attachment: fixed;
}

.hero::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 115, 255, 0.1) 0%, rgba(78, 115, 255, 0) 70%);
    z-index: 0;
    animation: pulse 8s infinite ease-in-out;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -300px;
    left: -200px;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 115, 255, 0.05) 0%, rgba(78, 115, 255, 0) 70%);
    z-index: 0;
    animation: pulse 10s infinite ease-in-out 2s;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.3s;
}

.hero p.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.6s;
}

.hero-btns.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero-img {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    border: 10px solid white;
    z-index: 2;
    opacity: 0;
    transform: perspective(1000px) rotateY(-5deg) translateX(50px);
    transition: all 0.8s ease;
}

.hero-img.animate {
    opacity: 1;
    transform: perspective(1000px) rotateY(-5deg) translateX(0);
}

.hero-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-img:hover img {
    transform: scale(1.05);
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.highlight.animate {
    opacity: 1;
    transform: translateY(0);
}

.highlight:nth-child(1) {
    transition-delay: 0.9s;
}

.highlight:nth-child(2) {
    transition-delay: 1s;
}

.highlight i {
    color: var(--success);
    transition: transform 0.3s ease;
}

.highlight:hover i {
    transform: scale(1.2);
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Pulse animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

/* Section Styling */
.section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    transition: all 0.5s ease;
}

.section-title h2:hover::after {
    width: 120px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.section-title.animate p {
    opacity: 1;
    transform: translateY(0);
}

/* Pain Points */
.point-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

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

.point-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(78, 115, 255, 0.2);
}

.point-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    background: rgba(78, 115, 255, 0.08);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.point-card:hover i {
    background: var(--primary);
    color: white;
    transform: rotate(15deg) scale(1.1);
}

.point-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

.point-card:hover h3 {
    color: var(--primary);
}

/* Features */
.feature-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

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

.feature-card:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(78, 115, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(78, 115, 255, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(78, 115, 255, 0.15);
    transform: scale(1.1);
}

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

.feature-card:hover .feature-icon i {
    transform: scale(1.2);
}

/* Biometric Section */
.biometric-section {
    background: linear-gradient(135deg, #4e73ff, #3a5beb);
    color: white;
    padding: 5rem 0;
    border-radius: 24px;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.biometric-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

.biometric-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

.biometric-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.biometric-text {
    flex: 1;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.biometric-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.biometric-image {
    flex: 1;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.biometric-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.biometric-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.biometric-image:hover img {
    transform: scale(1.05);
}

.biometric-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    transform: rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite ease-in-out;
}

/* How it works */
.steps-container {
    position: relative;
}

.steps-line {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    z-index: 1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s ease, opacity 0.5s ease 1s;
}

.steps-line.animate {
    transform: scaleX(1);
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 1.5rem;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease;
}

.step-number.animate {
    opacity: 1;
    transform: scale(1);
}

.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(78, 115, 255, 0.3);
}

.step-content {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.step-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.step-card:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonials {
    background: rgba(240, 247, 255, 0.7);
    position: relative;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card .quote {
    font-size: 4rem;
    color: var(--primary-light);
    opacity: 0.1;
    line-height: 1;
    margin-bottom: -2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .quote {
    opacity: 0.2;
    color: var(--primary);
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .client-avatar {
    transform: rotate(15deg) scale(1.1);
}

.stars {
    color: var(--warning);
    margin: 0.5rem 0;
}

.stars i {
    transition: all 0.3s ease;
}

.testimonial-card:hover .stars i {
    transform: scale(1.2);
}

/* Pricing */
.pricing-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

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

/* Diagonal ribbon style */
.pricing-card.popular {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--primary);
    transform: scale(1.02);
    z-index: 1;
}

.pricing-card.popular::before {
    content: "MOST POPULAR";
    position: absolute;
    top: 15px;
    right: -35px;
    width: 150px;
    padding: 5px 0;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    transform: rotate(45deg);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 2;
    animation: diagonalPulse 2s infinite;
}

/* Diagonal pulse animation */
@keyframes diagonalPulse {
    0%, 100% {
        transform: rotate(35deg) scale(1);
        right: -35px;
    }
    50% {
        transform: rotate(35deg) scale(1.05);
        right: -30px;
    }
}

/* Enhanced hover effects */
.pricing-card.popular:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(78, 115, 255, 0.3);
}

.pricing-card.popular:hover::before {
    animation: diagonalPulse 1s infinite;
    background: var(--primary-dark);
}

.pricing-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.pricing-card:hover .price {
    color: var(--primary);
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-features li {
    transform: translateX(5px);
}

.pricing-features li i {
    color: var(--success);
    margin-right: 0.8rem;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-features li i {
    transform: scale(1.2);
}

/* FAQ */
.faq-item {
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--card-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

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

.faq-item:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-btn {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-btn:hover {
    background: rgba(78, 115, 255, 0.05);
}

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

.faq-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
    background: transparent;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 5rem 0;
    color: white;
    text-align: center;
    border-radius: 24px;
    margin: 0 1rem;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.cta h2.animate {
    opacity: 1;
    transform: translateY(0);
}

.cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.cta p.animate {
    opacity: 1;
    transform: translateY(0);
}

.btn-light {
    background: white;
    color: var(--primary);
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.4s;
}

.btn-light.animate {
    opacity: 1;
    transform: translateY(0);
}

.btn-light:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-light::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 115, 255, 0.1), transparent);
    transition: left 0.7s ease;
}

.btn-light:hover::after {
    left: 100%;
}

.cta-highlight {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.cta-highlight.animate {
    opacity: 1;
    transform: translateY(0);
}

.cta-highlight:nth-child(1) {
    transition-delay: 0.6s;
}

.cta-highlight:nth-child(2) {
    transition-delay: 0.7s;
}

/* Footer */
.footer {
    background: #f8fafc;
    color: #64748b;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.footer h5 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer h5:hover {
    color: var(--primary);
    transform: translateX(5px);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(78, 115, 255, 0.1);
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px) scale(1.1);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Floating elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(78, 115, 255, 0.05);
    z-index: 0;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(78, 115, 255, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--primary-dark);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .biometric-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .biometric-image {
        order: -1;
    }
    
    .steps-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-img {
        margin-top: 2rem;
        transform: none;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .cta {
        margin: 0 1rem;
        padding: 3rem 1rem;
    }
    
    .pricing-card.popular::before {
        top: 15px;
        right: -35px;
        font-size: 0.7rem;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Slider Styles */
.hero-img-slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.slider-container {
    position: relative;
    height: 525px;
}

.slider-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-container img.active {
    opacity: 1;
}

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

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

.dot.active {
    background: white;
}

/* Showcase Section */
.showcase-section {
    background-color: var(--sky-light);
    position: relative;
    overflow: hidden;
}

.showcase-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(78, 115, 255, 0.1) 0%, rgba(78, 115, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.showcase-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(78, 115, 255, 0.1) 0%, rgba(78, 115, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.showcase-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    border: 1px solid rgba(78, 115, 255, 0.1);
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(78, 115, 255, 0.2);
}

.showcase-card.mobile {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.showcase-card.mobile .showcase-content h3,
.showcase-card.mobile .showcase-content p,
.showcase-card.mobile .showcase-features li {
    color: white;
}

.showcase-card.mobile .badge {
    background: white;
    color: var(--primary);
}

.showcase-content {
    padding: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.showcase-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.showcase-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.showcase-card:hover .showcase-features li {
    transform: translateX(5px);
}

.showcase-features i {
    color: var(--success);
    margin-right: 0.8rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.showcase-card:hover .showcase-features i {
    transform: scale(1.2);
}

/* Device Frames */
.device-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.showcase-card:hover .device-frame {
    transform: perspective(1000px) rotateY(-5deg) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.device-frame.desktop {
    border-radius: 8px;
}

.device-frame.desktop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: #f1f3f4;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    z-index: 2;
}

.device-frame.desktop::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 15px;
    width: 10px;
    height: 10px;
    background: #ff5f56;
    border-radius: 50%;
    box-shadow: 20px 0 0 #ffbd2e, 40px 0 0 #27c93f;
    z-index: 3;
}

.device-frame.phone {
    position: relative;
    width: 280px;
    height: 520px;
    margin: 0 auto;
    border-radius: 40px;
    overflow: hidden;
}

.device-frame.phone::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
    background: #1a1a1a;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 2;
}

.device-frame.phone::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.1);
    z-index: 2;
}

.device-frame img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.device-frame.phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

.showcase-card:hover .device-frame img {
    transform: scale(1.05);
}

/* Floating mobile screenshots */
.floating-screenshots {
    position: relative;
    height: 100%;
}

.screenshot {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 2;
    width: 180px;
}

.screenshot-1 {
    top: 50px;
    right: 0;
    transform: rotate(10deg);
    animation: float 6s ease-in-out infinite;
}

.screenshot-2 {
    bottom: 50px;
    right: 30px;
    transform: rotate(-5deg);
    animation: float 8s ease-in-out infinite 1s;
}

.showcase-card:hover .screenshot-1 {
    transform: rotate(15deg) translateY(-10px);
}

.showcase-card:hover .screenshot-2 {
    transform: rotate(-10deg) translateY(10px);
}

/* App download buttons */
.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-btn {
    display: inline-block;
    transition: all 0.3s ease;
}

.app-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.app-btn img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .showcase-image {
        margin-top: 3rem;
    }
    
    .device-frame.phone {
        margin-bottom: 4rem;
    }
    
    .floating-screenshots {
        display: none;
    }
}

@media (max-width: 768px) {
    .showcase-card {
        padding: 2rem;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .app-btn img {
        height: 40px;
    }
}