@import url('/index.css');

/* Reset and base overrides */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
    overflow-x: hidden;
}

/* Main container styling */
.desktop-light-articleone-main {
    min-height: 100vh;
    background: #ffffff;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.articleone {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

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

.nav-links .text {
    color: #6b7280;
    font-weight: 500;
    transition: color 0.2s;
    cursor: pointer;
}

.nav-links .text:hover {
    color: #1e429f;
}

.buttons {
    background: #1e429f;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: background 0.2s;
}

.buttons:hover {
    background: #1d3a8c;
}

.buttons .text {
    color: white !important;
    font-weight: 600;
}

/* Main content container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1rem;
}

/* Hero section */
.ps-mobile-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    margin: -2rem -1.5rem 1rem -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.ps-download {
    flex: 1;
    max-width: 600px;
}

.ps-heading-description {
    margin-bottom: 1.5rem;
}

.ps-app-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.ps-app-supporting-text {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Download button */
.download-container {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #111827;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.download-container:hover {
    background: #374151;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.apple {
    width: 38px;
    height: 38px;
}

.download-text {
    display: flex;
    flex-direction: column;
}

.download-text1 {
    color: white;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1;
}

.download-text2 {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Carousel section */
.carousel-wrapper {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(248,250,252,0.8) 0%, rgba(248,250,252,0.3) 70%, rgba(248,250,252,0) 100%);
    border-radius: 2rem;
    padding: 1rem;
}

.ps-image-carousel {
    width: 267px;
    height: 580px;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.ps-app-image {
    width: 267px;
    height: 580px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.ps-app-image.active {
    opacity: 1;
}

.carousel-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.arrow-container {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.arrow-container:hover {
    background: #f3f4f6;
    transform: scale(1.1);
}

.arrow {
    width: 8px;
    height: 13px;
}

.ellipse {
    width: 12px;
    height: 12px;
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.ellipse.active,
.ellipse:hover {
    opacity: 1;
}

/* Features section */
.ps-info-container {
    padding: 4rem 0;
    text-align: center;
}

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

.feature-items {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.2s;
}

.feature-items:hover {
    transform: translateY(-4px);
}

.feature-svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
}

.feature-header {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.feature-text {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

/* About section */
.ps-about-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 0 3rem 0;
    text-align: center;
}

.ps-about-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ps-about-header p {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Pricing section */
.pricing-section {
    background: #f8fafc;
    padding: 4rem 0;
    margin: 0 -1.5rem 0 -1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.pricing-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    width: 100%;
}

.card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.2s;
    flex: 1;
    max-width: 350px;
}

.card:hover {
    border-color: #1e429f;
    transform: translateY(-4px);
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.price .duration {
    font-size: 1rem;
    font-weight: 400;
}

.card ul {
    list-style: disc;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.card li {
    padding: 0.2rem 0;
    color: #374151;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Download button in pricing */
.pricing-download-container {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #111827;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.pricing-download-container:hover {
    background: #374151;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #111827;
    color: #d1d5db;
    padding: 4rem 0 2rem;
}

.container6 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.socials-navlinks {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
    margin-bottom: 0;
    flex: 1;
    max-width: 700px;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.social-icon:hover {
    opacity: 1;
}

.nav-links1 {
    display: flex;
    gap: 4rem;
}

.column-1 {
    flex: 1;
}

.heading15 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.nav-links2 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.text19 {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.text19:hover {
    color: white;
}

/* Newsletter */
#mc_embed_signup {
    background: #1f2937;
    padding: 2rem;
    border-radius: 1rem;
    margin: 0;
    width: 350px;
    flex-shrink: 0;
}

#mc_embed_signup h2 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.indicates-required {
    color: #d1d5db;
    text-align: center;
    margin-bottom: 1.5rem;
}

.mc-field-group {
    margin-bottom: 1rem;
}

.mc-field-group label {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.mc-field-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.mc-notice {
    color: #d1d5db;
    font-size: 0.875rem;
    text-align: center;
    margin: 1rem 0;
}

.mc-notice a {
    color: #60a5fa;
}

.button {
    background: #1e429f;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: block;
    margin: 0 auto;
}

.button:hover {
    background: #1d3a8c;
}

.copyright {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 2rem;
    width: 100%;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .ps-mobile-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 6rem 1rem 3rem;
    }

    .ps-download {
        order: 2;
    }

    .carousel-wrapper {
        order: 1;
        flex: none;
    }

    .ps-app-heading {
        font-size: 2.5rem;
    }

    .ps-heading-description {
        margin-bottom: 1.5rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .ps-about-header h2 {
        font-size: 2rem;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .card {
        max-width: 100%;
        width: 100%;
    }

    .container6 {
        flex-direction: column;
        gap: 2rem;
    }
    
    .socials-navlinks {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    #mc_embed_signup {
        flex: none;
        width: 100%;
    }

    .social-links {
        grid-template-columns: repeat(6, 1fr);
        justify-items: center;
    }

    .nav-links1 {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 1200px) {
    .ps-mobile-container {
        gap: 3rem;
    }

    .ps-about-header {
        padding: 0 1rem;
    }

    .pricing-section {
        padding: 4rem 1rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}