/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #0f172a;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s;
    white-space: nowrap;
    max-width: 100%;
}

.btn-primary {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    border: 2px solid #3b82f6;
    color: #3b82f6;
}

.btn-secondary:hover {
    background: #eff6ff;
}

.btn-white {
    background: white;
    color: #3b82f6;
}

.btn-white:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s;
    width: 100%;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .nav-content { height: 5rem; }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    flex-shrink: 0;
    min-width: 0;
}

.logo img {
    height: 2rem;
    width: 2rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .logo img {
        height: 3rem;
        width: 3rem;
    }
}

.logo span {
    font-size: 1.125rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 768px) {
    .logo span { font-size: 1.5rem; }
}

.nav-links {
    display: none;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-links { display: flex; }
}

.nav-links a {
    color: #475569;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3b82f6;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* Language switcher: hide on small phones, show on larger mobile */
.language-switcher {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 480px) {
    .language-switcher {
        display: flex;
    }
}

.globe-icon {
    color: #64748b;
    flex-shrink: 0;
}

.lang-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.3s;
    color: #64748b;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .lang-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }
}

.lang-btn.active {
    background: #3b82f6;
    color: white;
}

.lang-btn:hover {
    background: #f1f5f9;
}

.lang-btn.active:hover {
    background: #2563eb;
}

/* Hide download button in nav on very small screens */
.nav-right > .btn {
    display: none;
}

@media (min-width: 640px) {
    .nav-right > .btn {
        display: inline-flex;
    }
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding: 0.5rem;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle { display: none; }
}

.mobile-menu-toggle span {
    width: 1.5rem;
    height: 2px;
    background: #475569;
    transition: all 0.3s;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: #475569;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.mobile-menu a:hover {
    color: #3b82f6;
    background: #f8fafc;
}

.mobile-menu .btn {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #f8fafc 100%);
    padding-top: 5rem;
    padding-bottom: 4rem;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-section {
        padding-top: 6rem;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

.hero-blob-1 {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(191, 219, 254, 0.3);
}

.hero-blob-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(199, 210, 254, 0.3);
    animation-delay: 1s;
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.hero-left {
    text-align: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .hero-left { text-align: left; }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 400px) {
    .badge { font-size: 0.875rem; }
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #3b82f6;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    word-break: break-word;
}

@media (min-width: 400px) {
    .hero-title { font-size: 2.25rem; }
}

@media (min-width: 640px) {
    .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 3.75rem; }
}

.hero-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.75;
}

@media (min-width: 640px) {
    .hero-subtitle { font-size: 1.25rem; }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    width: 100%;
}

.hero-cta .btn {
    width: 100%;
}

@media (min-width: 480px) {
    .hero-cta {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .hero-cta .btn {
        width: auto;
        flex: 1;
        min-width: 0;
    }
}

@media (min-width: 1024px) {
    .hero-cta { justify-content: flex-start; }
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

@media (min-width: 1024px) {
    .trust-indicators { justify-content: flex-start; }
}

.trust-item {
    text-align: center;
}

.trust-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: #3b82f6;
}

.trust-label {
    font-size: 0.875rem;
    color: #64748b;
}

.hero-right {
    position: relative;
    width: 100%;
}

.hero-image-container {
    position: relative;
    width: 100%;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(40px);
    pointer-events: none;
}

.hero-decoration-1 {
    top: -2rem;
    right: -2rem;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, #60a5fa 0%, #6366f1 100%);
}

.hero-decoration-2 {
    bottom: -2rem;
    left: -2rem;
    width: 10rem;
    height: 10rem;
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
}

.hero-image-card {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

@media (min-width: 640px) {
    .hero-image-card { padding: 2rem; }
}

.hero-image-card img {
    width: 100%;
    height: auto;
    max-width: 28rem;
    margin: 0 auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25));
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 0.75rem;
    padding: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 400px) {
    .floating-card { padding: 0.75rem; }
}

.floating-card-1 {
    top: -0.75rem;
    left: -0.75rem;
}

.floating-card-2 {
    bottom: -0.75rem;
    right: -0.75rem;
    animation-delay: 1s;
}

.floating-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

@media (min-width: 400px) {
    .floating-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }
}

.floating-icon-success {
    background: #dcfce7;
    color: #16a34a;
}

.floating-icon-tests {
    background: #dbeafe;
    color: #3b82f6;
}

.floating-label {
    font-size: 0.65rem;
    color: #64748b;
    white-space: nowrap;
}

@media (min-width: 400px) {
    .floating-label { font-size: 0.75rem; }
}

.floating-value {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
}

@media (min-width: 400px) {
    .floating-value { font-size: 0.875rem; }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
    color: #94a3b8;
}

/* Section Styles */
section {
    padding: 4rem 0;
    width: 100%;
    overflow: hidden;
}

@media (min-width: 768px) {
    section { padding: 7rem 0; }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .section-header { margin-bottom: 4rem; }
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    word-break: break-word;
}

@media (min-width: 640px) {
    .section-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
    .section-title { font-size: 3rem; }
}

.section-subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .section-subtitle { font-size: 1.25rem; }
}

/* Features Section */
.features-section {
    background: white;
}

.features-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

@media (min-width: 640px) {
    .feature-card { padding: 1.5rem; }
}

.feature-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .feature-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .feature-title { font-size: 1.25rem; }
}

.feature-desc {
    color: #64748b;
    line-height: 1.75;
    font-size: 0.9rem;
}

@media (min-width: 640px) {
    .feature-desc { font-size: 1rem; }
}

/* Benefits Section */
.benefits-section {
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.benefit-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    background: white;
}

.benefit-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.benefit-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

@media (min-width: 640px) {
    .benefit-image { height: 14rem; }
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.benefit-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), transparent);
}

.benefit-icon-wrapper {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.benefit-icon-wrapper svg {
    color: #3b82f6;
}

.benefit-content {
    padding: 1.25rem;
}

@media (min-width: 640px) {
    .benefit-content { padding: 1.5rem; }
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .benefit-title { font-size: 1.25rem; }
}

.benefit-desc {
    color: #64748b;
    line-height: 1.75;
    font-size: 0.9rem;
}

@media (min-width: 640px) {
    .benefit-desc { font-size: 1rem; }
}

/* Screenshots Section */
.screenshots-section {
    background: linear-gradient(to bottom, white, #f8fafc);
    overflow: hidden;
}

.carousel-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 0.5rem;
}

.carousel-wrapper {
    position: relative;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .carousel-wrapper { padding: 3rem; }
}

.carousel-track-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.screenshot-card {
    background: white;
    border-radius: 1rem;
    padding: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 14rem;
    width: 100%;
}



@media (min-width: 640px) {
    .screenshot-card {
        padding: 1rem;
        max-width: 16rem;
    }
}

.screenshot-card img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    z-index: 10;
}

@media (min-width: 640px) {
    .carousel-btn {
        width: 3rem;
        height: 3rem;
    }
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
}

.carousel-dot.active {
    width: 2rem;
    border-radius: 0.25rem;
    background: white;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

@media (min-width: 640px) {
    .testimonial-card { padding: 1.5rem; }
}

.testimonial-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.testimonial-quote {
    width: 3rem;
    height: 3rem;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.testimonial-quote svg {
    color: #3b82f6;
    width: 1.5rem;
    height: 1.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating span {
    color: #fbbf24;
    font-size: 1.125rem;
}

.testimonial-text {
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 0.9rem;
}

@media (min-width: 640px) {
    .testimonial-text { font-size: 1rem; }
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.testimonial-author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: #0f172a;
}

.author-role {
    font-size: 0.875rem;
    color: #64748b;
}

/* FAQ Section */
.faq-section {
    background: #f8fafc;
}

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.faq-item {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: #0f172a;
    transition: color 0.3s;
    font-size: 0.9rem;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
}

.faq-question:hover {
    color: #3b82f6;
}

.faq-icon {
    color: currentColor;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.25rem 1rem;
    color: #64748b;
    line-height: 1.75;
    font-size: 0.9rem;
}

@media (min-width: 640px) {
    .faq-answer p {
        padding: 0 1.5rem 1.25rem;
        font-size: 1rem;
    }
}

/* Final CTA Section */
.final-cta-section {
    position: relative;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    overflow: hidden;
    width: 100%;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

.cta-blob-1 {
    top: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(255, 255, 255, 0.1);
}

.cta-blob-2 {
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(99, 102, 241, 0.2);
    animation-delay: 1s;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    width: 100%;
}

.cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: white;
}

@media (min-width: 640px) {
    .cta-icon {
        width: 5rem;
        height: 5rem;
        margin-bottom: 2rem;
    }
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    word-break: break-word;
}

@media (min-width: 640px) {
    .cta-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
    .cta-title { font-size: 3rem; }
}

.cta-subtitle {
    font-size: 1rem;
    color: #bfdbfe;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .cta-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

.cta-actions .btn {
    width: 100%;
    max-width: 20rem;
}

@media (min-width: 480px) {
    .cta-actions {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    .cta-actions .btn {
        width: auto;
    }
}

@media (min-width: 640px) {
    .cta-actions { margin-bottom: 3rem; }
}

.cta-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    white-space: nowrap;
}

.cta-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 640px) {
    .cta-trust {
        gap: 2rem;
        padding-top: 3rem;
    }
}

.cta-trust-item {
    text-align: center;
    min-width: 5rem;
}

.cta-trust-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.cta-trust-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

@media (min-width: 640px) {
    .cta-trust-value { font-size: 1.5rem; }
}

/* Footer */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    width: 100%;
    overflow: hidden;
}

.footer-content {
    display: grid;
    gap: 2rem;
    padding: 2.5rem 0;
}

@media (min-width: 640px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .footer-content {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img {
    height: 2.5rem;
    width: 2.5rem;
    flex-shrink: 0;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-desc {
    color: #94a3b8;
    max-width: 28rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    flex-shrink: 0;
}

.social-link:hover {
    background: #3b82f6;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid #1e293b;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-bottom-links {
        gap: 1.5rem;
        justify-content: flex-start;
    }
}

.footer-bottom-links a {
    color: #94a3b8;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    50% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-right {
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* RTL Support */
[dir="rtl"] .hero-left { text-align: right; }
[dir="rtl"] .logo { flex-direction: row-reverse; }
[dir="rtl"] .nav-links,
[dir="rtl"] .nav-right,
[dir="rtl"] .language-switcher,
[dir="rtl"] .hero-cta,
[dir="rtl"] .trust-indicators,
[dir="rtl"] .footer-social,
[dir="rtl"] .footer-bottom-links { flex-direction: row-reverse; }
[dir="rtl"] .btn { flex-direction: row-reverse; }
[dir="rtl"] .testimonial-author { flex-direction: row-reverse; }
[dir="rtl"] .faq-question { flex-direction: row-reverse; }
[dir="rtl"] .floating-card-1 { left: auto; right: -0.75rem; }
[dir="rtl"] .floating-card-2 { right: auto; left: -0.75rem; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #3b82f6; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #2563eb; }

/* Selection */
::selection { background: #3b82f6; color: white; }

/* Focus Styles */
button:focus-visible,
a:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

