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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    color: #646f77;
    font-family: proxima-nova, sans-serif;
    font-size: 14px;
    line-height: 20px;
    min-height: 100%;
    margin: 0;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(71, 178, 183, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(71, 178, 183, 0.8);
    }
}

@keyframes highlight {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(71, 178, 183, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(71, 178, 183, 0.8), 0 0 30px rgba(71, 178, 183, 0.6);
        background: linear-gradient(135deg, #47b2b7 0%, #3a9ba0 100%);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(71, 178, 183, 0.4);
    }
}

@keyframes slideCarousel {
    0%, 30% {
        transform: translateX(0);
    }
    33%, 63% {
        transform: translateX(-33.333%);
    }
    66%, 96% {
        transform: translateX(-66.666%);
    }
    100% {
        transform: translateX(0);
    }
}

/* ==================== HEADER ==================== */
header {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    color: #333;
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(71, 178, 183, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
    color: #47b2b7;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    color: #47b2b7;
    font-weight: bold;
    font-size: 2.2rem;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    font-weight: 500;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #47b2b7, #3a9ba0);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-btn {
    background: linear-gradient(135deg, #c55980 0%, #b74a72 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(167, 20, 113, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(244, 27, 164, 0.3);
}

.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(71, 178, 183, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 178, 183, 0.2);
    color: #333;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 0.9rem;
}

.lang-dropdown-btn:hover {
    background: rgba(71, 178, 183, 0.1);
    border-color: #47b2b7;
}

.lang-dropdown-btn .flag {
    font-size: 1.3rem;
    line-height: 1;
}

.lang-dropdown-btn .lang-code {
    min-width: 25px;
}

.lang-dropdown-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.lang-dropdown-btn.active i {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(71, 178, 183, 0.2);
    border-radius: 10px;
    padding: 0.5rem;
    min-width: 180px;
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: fadeInUp 0.3s ease;
}

.lang-dropdown-menu.show {
    display: flex;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    border: none;
    color: #333;
    padding: 0.7rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
    text-align: left;
    width: 100%;
}

.lang-option:hover {
    background: rgba(71, 178, 183, 0.1);
    color: #333;
}

.lang-option.active {
    background: linear-gradient(135deg, rgba(71, 178, 183, 0.15) 0%, rgba(58, 155, 160, 0.1) 100%);
    color: #333;
    border: 1px solid rgba(71, 178, 183, 0.3);
}

.lang-option .flag {
    font-size: 1.5rem;
    line-height: 1;
}

.lang-option .lang-name {
    font-weight: 500;
}

/* ==================== HERO SECTION ==================== */
.hero-left-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 875px;
    z-index: -2;
    background-size:cover;
    background-image: url('bg-left.svg');
    background-position: bottom right;
    background-repeat: no-repeat;
}

.side-shape-right {
    position: absolute;
    top: 40rem;
    right: 0;
    width: 277px;
    height: 345px;
    z-index: -2;
}

.side-shape-right svg {
    width: 100%;
    height: 100%;
}

.hero {
    padding: 8rem 0px 0rem 0px;
    position: relative;
    overflow: visible;
    z-index: 1;
    color: #fff;
}

.hero-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-left-column {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    animation: slideInLeft 0.8s ease 0.2s both;
}

.hero h1 {
    margin-bottom: 1.5rem;
    max-width: 426px;
    font-size: 45px;
    font-weight: 600;
    line-height: 48px;
    text-align: center;
}

.hero p {
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 26px;
    max-width: 492px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.store-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 220px;
    padding: 8px 0px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
}

.store-button:hover {
    background: linear-gradient(135deg, #58e0e8 0%, #4fedf6 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(71, 178, 183, 0.3);
}

.store-button.highlight-pulse {
    animation: highlight 1s ease-in-out;
}

.store-button i {
    font-size: 1.5rem;
}

.store-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.store-label {
    font-size: 0.7rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-name {
    font-size: 0.95rem;
    font-weight: 700;
}

.hero-image {
    height: 460px;
    position: relative;
    overflow: hidden;
}

.hero-img {
    width: fit-content;
    height: 460px;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    pointer-events: none;
}

#animatedSVG {
    animation: float 6s ease-in-out infinite;
}

/* ==================== FEATURES SECTION ==================== */
.features {
    padding: 7rem 2rem 10rem;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.features::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(71, 178, 183, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.features::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 150px;
    clip-path: ellipse(100% 100% at 50% 100%);
    z-index: -1;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a3a;
    font-weight: 800;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 178, 183, 0.15);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s;
    cursor: pointer;
    animation: fadeInUp 0.8s ease both;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:nth-child(1) { animation-delay: 0s; }
.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }
.feature-card:nth-child(5) { animation-delay: 0.4s; }
.feature-card:nth-child(6) { animation-delay: 0.5s; }
.feature-card:nth-child(7) { animation-delay: 0.6s; }
.feature-card:nth-child(8) { animation-delay: 0.7s; }

.feature-card:hover {
    background: #ffffff;
    border-color: #47b2b7;
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(71, 178, 183, 0.15);
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: linear-gradient(135deg, #47b2b7 0%, #3a9ba0 100%);
    color: white;
    font-size: 2.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a3a;
    font-weight: 700;
    line-height: 28px;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
    background: #f8f9fa;
    padding: 8rem 2rem 10rem;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.how-it-works::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 20px;
    background: #ffffff;
    clip-path: ellipse(100% 100% at 100% 100%);
    z-index: 2;
}

.how-it-works::after {
    content: '';
    position: absolute;
    top: 30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(58, 155, 160, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.steps-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.step-card {
    background: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 178, 183, 0.15);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s;
    animation: fadeInUp 0.8s ease both;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.step-card:nth-child(1) { animation-delay: 0s; }
.step-card:nth-child(2) { animation-delay: 0.15s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }

.step-card:hover {
    background: #ffffff;
    border-color: #47b2b7;
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(71, 178, 183, 0.15);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #47b2b7 0%, #3a9ba0 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(71, 178, 183, 0.3);
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a3a;
    font-weight: 700;
}

.step-card p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    background: #ffffff;
    padding: 8rem 2rem 11rem;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -5%;
    width: 450px;
    height: 150px;
    background: radial-gradient(circle, rgba(71, 178, 183, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 50px;
    background: #f8f9fa;
    clip-path: ellipse(100% 100% at 50% 100%);
    z-index: -1;
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 1;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.testimonials-grid::-webkit-scrollbar {
    height: 8px;
}

.testimonials-grid::-webkit-scrollbar-track {
    background: rgba(71, 178, 183, 0.1);
    border-radius: 10px;
}

.testimonials-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #47b2b7 0%, #3a9ba0 100%);
    border-radius: 10px;
}

.testimonials-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #58e0e8 0%, #4fedf6 100%);
}

.testimonial-card {
    background: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 178, 183, 0.15);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s;
    animation: fadeInUp 0.8s ease both;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    min-width: 350px;
    flex-shrink: 0;
}

.testimonial-card:nth-child(1) { animation-delay: 0s; }
.testimonial-card:nth-child(2) { animation-delay: 0.15s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:hover {
    background: #ffffff;
    border-color: #47b2b7;
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(71, 178, 183, 0.15);
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    font-size: 0.98rem;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(71, 178, 183, 0.15);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #47b2b7 0%, #3a9ba0 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info h4 {
    margin-bottom: 0.2rem;
    color: #1a1a3a;
    font-weight: 700;
}

.author-info p {
    color: #888;
    font-size: 0.85rem;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: #f8f9fa;
    padding: 4rem 2rem 12rem;
    color: #1a1a3a;
    text-align: center;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 150px;
    background: #1a1a3a;
    clip-path: ellipse(100% 100% at 50% 100%);
    z-index: 2;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(71, 178, 183, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    line-height: 3.3rem;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #47b2b7 0%, #3a9ba0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    line-height: 1.8;
}

.btn-primary {
    background: linear-gradient(135deg, #47b2b7 0%, #3a9ba0 100%);
    color: white;
    padding: 1.1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    box-shadow: 0 10px 30px rgba(71, 178, 183, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(71, 178, 183, 0.5);
}

/* ==================== SCROLL TO TOP BUTTON ==================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #47b2b7 0%, #3a9ba0 100%);
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(71, 178, 183, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
}

.scroll-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #58e0e8 0%, #4fedf6 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(71, 178, 183, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* ==================== FOOTER ==================== */
footer {
    background: #1a1a3a;
    color: white;
    padding: 8px 2rem 3.5rem;
    text-align: center;
    border-top: none;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.footer-section h4 {
    margin-bottom: 1.2rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #47b2b7;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #47b2b7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: linear-gradient(135deg, #47b2b7 0%, #3a9ba0 100%);
    border-color: #47b2b7;
    transform: translateY(-5px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-left-column {
        padding: 30px 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 2.7rem;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.6rem;
    }

    .hero-img {
        height: 300px;
    }
}

@media (max-width: 990px) {
    .hero {
        padding: 8rem 0px 0px 0px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-left-background {
        background-image: url('bg-left.svg');
        height: 36rem;
        width: 100%;
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: auto;
    }
}

@media (max-width: 768px) {
    .hero-left-column {
        padding: 20px 1rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 2.2rem;
        max-width: 100%;
        text-align: center;
    }

    .hero h1::after {
        margin: 1rem auto 0;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.5rem;
        max-width: 100%;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .store-button {
        max-width: 300px;
        justify-content: center;
    }

    .hero-image {
        height: auto;
    }

    .hero-img {
        height: auto;
        max-height: 300px;
    }

    .nav-links {
        display: none;
    }

    nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .lang-switcher {
        margin-left: auto;
    }

    .lang-dropdown-menu {
        right: 0;
        left: auto;
    }

    .cta-btn {
        display: none;
    }

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

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

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

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        padding: 1rem 1rem;
    }

    .testimonial-card {
        min-width: 280px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
        z-index: 1001;
        margin-right: 0;
    }

    .side-shape-right {
        width: 180px;
        height: 225px;
        top: 35rem;
    }
}

@media (max-width: 520px) {
    .store-button {
        width: 60px;
        height: 60px;
        border-width: 0px;
    }
    .hero-buttons {
        gap: 2rem;
    }
    .store-text {
        display: none;
    }
    .store-button i {
        font-size: 3rem;
    }
    .store-button {
        flex-direction: column;
    }
    .store-label {
        display: none;
    }
    .store-name {
        display: none;
    }
    .side-shape-right {
        width: 140px;
        height: 175px;
        top: 32rem;
    }
    .scroll-to-top {
        bottom: 15px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
}

/* ==================== MODAL ==================== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin: auto;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    color: #6c757d;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover,
.modal-close:focus {
    color: #212529;
    background-color: rgba(0, 0, 0, 0.05);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    text-align: center;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.modal-buttons .store-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
}

.modal-buttons .store-button.google-play,
.modal-buttons .store-button.app-store {
    background: linear-gradient(135deg, #47b2b7 0%, #3a9ba0 100%);
    color: white;
    border-color: transparent;
}

.modal-buttons .store-button.google-play:hover,
.modal-buttons .store-button.app-store:hover {
    background: linear-gradient(135deg, #58e0e8 0%, #4fedf6 100%);
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@media (max-width: 768px) {
    .modal-content {
        padding: 2rem 1.5rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-subtitle {
        font-size: 1rem;
    }
}

.download-little-wallet-now {
    line-height: 1.5rem;
}