/* Notion-like styles */
:root {
    /* Notion-like color palette */
    --primary-color: #FFBA17;
    --secondary-color: #e0e6f0;
    --accent-color: #ff8f73;
    --light-color: #ffffff;
    --dark-color: #37352f;
    --text-color: #37352f;
    --light-text-color: #6b7280;
    --border-color: #ebeef0;
    --card-shadow: rgba(15, 15, 15, 0.1) 0px 0px 0px 1px, rgba(15, 15, 15, 0.1) 0px 2px 4px;
    --success-color: #0ca678;
    --warning-color: #ff8f73;
}

/* General Notion-like Styles */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif;
    color: var(--text-color);
    line-height: 1.5;
    background-color: var(--light-color);
    -webkit-font-smoothing: antialiased;
    width: 100%;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    width: 100%;
}

p {
    color: var(--light-text-color);
    width: 100%;
}

/* Notion-like buttons */
.btn-primary, .btn-small {
    display: inline-block;
    background-color: var(--primary-color);
    color: white !important;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: rgb(15 15 15 / 10%) 0px 1px 2px;
}

.btn-small {
    padding: 8px 16px;
}

.btn-primary:hover, .btn-small:hover {
    background-color: #1a73e8;
    box-shadow: rgb(15 15 15 / 10%) 0px 1px 3px;
    transform: translateY(-2px);
}

/* Notion-like cards */
.why-card, .feature, .testimonial {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.why-card:hover, .feature:hover {
    transform: translateY(-4px);
    box-shadow: rgba(15, 15, 15, 0.1) 0px 0px 0px 1px, rgba(15, 15, 15, 0.1) 0px 4px 8px;
}

/* Notion-like header */
header {
    background-color: var(--light-color) !important;
    box-shadow: rgba(15, 15, 15, 0.05) 0px 1px 2px !important;
    width: 100% !important;
}

.logo h1 {
    color: var(--dark-color) !important;
    font-weight: 600;
}

/* Notion-like sections */
#hero {
    background-color: var(--light-color) !important;
    background: linear-gradient(to bottom, #fff, #f7f7f7) !important;
    padding-top: 120px !important;
    width: 100%;
}

#why, #how-it-works {
    background-color: #f7f7f7 !important;
    width: 100%;
}

#features, #testimonials {
    background-color: var(--light-color) !important;
    width: 100%;
}

/* Steps styling */
.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    width: 100%;
}

.steps::after {
    display: none !important;
}

.step {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    transition: all 0.2s ease;
    position: relative;
    max-width: 330px !important;
    margin: 20px 0 !important;
    width: 100%;
    box-sizing: border-box;
}

.step-number {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0 !important;
}

.step-icon {
    border-radius: 8px !important;
    background-color: rgba(255, 186, 23, 0.1) !important;
    box-shadow: none !important;
    width: 60px !important;
    height: 60px !important;
}

/* Notion-like footer */
footer {
    background-color: #f7f7f7 !important;
    color: var(--text-color) !important;
    width: 100%;
}

.footer-logo h3 {
    color: var(--dark-color) !important;
    font-weight: 600;
}

.footer-links-column h4 {
    color: var(--dark-color) !important;
    font-weight: 600;
}

.footer-links-column ul li a {
    color: var(--light-text-color) !important;
}

.footer-links-column ul li a:hover {
    color: var(--primary-color) !important;
}

.footer-bottom {
    color: var(--light-text-color);
    border-top: 1px solid var(--border-color) !important;
    width: 100%;
}

/* Notion-like icons */
.feature-icon {
    background-color: rgba(255, 186, 23, 0.1) !important;
    border-radius: 8px !important;
    width: 60px !important;
    height: 60px !important;
}

.why-card .icon {
    color: var(--primary-color);
}

/* Notion-like quote styling */
.quote {
    border-left: 3px solid var(--primary-color);
    padding: 8px 0 8px 16px;
    font-style: normal;
    color: var(--light-text-color);
    width: 100%;
}

.quote::before {
    display: none;
}

/* Hero image styling */
.hero-image img {
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    transform: none !important;
    max-width: 70%; /* Ukuran gambar dikurangi menjadi 70% dari ukuran sebelumnya */
    width: auto;
}

.hero-image img:hover {
    transform: none !important;
}

/* Download section styling */
#download {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4b94fc 100%) !important;
    width: 100%;
}

.app-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.app-badge:hover img {
    transform: translateY(-3px);
}

/* Testimonial styling */
.testimonial-slider {
    max-width: 700px;
    margin: 40px auto 0;
    width: 100%;
}

.testimonial-slide.active {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial {
    max-width: 100%;
    margin: 0;
    width: 100%;
}

.author-image {
    width: 50px;
    height: 50px;
}

.author-info h4 {
    font-weight: 600;
    color: var(--dark-color);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--light-text-color);
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--border-color);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Mobile responsiveness enhancements */
@media (max-width: 992px) {
    .step {
        flex-basis: calc(50% - 24px);
        margin: 20px 0 !important;
        width: 100%;
    }
    
    .hero-content, .hero-image {
        width: 100%;
    }
    
    .container, .why-cards, .features-grid, .testimonial-slider {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-content, .hero-image {
        text-align: center;
        margin-left: 0 !important;
        max-width: 100% !important;
        width: 100%;
    }
    
    .hero-image img {
        max-width: 100%;
        width: 100%;
    }
    
    .step {
        flex-basis: 100%;
        width: 100%;
    }
    
    #download .subtitle {
        padding: 0 16px;
        width: 100%;
    }
    
    .container, .why-cards, .features-grid, .testimonial-slider, .testimonial {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
        width: 100%;
    }
    
    .why-card, .feature, .step, .testimonial {
        padding: 20px;
        width: 100%;
    }
    
    .why-card .icon, .feature-icon, .step-icon {
        margin-bottom: 12px;
    }
    
    .container, .why-cards, .features-grid, .testimonial-slider, .testimonial {
        width: 100%;
    }
}
