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

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.5;
}

/* Navigation */
.nav {
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0.75rem;
    z-index: 1000;
    border-bottom: 1px solid #fafafa;
}

.nav-logo {
    width: 40px;
    height: 40px;
}

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

.nav-link {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

.login-button {
    border: 1px solid #f5f5f5;
    padding: 0.5rem 1rem;
    color: #1f2937;
    border-radius: 9999px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}

/* Hero section */
.hero {
    min-height: calc(50vh);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    margin-top: 100px;
}

.hero-content {
    max-width: 900px;
    text-align: center;
}

.hero-title {
    width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 500;
}

/* Card section */
.card-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.card-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0 1rem;
    position: relative;
}

.card {
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 0.50rem;
}

.card-image {
    width: 300px;
    height: 160px;
    object-fit: cover;
    border: 2px solid #dfdfdf;
    border-radius: .75rem;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #181818;
    margin-top: 0.5rem;
}

.card-description {
    font-size: 15px;
    color: #737373;
    line-height: 1.5;
}

/* Arrow elements */
.arrow {
    position: absolute;
    width: 40px;
    height: 15px;
    pointer-events: none;
}

.arrow-1 {
    left: calc(25% - 15px);
    bottom: 130px;
}

.arrow-2 {
    left: calc(50% - 35px);
    top: -20px;
}

.arrow-3 {
    left: calc(75% - 50px);
    bottom: 135px;
}

/* Info section */
.info-section {
    background-color: #f9f9f9;
    padding: 4rem 2rem;
}

.info-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(300px, 1fr) 2fr;
    gap: 3rem;
    align-items: center;
}

.info-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    line-height: 1.4;
}

.info-text {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
}

/* Meet Chris section */
.meet-chris-section {
    padding: 6rem 2rem;
}

.meet-chris-container {
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.meet-chris-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.meet-chris-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
}

.meet-chris-text {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
}

.meet-chris-image-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.meet-chris-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(5deg);
    border-radius: 12px;
    border: 2px solid #dfdfdf;
}

/* Questions section */
.questions-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

.questions-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.questions-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
}

.questions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
}

.question-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.question-title {
    font-size: 17px;
    font-weight: 600;
    color: #181818;
}

.question-answer {
    font-size: 15px;
    color: #737373;
    line-height: 1.5;
}

/* Screenshots section */
.screenshots-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

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

.screenshots-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
}

.screenshots-image {
    width: 600px;
    max-width: 100%;
    height: auto;
    margin-bottom: 4rem;
}

.screenshots-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0 1rem;
}

.screenshots-card {
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.screenshots-card-title {
    font-size: 17px;
    font-weight: 600;
    color: #181818;
    text-align: left;
}

.screenshots-card-description {
    font-size: 15px;
    color: #737373;
    line-height: 1.5;
    text-align: left;
}

/* Testimonial Grid section */
/* Testimonial Grid section */
.testimonial-grid-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

.testimonial-grid-section .questions-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-grid-section .questions-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
}

.testimonial-grid-section .questions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
}

.testimonial-grid-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid #f0f0f0;
}

.testimonial-text {
    color: #737373;
    font-size: 15px;
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.testimonial-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 15px;
    font-weight: 500;
    color: #181818;
}
/* Pricing table */

.pricing-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.pricing-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 3rem;
}

.pricing-card {
    flex: 1;
    width: 340px;
    padding: 2rem;
    position: relative;
}

.free-plan {
    border-radius: 1.25rem 0 0 1.25rem;
}

.pro-plan {
    border-radius: 1.5rem;
    padding: 3rem 2rem;
}

.free-plan {
    background-color: black;
    color: white;
}

.pro-plan {
    background: linear-gradient(135deg, #2a62eb 0%, #8f36ea 100%);
    color: white;
    margin: -2rem -1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.4);
}

.plan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.plan-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.price-container {
    margin-bottom: 2rem;
}

.price {
    font-size: 2rem;
    font-weight: 600;
}

.original-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-left: 0.75rem;
}

.features-list {
    list-style: none;
    margin: 1rem 0;
}

.feature-item {
    margin-bottom: 1rem;
}

.pricing-button {
    width: 100%;
    padding: 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 16px;
}

.free-plan .pricing-button {
    background-color: #1f2937;
    color: white;
}

.free-plan .pricing-button:hover {
    background-color: #374151;
}

.pro-plan .pricing-button {
    background-color: #4338ca;
    color: white;
}

.pro-plan .pricing-button:hover {
    background-color: #4f46e5;
}


/* Footer */
.footer {
    padding: 5rem 2rem;
    border-top: 1px solid #e5e5e5;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-brand {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-x-logo {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-link {
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s ease;
}

.footer-link:hover {
    opacity: 0.7;
}

/* Media Queries */
@media (max-width: 1000px) {
    .card-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .card {
        width: calc(50% - 2rem);
        max-width: 300px;
    }

    .card-image {
        width: 100%;
    }

    .arrow-1 {
        left: calc(25% - 20px);
        bottom: calc(50% + 70px);
        transform: rotate(-45deg);
    }
    
    .arrow-2 {
        left: 50%;
        top: calc(50% - 70px);
        transform: rotate(45deg);
    }
    
    .arrow-3 {
        left: calc(75% + 20px);
        bottom: calc(50% + 70px);
        transform: rotate(45deg);
    }

    .screenshots-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .screenshots-card {
        width: calc(50% - 2rem);
        max-width: 300px;
    }
}

@media (max-width: 800px) {
    .hero-title,
    .hero-subtitle {
        width: 100%;
    }

    .nav {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-content {
        padding: 0 0.5rem;
    }

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

    .meet-chris-image-container {
        height: 300px;
        margin: 0 auto;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .info-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: left;
    }

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

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

    .pricing-card {
        width: 100%;
    }

    .free-plan {
        border-radius: 1.5rem;
    }
    .testimonial-grid-section .questions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-grid-section {
        padding: 3rem 1.5rem;
    }
    
    .testimonial-grid-section .questions-title {
        font-size: 28px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 640px) {
    .card-container {
        flex-direction: column;
        align-items: center;
    }

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

    .arrow {
        display: none;
    }

    .card-section {
        padding: 1rem 0.5rem;
    }
    
    .hero {
        margin-top: 80px;
        min-height: auto;
        margin-bottom: 80px;
    }

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

    .testimonial-grid-section {
        padding: 2rem 1rem;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .testimonial-name {
        font-size: 14px;
    }
    
    .testimonial-image {
        width: 35px;
        height: 35px;
    }
}