* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #f4f2ef;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #062d4a;
}


.text--gold {
    color: #c89843;
}
/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    border: 1px solid #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn--primary {
    background: #062d4a;
    color: #fff;
}

.btn--primary:hover {
    background: #333;
}

.btn--secondary {
    background: transparent;
    color: #062d4a;
}

.btn--secondary:hover {
    background: #f5f5f5;
}

.btn--small {
    padding: 8px 20px;
}

/* Header */
.header {
    margin-top: 2rem;
}

.header__nav {
    display: inline-flex;
    width: 100%;
    justify-content: center;
}

.header__logo {
    width: 25%;
}

.header__menu {
    display: inline-flex;
    list-style: none;
    gap: 80px;
}

.lock-icon::after {
    display: inline-block;
    content: "";
    border-top: .15rem solid black;
    width: 2rem;
    transform: translateY(-2.06rem) translateX(1.5rem);
}

.lock-icon::before {
    display: inline-block;
    content: "";
    border-top: .15rem solid black;
    width: 2rem;
    transform: translateY(1.5rem) translateX(-2rem);
}

.lock-icon::after {
}

.lock-icon {
    position: absolute;
    width: 1.5rem;
    left: 35%;
    bottom: -30px;
}

.header__menu-item {
    position: relative;
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: none;
}

.header__menu-link {
    color: #7e7e7e;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.header__menu-link:hover {
    color: #666;
}

/* Hero Section */
.hero {
    padding: 112px 0;
}

.hero__content {
    max-width: 768px;
    text-align: center;
    margin: 0 auto 80px;
}

.hero__title {
    font-size: 56px;
    font-weight: 700;
    line-height: 67.2px;
    margin-bottom: 24px;
    color: #062d4a;
}

.hero__description {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: #062d4a;
    margin-bottom: 32px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.hero__image {
    height: 720px;
    background: #f4f2ef;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
}

.hero__image .header__logo {
    width: 100%;
}

/* Features Section */
.features {
    padding: 112px 0;
}

.features__layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.features__layout--two-column .features__content {
    flex: 1;
}

.features__layout--two-column .features__image {
    flex: 1;
    height: 640px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
}

.features__tag {
    font-size: 16px;
    font-weight: 600;
    color: #062d4a;
    margin-bottom: 16px;
}

.features__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 57.6px;
    color: #062d4a;
    margin-bottom: 24px;
}

.features__description {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: #062d4a;
    margin-bottom: 32px;
}

.features__grid {
    margin-bottom: 32px;
}

.features__grid--inline {
    display: flex;
    gap: 24px;
}

.features__item {
    flex: 1;
}

.features__item-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: #062d4a;
    margin-bottom: 16px;
}

.features__item-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #062d4a;
}

.features__buttons {
    display: flex;
    gap: 24px;
    align-items: center;
}

/* Section */
.section {
    padding: 112px 0;
}

.section-header {
    max-width: 768px;
    margin-bottom: 80px;
}

.section-tag {
    font-size: 16px;
    font-weight: 600;
    color: #062d4a;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 57.6px;
    color: #062d4a;
    margin-bottom: 24px;
}

.section-header p {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: #062d4a;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 64px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: left;
}

.feature-image {
    height: 240px;
    background: #f5f5f5;
    border: 1px solid #ddd;
}

.feature-card h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 41.6px;
    color: #062d4a;
    margin-bottom: 24px;
}

.feature-card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #062d4a;
}

/* Two Column Layout */
.two-column {
    display: flex;
    gap: 80px;
    align-items: center;
}

.two-column > div:first-child {
    flex: 1;
}

.hero-image {
    flex: 1;
    background: #f4f2ef;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
}

/* Checklist */
.checklist {
    list-style: none;
    margin: 32px 0;
    padding: 0;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #062d4a;
}

.checklist li::before {
    content: "✓";
    width: 16px;
    height: 16px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* Steps */
.steps {
    display: flex;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.step {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto;
}

.step h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 41.6px;
    color: #062d4a;
    margin-bottom: 24px;
}

.step p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #062d4a;
}

/* Roadmap */
.roadmap {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    min-height: 200vh; /* Ensure enough height for sticky behavior */
}

.roadmap-content {
    width: 576px;
    flex-shrink: 0;
    position: sticky;
    top: 112px; /* Adjust based on your header height */
    align-self: flex-start;
    z-index: 10;
}

.roadmap-timeline {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    min-height: 80vh; /* Each timeline item takes up more vertical space */
}

.timeline-item:last-child {
    min-height: 60vh; /* Q4 section can be shorter */
}

.timeline-indicator {
    width: 128px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.timeline-line {
    width: 3px;
    background: #000;
    padding-bottom: 24px;
    align-items: flex-start;
}

.timeline-dot {
    width: 15px;
    height: 15px;
    background: #000;
    border-radius: 50%;
    margin: 8px 0;
}

.timeline-content {
    flex: 1;
    padding-bottom: 24px;
    padding-top: 2vh; /* Add top padding to create better spacing */
}

.timeline-content:not(:last-child) {
    padding-top: 24px;
}

.timeline-content h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    color: #062d4a;
    margin-bottom: 16px;
}

.timeline-content h4 {
    font-size: 32px;
    font-weight: 700;
    line-height: 41.6px;
    color: #062d4a;
    margin-bottom: 32px;
}

.timeline-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: #062d4a;
    margin-bottom: 32px;
}

.timeline-image {
    height: 544px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    margin-top: 32px;
}

/* Testimonial */
.testimonial {
    padding: 112px 0;
}

.testimonial-content {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-content blockquote {
    font-size: 24px;
    font-weight: 700;
    line-height: 33.6px;
    color: #062d4a;
    margin: 32px 0;
    quotes: "" " " "" "'";
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: #f5f5f5;
    border-radius: 50%;
    border: 1px solid #ddd;
}

/* CTA Section */
.cta {
    height: 80vh;
    padding: 0 112px 0;
}
.cta__image {
    height: 550px;
    background: #f4f2ef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
}

.cta__logo {
    width: 45%;
}

.cta-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.cta-content > div:first-child {
    flex: 1;
}

.cta-content > div:last-child {
    flex: 1;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 57.6px;
    color: #062d4a;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: #062d4a;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Footer */
.footer {
    padding: 80px 0;
    border-top: 1px solid #eee;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr 2fr;
    gap: 40px;
    margin-bottom: 80px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #062d4a;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section li {
    padding: 8px 0;
}

.footer-section a {
    color: #062d4a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #666;
    text-decoration: underline;
}

.footer__logo {
    width: 75%;
}

/* Newsletter */
.newsletter {
    display: flex;
    gap: 16px;
    align-items: center;
    margin: 24px 0 12px 0;
}

.newsletter input {
    flex: 1;
    padding: 12px;
    border: 1px solid #000;
    font-size: 16px;
    font-family: inherit;
}

.newsletter input::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.newsletter button {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid #000;
    color: #062d4a;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter button:hover {
    background: #f5f5f5;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid #000;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-links span {
    color: #666;
    font-size: 14px;
}

.footer-links a {
    color: #062d4a;
    font-size: 14px;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 24px;
    height: 24px;
    background: #000;
    border-radius: 4px;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header__nav {
        flex-direction: column;
        height: auto;
        padding: 16px 0;
        gap: 16px;
    }

    .header__menu {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero__title {
        font-size: 32px;
        line-height: 38.4px;
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }

    .features__layout,
    .two-column,
    .cta-content {
        flex-direction: column;
        gap: 40px;
    }

    .feature-grid,
    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .roadmap {
        flex-direction: column;
        gap: 40px;
        min-height: auto; /* Remove min-height on mobile */
    }

    .roadmap-content {
        width: 100%;
        position: static; /* Disable sticky on mobile */
    }

    .timeline-item {
        min-height: auto; /* Remove min-height on mobile */
    }

    .timeline-content {
        padding-top: 24px; /* Reset padding on mobile */
    }
}
