/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #46B9A2;
    --primary-dark: #3a9a87;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn--primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 16px 32px;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
}

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

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

.nav__logo h2 {
    color: var(--primary-color);
    font-weight: 800;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--primary-color);
}

.nav__cta {
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    font-size: 1rem;
}

.nav__cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav__toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__title {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero__subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero__description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero__cta {
    animation: fadeInUp 1s ease 0.6s both;
}

.hero__visual {
    display: flex;
    justify-content: center;
    animation: fadeInRight 1s ease 0.8s both;
}

/* Hero Stats */
.hero__stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.5s both;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat__label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Hero Benefits */
.hero__benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.5s both;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.benefit i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.app-mockup {
    position: relative;
    width: 280px;
    height: 560px;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 30px;
    padding: 8px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 22px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.app-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 6px;
}

.workout-card {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.workout-card h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.workout-card p {
    font-size: 0.8rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    animation: progress 2s ease-in-out;
}

/* Problem/Solution Section */
.problem-solution {
    padding: 80px 0;
    background: var(--bg-light);
}

.section__title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-weight: 800;
}

.problem-solution__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-solution__subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.problem-solution__items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-solution__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.problem-solution__item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.problem-solution__item.problem {
    border-left: 4px solid #ef4444;
}

.problem-solution__item.solution {
    border-left: 4px solid var(--primary-color);
}

.problem-solution__item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.problem-solution__item.problem i {
    color: #ef4444;
}

.problem-solution__item.solution i {
    color: var(--primary-color);
}

.problem-solution__item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* ROI Section */
.roi-section {
    padding: 80px 0;
    background: white;
}

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

.roi__card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.roi__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.roi__icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.roi__icon i {
    font-size: 1.5rem;
    color: white;
}

.roi__card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.roi__calculation {
    text-align: left;
}

.roi__calculation p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.roi__highlight {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    margin-top: 1rem !important;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-light);
}

.steps__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step__number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1.5rem;
    position: relative;
}

.step__number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: rgba(70, 185, 162, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.step__title {
    margin: 0 0.1rem 1rem;
    color: var(--text-dark);
    font-size: 1.2rem;
    max-width: 220px;
    text-align: center;
    word-break: keep-all;
    hyphens: auto;
    line-height: 1.2;
}
@media (max-width: 600px) {
    .step__title {
        font-size: 1.1rem;
        max-width: 90vw;
    }
}

.step__description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.step__icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

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

.testimonial {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial__content {
    margin-bottom: 1.5rem;
}

.testimonial__content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial__avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.testimonial__info h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial__info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.testimonial__results {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: white;
}

.cta__title {
    margin-bottom: 1rem;
    color: white;
}

.cta__description {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta__button {
    background: white;
    color: var(--primary-color);
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.cta__button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #f8fafc;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq__grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq__item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.faq__item:hover {
    box-shadow: var(--shadow-lg);
}

.faq__question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq__question:hover {
    background: var(--bg-light);
}

.faq__question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.faq__question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq__answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq__answer p {
    margin: 0;
    padding-bottom: 1.5rem;
    color: var(--text-light);
}

.faq__item.active .faq__answer {
    max-height: 200px;
}

.faq__item.active .faq__question i {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__section h3,
.footer__section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer__section p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer__social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer__social a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer__section ul {
    list-style: none;
}

.footer__section ul li {
    margin-bottom: 0.5rem;
}

.footer__section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer__bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer__bottom p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer__disclaimer {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal__header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal__header h3 {
    margin: 0;
    color: var(--text-dark);
}

.modal__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.modal__close:hover {
    color: var(--text-dark);
}

.modal__body {
    padding: 1.5rem;
}

.modal__body p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav__menu {
        display: none;
    }

    .nav__toggle {
        display: block;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .problem-solution__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    .phone-frame {
        width: 240px;
        height: 480px;
    }

    .hero__stats {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .hero {
        padding: 100px 0 60px;
    }

    .problem-solution,
    .how-it-works,
    .testimonials,
    .cta,
    .faq {
        padding: 60px 0;
    }

    .btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .hero__stats {
        gap: 1.5rem;
    }

    .stat__number {
        font-size: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles */
.btn:focus,
.nav__link:focus,
.faq__question:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Progress Animation */
@keyframes progress {
    0% { width: 0%; }
    100% { width: 65%; }
}

.progress {
    animation: progress 2s ease-in-out;
}

/* App Overview Section */
.app-overview {
    padding: 80px 0;
    background: white;
}

.section__subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.app-features {
    margin-bottom: 3.5rem;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature__icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.feature__icon i {
    font-size: 2rem;
    color: white;
}

.feature h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Workout Plans Section */
.workout-plans {
    padding: 80px 0;
    background: var(--bg-light);
}

.section__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section__split.reverse {
    direction: rtl;
}

.section__split.reverse > * {
    direction: ltr;
}

.section__content h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section__content p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.plan-types {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.plan-type {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.plan-type:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.plan-type h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.plan-type h4 i {
    color: var(--primary-color);
}

.plan-type p {
    margin: 0;
    color: var(--text-light);
}

.app-screenshot {
    display: flex;
    justify-content: center;
}

.screenshot-frame {
    width: 300px;
    height: 400px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 6px;
    box-shadow: var(--shadow-lg);
}

.screenshot-content {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.workout-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.workout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.workout-item.active {
    background: var(--primary-color);
    color: white;
}

.workout-name {
    font-weight: 500;
}

.workout-duration {
    font-size: 0.9rem;
    color: var(--text-light);
}

.nutrition-card {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.nutrition-card h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1rem;
}

.meal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.meal-item:last-child {
    border-bottom: none;
}

.meal-name {
    font-weight: 500;
    color: var(--text-dark);
}

.meal-calories {
    font-size: 0.9rem;
    color: var(--text-light);
}

.nutrition-section {
    padding: 80px 0;
    background: white;
}

.nutrition-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nutrition-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.nutrition-feature:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.nutrition-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.nutrition-feature:hover i {
    transform: scale(1.1);
}

.brand-customization {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.customization__item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.customization__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.customization__icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.customization__icon i {
    font-size: 2rem;
    color: white;
}

.customization__item h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.customization__item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Engagement Section */
.engagement-section {
    padding: 80px 0;
    background: white;
}

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

.engagement__item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.engagement__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.engagement__icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.engagement__icon i {
    font-size: 2rem;
    color: white;
}

.engagement__item h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.engagement__item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.guarantee__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee__icon {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.guarantee__icon i {
    font-size: 3rem;
    color: white;
}

.guarantee__content h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.guarantee__content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.guarantee__features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.guarantee__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.guarantee__feature i {
    color: var(--primary-color);
}

/* Pricing ROI */
.pricing__roi {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.pricing__roi p {
    text-align: center;
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .section__split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section__split.reverse {
        direction: ltr;
    }

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

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

    .screenshot-frame {
        width: 250px;
        height: 350px;
    }

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

    .guarantee__features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

.partnership-model {
    padding: 80px 0;
    background: white;
}

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

.partnership__item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.partnership__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.partnership__icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.partnership__icon i {
    font-size: 2rem;
    color: white;
}

.partnership__item h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.partnership__item p {
    color: var(--text-light);
    line-height: 1.6;
}

.onboarding {
    padding: 80px 0;
    background: var(--bg-light);
}

.onboarding__timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}

.onboarding__timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline__item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.timeline__number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 1;
}

.timeline__content {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.timeline__content h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.timeline__content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.timeline__duration {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing {
    padding: 80px 0;
    background: white;
}

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

.pricing__tier {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.pricing__tier:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing__tier.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing__badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing__header h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing__price {
    margin-bottom: 1rem;
}

.pricing__price .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.pricing__price .period {
    font-size: 1.1rem;
    color: var(--text-light);
}

.pricing__header p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.pricing__features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing__feature i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.pricing__feature span {
    font-size: 1rem;
}

.pricing__note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.pricing__note p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

.support {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.support__item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.support__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.support__icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.support__icon i {
    font-size: 2rem;
    color: white;
}

.support__item h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.support__item p {
    color: var(--text-light);
    line-height: 1.6;
}

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

    .service-category__header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .service-category__details {
        grid-template-columns: 1fr;
    }

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

    .result__stats {
        flex-direction: column;
        gap: 1rem;
    }

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

    .pricing__tier.featured {
        transform: none;
    }
}

/* App Store Rating Card */
.app-rating {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1.5px 6px rgba(0,0,0,0.04);
    padding: 1.2rem 2rem;
    margin-left: 2rem;
    min-width: 320px;
    max-width: 400px;
    border: 1px solid #e5e7eb;
    gap: 1.2rem;
    transition: box-shadow 0.2s;
}
.app-rating:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 3px 12px rgba(0,0,0,0.06);
}
.appstore-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}
.app-rating__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}
.app-rating__stars {
    color: #FFD700;
    font-size: 1.6rem;
    letter-spacing: 0.08rem;
    margin-bottom: 0.1rem;
}
.app-rating__score {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.1rem;
}
.app-rating__label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}
@media (max-width: 900px) {
    .app-rating {
        margin-left: 0;
        margin-top: 2rem;
        min-width: 0;
        max-width: 100vw;
        padding: 1rem 1.2rem;
    }
    .app-rating__info {
        align-items: flex-start;
    }
}

.homepage-screenshot {
    max-width: 320px;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 3px 12px rgba(0,0,0,0.06);
    margin-right: 2rem;
    background: #fff;
    display: block;
}
@media (max-width: 900px) {
    .homepage-screenshot {
        margin: 0 auto 2rem auto;
        max-width: 90vw;
    }
}

.appstore-badge {
    margin-top: 1rem;
    display: block;
    max-width: 260px;
    width: 100%;
    height: auto;
}

/* Remove white space between CTA and footer */
.cta + section, .cta + .faq, .cta + .faq-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* If there's a global section spacing, reduce it for the last section before footer */
.faq, .faq-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Complete Services Section */
.complete-services {
    padding: 80px 0;
    background: var(--bg-light);
}

.complete-services .section__subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service__category {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service__category:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service__category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
}

.service__category-title i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service__items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.service__item:last-child {
    border-bottom: none;
}

.service__item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.service__item-content h4 {
    margin: 0 0 0.25rem 0;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
}

.service__item-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .services__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service__category {
        padding: 1.5rem;
    }
    
    .service__category-title {
        font-size: 1.1rem;
    }
    
    .service__item {
        padding: 0.5rem 0;
    }
} 

/* Language Switcher */
.nav__language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    min-width: 40px;
}

.lang-btn:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.lang-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

@media (max-width: 768px) {
    .nav__language {
        margin-right: 0.5rem;
    }
    
    .lang-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        min-width: 35px;
    }
}

@media (max-width: 480px) {
    .nav__language {
        margin-right: 0.25rem;
    }
    
    .lang-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.75rem;
        min-width: 30px;
    }
} 