:root {
    --primary: #FF5722;
    --primary-gradient: linear-gradient(to right, #FF8A65, #FF5722);
    --pink-purple: linear-gradient(135deg, #7b1fa2 0%, #f06292 100%);
    --teal: #00BFA5;
    --cyan: #00BCD4;
    --dark: #1A1A1A;
    --gray: #F5F5F7;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

.container-narrow {
    max-width: 900px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Header New */
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #2962FF;
}

.btn-download-top {
    background: #2962FF;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 4px 0 #1A237E;
    transition: all 0.2s;
}

.btn-download-top:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #1A237E;
}

/* Hero V2 */
.hero-v2 {
    padding: 120px 0;
    background: radial-gradient(circle at top right, #f8f9ff 0%, #ffffff 100%);
    overflow: hidden;
}

.flex-hero {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text-side {
    flex: 1;
    z-index: 2;
}

.brand-tag {
    display: block;
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.hero-main-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #333;
    margin-bottom: 25px;
}

.hero-main-title span {
    color: #333;
    position: relative;
    z-index: 1;
}

.hero-desc {
    font-size: 18px;
    color: #777;
    margin-bottom: 40px;
    max-width: 450px;
}

.official-badges {
    display: flex;
    gap: 15px;
}

.official-badges .badge-link img {
    height: 50px;
    transition: transform 0.2s;
}

.official-badges .badge-link:hover img {
    transform: scale(1.05);
}

.hero-visual-side {
    flex: 1.2;
    position: relative;
}

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

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 16px;
    margin-left: 30px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    display: flex;
    gap: 15px;
}

/* Buttons */
.btn {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--text-main);
}

.btn-white:hover {
    transform: scale(1.05);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(to bottom, #FFF, #FFFBF9);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 80px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
    opacity: 0.1;
    /* Light background petiid */
    position: absolute;
    top: 50px;
    left: 0;
    z-index: -1;
}

.hero-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-images {
    flex: 1.2;
    position: relative;
}

.main-hero-img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Section Common Styles */
.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Features Section */
.features {
    padding: 100px 0;
}

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

.feature-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

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

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 30px;
    position: relative;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: -25px;
    left: 30px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-muted);
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: var(--primary-gradient);
    color: var(--white);
}

.stats .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Banner Sections */
.banner-section {
    padding: 100px 0;
}

.flex-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.flex-row.reverse {
    flex-direction: row-reverse;
}

.banner-img {
    flex: 1;
}

.banner-img img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.banner-content {
    flex: 1.2;
}

.teal-banner {
    background-color: var(--teal);
}

.cyan-banner {
    background-color: var(--cyan);
}

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

.badge {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-content h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.banner-features {
    list-style: none;
    margin-bottom: 40px;
}

.banner-features li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Services Icons Section */
.services-icons {
    padding: 100px 0;
    background: var(--pink-purple);
}

.icons-group {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.icon-header {
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.icon-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    color: var(--white);
    transition: transform 0.3s;
}

.icon-item:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.icon-item i {
    font-size: 32px;
    display: block;
    margin-bottom: 15px;
}

.icon-item span {
    font-size: 14px;
    font-weight: 600;
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    text-align: center;
    background: #FFF8F6;
}

.final-cta h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.footer-logo {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
}

footer p {
    opacity: 0.6;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: var(--white);
    font-size: 24px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 1;
}

/* Store Badges Mini */
.store-badges-small {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.store-badge-mini {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 12px;
    background: var(--gray);
    transition: all 0.3s;
}

.store-badge-mini:hover {
    background: #FFEEE8;
    color: var(--primary);
}

/* Download Section Custom */
.download-section {
    padding: 80px 0;
    background: #fff;
}

.container-download {
    max-width: 1000px;
}

.download-card {
    background: var(--primary-gradient);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    color: white;
    box-shadow: 0 20px 40px rgba(255, 87, 34, 0.2);
}

.download-info {
    flex: 1.2;
}

.download-info h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.download-info p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.download-badges {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge-link img {
    height: 45px;
    transition: transform 0.3s;
}

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

.download-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 200px;
    height: 400px;
    background: #333;
    border-radius: 35px;
    padding: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-screen i {
    font-size: 60px;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 968px) {
    .download-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .download-badges {
        justify-content: center;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .banner-content h3 {
        font-size: 32px;
    }

    .nav-links {
        display: none;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .flex-hero {
        flex-direction: column;
        padding-top: 40px;
    }

    .hero-main-title {
        font-size: 42px;
    }

    .hero-text-side {
        text-align: center;
    }

    .official-badges {
        justify-content: center;
    }

    .hand-mockup {
        width: 280px;
        height: 520px;
    }
}

/* Phone Mockup V2 */
.hand-mockup {
    position: relative;
    width: 380px;
    height: 700px;
    margin: 0 auto;
    transform: rotate(5deg);
    transition: transform 0.5s ease;
}

.hand-mockup:hover {
    transform: rotate(0deg) scale(1.02);
}

.phone-mockup-v2 {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 50px;
    padding: 12px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
    border: 8px solid #333;
}

.app-screen-v2 {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}

.app-screen-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 87, 34, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.4);
}

/* Decor Dots */
.decor-dot {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.d1 {
    width: 40px;
    height: 40px;
    background: #FFD54F;
    top: 10%;
    right: 0;
    opacity: 0.6;
}

.d2 {
    width: 30px;
    height: 30px;
    background: #4DB6AC;
    bottom: 20%;
    left: -20px;
    opacity: 0.6;
}

.d3 {
    width: 50px;
    height: 50px;
    background: #9575CD;
    bottom: 10%;
    right: 20%;
    opacity: 0.4;
}

/* App Showcase Styles */
.app-showcase {
    padding: 100px 0;
    background: #fafafa;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.showcase-item {
    text-align: center;
}

.phone-mockup-mini {
    width: 220px;
    height: 440px;
    background: #000;
    border-radius: 35px;
    margin: 0 auto 30px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 5px solid #333;
    overflow: hidden;
}

.phone-mockup-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.showcase-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.showcase-item p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    text-align: left;
}

.footer-brand .footer-logo {
    margin-bottom: 20px;
}

.footer-brand p {
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-links {
        text-align: center;
    }
}