/* Reset and base styles */
:root {
    --primary-color: #000;
    --secondary-color: #666;
    --accent-color: #f5ba31;
    --background-color: #fff;
    --border-radius: 8px;
}

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

.centered-container {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Navigation */

header {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        color: var(--primary-color);
        background-color: var(--background-color);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    width: 100%;
    max-width: 1200px;
}

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

.logo {
        text-decoration: none;
        background-color: #000000;
        color: #fff;
        width: 37px;
        height: 37px;
        min-width: 37px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4em;
        border-radius: 5px;
        margin-right: 20px;
}

.nav-links a {
    margin: 0 1rem;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: 0.5rem;
}

.get-started-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 120px;
    text-decoration: none;
}

.join-with-oauth-btn {
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    border: 1px solid #ccc;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 120px;
}

.oauth-logo {
    width: 18px;
    height: 18px;
}

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

.join-with-oauth-btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

/* Main Content */
main {
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

/* Reviews Section */
.reviews-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 2rem 0;
}

.review {
    text-align: center;
}

.stars {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.review p {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    padding: 2rem 0 4rem;
}

.hero-left {
    flex: 1;
    text-align: left;
    padding-top: 2rem;
}

.hero-right {
    flex: 1;
}

.hero-content {
    max-width: 100%;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hero-content .highlight {
    color: var(--accent-color);
}

.hero-description {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 400px;
}

/* Demo Container */
.demo-container {
    width: 352px;
    margin: 0 auto;
}

.job-description {
    width: 352px;
    font-size: 14px;
    color: #000;
    margin-bottom: 20px;
    min-height: 40px;
}

.job-description-label {
    font-weight: bold;
}

.resume-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 352px;
    height: 266px;
    padding: 34px 36px;
    border-radius: 15px;
    border: 1px solid #d9d9d9;
    background: #fff;
    position: relative;
}

.resume-box::before {
    content: '';
    position: absolute;
    left: -1px;
    right: -1px;
    bottom: -1px;
    height: 50px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.8) 40%,
            rgba(255, 255, 255, 1) 100%);
    z-index: 1;
}

.resume-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.272px;
    margin: 0;
}

.resume-subtitle {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.238px;
    color: var(--secondary-color);
    margin: 0;
}

.resume-bullets {
    padding-left: 20px;
    margin: 0;
    font-size: 14px;
    letter-spacing: -0.238px;
}

.resume-bullets li {
    margin-bottom: 6px;
    list-style-type: disc;
}

/* Company Logos */
.trusted-by {
    margin: 2rem 0 4rem;
    opacity: 0.6;
}

.company-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    flex-wrap: nowrap;
}

.logos {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logos img {
    width: auto;
    height: 20px;
    object-fit: contain;
}

/* Features Section */
.features {
    padding: 4rem 0;
}

.coming-soon p {
    color: #C9C9C9 !important;
}

.coming-soon h3 {
    color: #C9C9C9 !important;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
}


.feature-card p {
    font-size: 0.9rem;
    color: var(--secondary-color);
}



/* Value Proposition */
.value-prop {
    padding: 4rem 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.value-prop h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.value-prop p {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.value-prop .highlight {
    color: var(--accent-color);
}

/* Pricing Section */
.pricing {
    padding: 0 0 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    padding: 1.5rem;
    border: 1px solid #eee;
    background: #F6F4F3;
    flex-shrink: 0;
    border-radius: var(--border-radius);
}

.pricing-card h3 {
    font-size: 1rem;
    font-weight: bold;
}

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

.price-container {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.price-plus-vat {
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.get-started-pricing-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    width: 100%;

}

.features-list {
    list-style: none;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.features-list li {
    margin: 0.5rem 0;

}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.faq-item h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Footer */
footer {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--background-color);
    width: 100%;
    padding: 3rem 2rem 1rem;
    margin-top: auto;
    border-top: 1px solid #e9e9e7;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: #787774;
    line-height: 1.5;
    max-width: 250px;
    margin: 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.footer-column a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #135bec;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #e9e9e7;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    color: #787774;
}

/* Highlight */
.highlight {
    color: var(--accent-color);
}

.resume-box .highlight,
.job-description .highlight {
    background-color: #F1CB72;
    padding: 0 2px;
    border-radius: 2px;
    color: inherit;
}

/* Caret Animation */
.caret {
    display: inline-block;
    border-right: 2px solid black;
    margin-left: 2px;
    animation: blink-caret 0.8s infinite step-end alternate;
}

@keyframes blink-caret {
    50% {
        border-color: transparent;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .hero-description {
        text-align: center;
        max-width: 100%;
    }

    .hero {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .hero-left, .hero-right {
        flex: none;
        width: 100%;
    }

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

    .get-started-btn {
        width: 100%;
        max-width: 300px;
    }

    .join-with-oauth-btn {
        width: 100%;
        max-width: 300px;
        padding: 0.5rem 0.5rem;
        line-height: normal;
    }

    .navbar-right {
        gap: 0.5rem;
    }

    .nav-links {
        display: none;
    }

    .demo-container {
        width: 100%;
    }

    .resume-box {
        width: 100%;
        padding: 1rem;
    }

    .company-logos {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .reviews-container {
        align-items: center;
    }

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

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

    footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-tagline {
        max-width: 100%;
    }
}
