:root {
    --primary-color: rgb(81, 88, 130);
    --primary-dark: rgb(70, 75, 100);
    --accent-color: #f6a45c;
    --accent-light: #ffc285;
    --text-color: #333;
    --light-text: #f8f8f8;
    --background-color: #f9f9f9;
    --card-color: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Header & Navigation */
header {
    background: var(--gradient);
    color: var(--light-text);
    padding: 0;
    overflow: hidden;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

.nav-links li a:hover {
    color: #8E44AD;
}

.language-switch {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.language-switch a {
    font-size: 0.9rem;
    padding: 2px 5px;
    transition: all 0.3s ease;
}

.language-switch a.active {
    font-weight: 600;
    color: #8E44AD;
}

.language-switch span {
    color: #999;
    margin: 0 2px;
}

.cta-button {
    background-color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #e8973f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--light-text);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 5% 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    min-height: 550px;
    overflow: hidden;
}

.hero-content {
    width: 55%;
    padding-bottom: 3rem;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
}

.stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    letter-spacing: 2px;
}

.count {
    font-weight: 500;
}

.users {
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
}

.users:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.4);
}


.tagline {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 90%;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.primary-button, .secondary-button {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1.05rem;
}

.primary-button {
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 4px 15px rgba(246, 164, 92, 0.4);
}

.primary-button:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 164, 92, 0.5);
}

.secondary-button {
    border: 2px solid white;
    color: white;
}

.secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52%;
    max-width: 600px;
    z-index: 1;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    padding: 0;
}

.hero-image img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}



/* Sections */
section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--card-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.4rem;
}

/* Benefits Section */
.benefits {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.benefits h2:after {
    background: var(--accent-color);
}

.benefits-intro {
    text-align: center;
    margin: 0 auto 3rem;
    max-width: 800px;
    font-size: 1.2rem;
    opacity: 0.9;
}

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

.benefit {
    padding: 1.5rem;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.benefit:hover {
    transform: translateY(-5px);
}

.benefit h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

/* Pricing Section */
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.pricing-card {
    background-color: var(--card-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 280px;
    flex: 1;
    max-width: 350px;
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    opacity: 0.7;
    font-weight: 400;
}

.save {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-card ul {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-card li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card li:before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.pricing-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}

.pricing-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Download Section */
.background-image-container {
    width: 100%;
    overflow: hidden;
    display: block;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.full-width-background {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}

.download {
    text-align: center;
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 6rem 5% 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.download p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.app-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 170px;
}

.apple-icon {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.app-button span {
    line-height: 1.1;
    margin-right: 0;
}

.app-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Footer */
footer {
    background-color: #464c7a;
    color: var(--light-text);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo p:first-child {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tagline {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    flex: 2;
    gap: 2rem;
    justify-content: space-between;
}

.footer-column h4 {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--accent-color);
}

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

.footer-column a {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Create images directory */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding-bottom: 0;
    }

    .hero-content {
        width: 100%;
        margin-bottom: 2rem;
        padding-bottom: 0;
    }

    .hero p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        position: relative;
        width: 100%;
        max-width: none;
        right: 0;
        transform: none;
        margin-top: 2rem;
    }

    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .users:before {
        display: none;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s;
        z-index: 1000;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 350px;
    }

    .pricing-card.featured {
        transform: scale(1);
        order: -1;
    }
}
.section-heading {
    text-align: center;
    padding: 3rem 5% 1rem;
}

.feature-section {
    padding: 4rem 0;
    background-color: var(--background-color);
    overflow: hidden;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    margin: 0;
    left: 0;
    right: 0;
}

.feature-section.alt-section {
    background-color: #f2f2f7;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
}

.feature-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

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

.feature-text {
    flex: 1;
    max-width: 50%;
}

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-list {
    margin-top: 1.5rem;
    padding-left: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.75rem;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    max-width: 300px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

@media (max-width: 900px) {
    .feature-content, 
    .feature-content.reverse {
        flex-direction: column-reverse;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .feature-text {
        max-width: 100%;
    }
    
    .feature-section {
        padding: 3rem 0;
    }
    
    .phone-mockup {
        max-width: 85%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .feature-content {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .feature-section {
        padding: 2.5rem 0;
    }
    
    .feature-text h3 {
        font-size: 1.4rem;
    }
    
    .feature-list li {
        margin-bottom: 0.5rem;
    }
    
    .feature-image {
        margin: 0 -1rem;
    }
}