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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden
}

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

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

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

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.05)
    }
}

header {
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: fadeInUp .5s ease-out
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0
}

.logo img {
    max-width: 180px;
    height: auto;
    transition: transform .3s
}

.logo img:hover {
    transform: scale(1.05)
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f97316;
    transition: width .3s
}

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

.nav-links a:hover {
    color: #f97316
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all .3s;
    border-radius: 2px
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px)
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px)
}

.btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all .3s;
    font-size: 15px;
    position: relative;
    overflow: hidden
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    transition: left .5s
}

.btn:hover::before {
    left: 100%
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, .4)
}

.btn-outline {
    background: transparent;
    border: 2px solid #f97316;
    color: #f97316
}

.btn-outline:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff
}

.hero {
    background: linear-gradient(135deg, #fef3e2 0%, #fff4e6 100%);
    color: #1e293b;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden
}

.hero::before, .hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0
}

.hero::before {
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, .1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite
}

.hero::after {
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, .08) 0%, transparent 70%);
    animation: pulse 5s ease-in-out infinite
}

.hero-content {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1
}

.hero-text {
    opacity: 0;
    animation: fadeInLeft 1s ease-out .2s forwards
}

.hero-image {
    opacity: 0;
    animation: fadeInRight 1s ease-out .4s forwards;
    text-align: center
}

.hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 20px;
    line-height: 1.2;
    color: #1e293b;
    font-weight: 800
}

.hero h1 span {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero p {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 35px;
    color: #475569;
    line-height: 1.8
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 25px;
    color: #f97316;
    font-weight: 600;
    border: 2px solid #fed7aa;
    box-shadow: 0 4px 15px rgba(249, 115, 22, .15);
    animation: pulse 2s ease-in-out infinite
}

.badge::before {
    content: '🎁';
    font-size: 18px
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .15))
}

section {
    padding: 100px 0
}

.section-title {
    text-align: center;
    margin-bottom: 70px
}

.section-title h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
    color: #1e293b;
    font-weight: 800;
    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, #f97316, #ea580c);
    border-radius: 2px
}

.section-title p {
    font-size: clamp(16px, 2vw, 18px);
    color: #64748b;
    max-width: 600px;
    margin: 25px auto 0
}

.playstore-promo {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: #fff;
    padding: 25px;
    border-radius: 16px;
    margin: 30px auto;
    max-width: 700px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(249, 115, 22, .3)
}

.playstore-promo-text {
    flex: 1;
    min-width: 250px;
    text-align: center
}

.playstore-promo-text p:first-child {
    margin: 0;
    font-size: 18px;
    font-weight: 700
}

.playstore-promo-text p:last-child {
    margin: 8px 0 0 0;
    font-size: 15px;
    opacity: .95
}

.playstore-badge {
    transition: transform .3s
}

.playstore-badge:hover {
    transform: scale(1.05)
}

.playstore-badge img {
    height: 55px;
    width: auto
}

.pricing-grid, .features-grid, .testimonials-grid {
    display: grid;
    gap: 30px;
    margin-top: 50px
}

.pricing-grid {
    grid-template-columns:repeat(auto-fit, minmax(min(100%, 280px), 1fr))
}

.features-grid {
    grid-template-columns:repeat(auto-fit, minmax(min(100%, 300px), 1fr))
}

.testimonials-grid {
    grid-template-columns:repeat(auto-fit, minmax(min(100%, 320px), 1fr))
}

.pricing-card, .testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    border: 2px solid transparent
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(249, 115, 22, .25);
    border-color: #f97316
}

.pricing-card.featured {
    border: 3px solid #f97316;
    background: linear-gradient(135deg, #fff 0%, #fef3e2 100%);
    transform: scale(1.05)
}

.pricing-card.featured:hover {
    transform: translateY(-12px) scale(1.07)
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(249, 115, 22, .4)
}

.pricing-card h3 {
    font-size: clamp(22px, 3vw, 26px);
    margin-bottom: 10px;
    color: #1e293b;
    font-weight: 700
}

.pricing-card .subtitle {
    color: #64748b;
    margin-bottom: 25px;
    font-size: 15px
}

.price {
    font-size: clamp(40px, 5vw, 52px);
    font-weight: 800;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 25px 0
}

.price span {
    font-size: 18px;
    color: #64748b
}

.features {
    list-style: none;
    margin: 30px 0
}

.features li {
    padding: 14px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    transition: all .3s
}

.features li:hover {
    padding-left: 5px;
    color: #f97316
}

.features li:last-child {
    border-bottom: none
}

.features li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.feature-box {
    text-align: center;
    padding: 40px 25px;
    background: #fff;
    border-radius: 20px;
    transition: all .4s;
    border: 2px solid transparent
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, .15);
    border-color: #fed7aa
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    transition: all .4s;
    box-shadow: 0 8px 25px rgba(249, 115, 22, .3)
}

.feature-box:hover .feature-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 12px 35px rgba(249, 115, 22, .5)
}

.feature-box h3 {
    font-size: clamp(18px, 2.5vw, 22px);
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 700
}

.feature-box p {
    color: #64748b;
    line-height: 1.8;
    font-size: 15px
}

.testimonial-card {
    position: relative;
    overflow: hidden
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 100px;
    color: #fed7aa;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: .3
}

.testimonial-text {
    font-style: italic;
    color: #475569;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 15px;
    position: relative;
    z-index: 1
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(249, 115, 22, .3)
}

.author-info h4 {
    font-size: 16px;
    color: #1e293b;
    font-weight: 600
}

.author-info p {
    font-size: 14px;
    color: #64748b
}

.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, .1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite
}

.cta h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    z-index: 1
}

.cta p {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 35px;
    opacity: .95;
    position: relative;
    z-index: 1
}

.cta .btn {
    background: #fff;
    color: #f97316;
    font-size: 17px;
    padding: 15px 40px
}

.cta .btn:hover {
    background: #f8fafc;
    transform: translateY(-3px) scale(1.05)
}

.clients-group {
    margin-bottom: 60px
}

.clients-subtitle {
    text-align: center;
    color: #f97316;
    font-size: 24px;
    margin-bottom: 35px;
    font-weight: 700
}

.clients-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 15px 5px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch
}

.clients-carousel::-webkit-scrollbar {
    height: 8px
}

.clients-carousel::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 999px
}

.clients-carousel::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #f97316, #ea580c);
    border-radius: 999px
}

.client-card {
    flex: 0 0 280px;
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, .08);
    border: 2px solid #f1f5f9;
    scroll-snap-align: start;
    text-align: center;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    white-space: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px
}

.client-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(249, 115, 22, .2);
    border-color: #fed7aa
}

.client-logo {
    width: 120px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
    background: #f8fafc;
    padding: 10px;
    transition: all .3s
}

.client-card:hover .client-logo {
    transform: scale(1.1)
}

.client-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 15px;
    line-height: 1.4
}

.clients-more {
    text-align: center;
    color: #64748b;
    margin-top: 40px;
    font-style: italic;
    font-size: 16px
}

footer {
    background: #0f172a;
    color: #fff;
    padding: 80px 0 30px
}

.footer-content {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 50px;
    margin-bottom: 50px
}

.footer-section h3 {
    margin-bottom: 25px;
    font-size: 19px;
    font-weight: 700;
    color: #f97316
}

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

.footer-section ul li {
    margin-bottom: 12px
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all .3s;
    font-size: 15px
}

.footer-section a:hover {
    color: #fff;
    padding-left: 5px
}

.footer-section p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.7
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid #334155;
    color: #94a3b8
}

.bg-gray {
    background: #f8fafc
}

.bg-white {
    background: #fff
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: .3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, .05);
        padding: 20px 0;
        gap: 0
    }

    .nav-links.active {
        left: 0
    }

    .nav-links li {
        width: 100%;
        padding: 15px 0
    }

    .menu-toggle {
        display: flex
    }

    .hero-content {
        grid-template-columns:1fr;
        text-align: center;
        gap: 40px
    }

    .hero-buttons {
        justify-content: center
    }

    section {
        padding: 70px 0
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 15px
    }

    .btn {
        padding: 11px 22px;
        font-size: 14px
    }

    .hero {
        padding: 70px 0 90px
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%
    }

    .hero-buttons .btn {
        width: 100%
    }

    .pricing-card, .testimonial-card {
        padding: 30px 20px
    }

    .section-title {
        margin-bottom: 50px
    }

    .features-grid, .pricing-grid, .testimonials-grid {
        gap: 20px
    }

    .footer-content {
        gap: 35px
    }

    .playstore-promo {
        padding: 20px
    }
}
