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

:root {
    --primary-color: #EE8C2B;
    --primary-light: rgba(238, 140, 43, 0.1);
    --bg-color: #F8F7F6;
    --bg-dark: #171717;
    --text-dark: #171717;
    --text-gray: #525252;
    --text-medium: #404040;
    --text-light: #E5E5E5;
    --border-color: #E5E5E5;
    --white: #FFFFFF;
    --font-family: 'Be Vietnam Pro', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-family);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 16px;
    box-shadow: 0 4px 6px -4px rgba(238, 140, 43, 0.2),
                0 10px 15px -3px rgba(238, 140, 43, 0.2);
}

.btn-primary:hover {
    background-color: #d67a1f;
    transform: translateY(-2px);
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(248, 247, 246, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
    transition: color 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    padding: 120px 0 0;
    background-color: var(--bg-color);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    max-width: 650px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 9999px;
    margin-bottom: 24px;
}

.badge span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--primary-color);
}

.hero h1 {
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1.5px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.625;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.email-form {
    margin-bottom: 16px;
}

.input-wrapper {
    display: flex;
    gap: 12px;
    background-color: var(--white);
    padding: 8px;
    border-radius: 32px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 16px;
    font-family: var(--font-family);
    background: transparent;
}

.input-wrapper input::placeholder {
    color: #A3A3A3;
}

.form-note {
    font-size: 14px;
    color: var(--text-gray);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.score-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: var(--white);
    border-radius: 50px;
    padding: 10px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.score-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-color: #EE8C2B33;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-content {
    display: flex;
    flex-direction: column;
}

.score-header {
    display: flex;
    align-items: center;
}

.score-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.score-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.score-bar {
    width: 100px;
    height: 6px;
    background-color: #E5E5E5;
    border-radius: 2px;
    overflow: hidden;
}

.score-bar-fill {
    width: 85%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.score-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.features .section-header {
    text-align: left;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background-color: var(--bg-color);
    border-radius: 16px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:first-child {
    padding-left: 0;
    background-color: transparent;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    /*width: 100%;*/
    /*height: 352px;*/
    margin: 0 0 24px;
    border-radius: 16px;
    overflow: hidden;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* How It Works Section */
.roadmap {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 15%;
    right: 15%;
    height: 2px;
    /*background: linear-gradient(90deg, var(--primary-color) 0%, var(--border-color) 100%);*/
    background: var(--primary-color);
}

.timeline-item {
    text-align: center;
    position: relative;
}

.timeline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    border-color: var(--primary-color);
}

.timeline-item:last-child .timeline-icon {
    background-color: var(--primary-color);
}

.timeline-date {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.timeline-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.timeline-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: var(--white);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-image {
    position: relative;
}

.cta-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 24px;
}

.cta-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background-color: rgb(0 0 0 / 19%);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--white);
}

.cta-image-badge h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cta-image-badge p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cta-text .section-label {
    margin-bottom: 12px;
}

.cta-text h2 {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.cta-text > p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.cta-features {
    list-style: none;
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.cta-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #EE8C2B33;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: linear-gradient(180deg, #FEF7F0 0%, #FEFAF6 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.review-card {
    background-color: var(--white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.review-card.featured {
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(238, 140, 43, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.reviewer-info span {
    font-size: 12px;
    color: var(--text-gray);
}

.review-stars {
    margin-bottom: 12px;
}

.review-stars span {
    color: var(--primary-color);
    font-size: 14px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
    font-style: italic;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background-color: var(--bg-dark);
    text-align: center;
}

.final-cta-icon {
    margin-bottom: 24px;
}

.final-cta h2 {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 16px;
}

.final-cta > .container > p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.email-form-dark .input-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.email-form-dark input {
    color: var(--white);
}

.email-form-dark input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 16px;
    max-width: 250px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
}

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

.footer-bottom p {
    font-size: 14px;
    color: var(--text-gray);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 48px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .features-grid,
    .timeline,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-icon {
        height: 280px;
    }

    .timeline::before {
        display: none;
    }

    .cta-text h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        display: none;
    }

    .nav-wrapper .btn {
        display: none;
    }

    .nav {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        pointer-events: none;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero h1 {
        font-size: 36px;
    }

    .hero h1 br,
    .hero-description br,
    .section-header h2 br,
    .section-description br {
        display: none;
    }

    .hero-description {
        font-size: 16px;
    }

    .badge {
        justify-content: center;
    }

    .input-wrapper {
        flex-direction: column;
        border-radius: 16px;
        padding: 12px;
    }

    .input-wrapper .btn {
        width: 100%;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 100%;
        margin: 0 auto;
    }

    .features-grid,
    .timeline,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .feature-icon {
        height: 220px;
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-image {
        order: -1;
    }

    .cta-image img {
        margin: 0 auto;
    }

    .cta-features {
        text-align: left;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-text .btn {
        width: 100%;
    }

    .final-cta h2 {
        font-size: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

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

    .hero h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .cta-text h2 {
        font-size: 24px;
    }

    .final-cta h2 {
        font-size: 24px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card,
    .review-card {
        padding: 24px;
    }

    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}
