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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.navbar {
    background: linear-gradient(135deg, #5B8EF3 0%, #4A7EE2 100%);
    padding: 20px 0;
    position: relative;
    top: 0;
    z-index: 10;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 24px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.hero {
    background: #fff;
    padding: 120px 0;
    overflow: hidden;
}

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

.hero h1 {
    font-size: 90px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 30px;
    color: #000;
}

.hero-description {
    font-size: 25px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #000000;
}

.hero-section {
    position: relative;
    width: 100%;
    background: linear-gradient(to bottom, #5b8ef3, #4a7ee2);
    padding: 75px 0;
}

.hero-container {
    max-width: 1537px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.hero-heading {
    font-size: 24px;
    line-height: 36px;
    color: white;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-paragraph {
    font-size: 24px;
    line-height: 36px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    max-width: 976px;
    margin: 0 auto;
}

.btn-primary {
    background: linear-gradient(135deg, #5B8EF3 0%, #4A7EE2 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 60px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 600;
    background: linear-gradient(135deg, #5B8EF3 0%, #4A7EE2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 18px;
    color: #666;
}

.hero-image {
    display: flex;
    padding-left: 100px;
}

.features {
    background: #fff;
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000;
}

.section-header p {
    font-size: 24px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 24px;
    padding: 48px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 84px;
    height: 84px;
    background: linear-gradient(135deg, #5B8EF3 0%, #4A7EE2 100%);
    border-radius: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.fa-solid {
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000;
}

.feature-card p {
    font-size: 24px;
    line-height: 1.5;
    color: #333;
}

.pricing {
    background: linear-gradient(135deg, #5B8EF3 0%, #4A7EE2 100%);
    padding: 80px 0;
}

.pricing .section-header h2,
.pricing .section-header p {
    color: white;
}

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

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 50px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 4px solid #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #5B8EF3 0%, #4A7EE2 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 40px;
}

.plan-name {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #5B8EF3 0%, #4A7EE2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.price {
    font-size: 54px;
    font-weight: 500;
    line-height: 1;
}

.price-period {
    font-size: 24px;
    color: #666;
}

.plan-description {
    font-size: 21px;
    color: #666;
}

.plan-features {
    list-style: none;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
    font-size: 24px;
}

.checkmark {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin-top: 3px;
}

.comparison-section {
    padding: 100px 40px;
    background: #f5f5f5;
}

.container-comparison {
    max-width: 1400px;
    margin: 0 auto;
}

.comparison-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}

.table-wrapper {
    background: white;
    border-radius: 21px;
    overflow: hidden;
    box-shadow: 0 1.5px 4.5px rgba(0, 0, 0, 0.1), 0 1.5px 3px -1.5px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: linear-gradient(to bottom, #5b8ef3, #4a7ee2);
}

.table-header-cell {
    padding: 24px;
    color: white;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}

.table-header-cell:first-child {
    text-align: left;
}

.table-header-cell.premium-col {
    background: linear-gradient(to bottom, #5b8ef3, #4a7ee2);
}

.comparison-table tbody tr {
    border-bottom: 1.2px solid #e5e7eb;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.table-cell {
    padding: 24px;
    font-size: 24px;
    text-align: center;
}

.table-cell:first-child {
    text-align: left;
    color: #000;
}

.table-cell.feature-name {
    font-weight: 500;
}

.table-cell.premium-col {
    background: #eff6ff;
}

.table-cell strong {
    color: #000;
}

.table-checkmark {
    width: 30px;
    height: 30px;
    display: inline-block;
}

.download-cta {
    background: linear-gradient(135deg, #5B8EF3 0%, #4A7EE2 100%);
    padding: 120px 0;
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 30px;
}

.cta-content > p {
    font-size: 27px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 50px;
}

.app-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

.app-button {
    display: block;
    width: 280px;
    height: 94px;
    transition: transform 0.3s;
}

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

.app-button svg {
    width: 100%;
    height: 100%;
}

.availability {
    font-size: 21px;
    color: white;
    opacity: 0.9;
}

.section-mission {
    background: white;
    margin-top: 80px;
    margin-bottom: 80px;
    padding-left: 180px;
    padding-right: 180px;
}

.container-mission {
    max-width: 1213px;
    width: 100%;
}

.heading-mission {
    font-size: 30px;
    line-height: 45px;
    color: black;
    font-weight: 500;
    margin-bottom: 69px;
}

.paragraph-mission {
    font-size: 24px;
    line-height: 36px;
    color: black;
    font-weight: 500;
    margin-bottom: 24px;
    max-width: 1186px;
}

.paragraph-mission-detail {
    font-size: 24px;
    line-height: 36px;
    color: black;
    font-weight: 500;
    max-width: 1158px;
    margin-top: 48px;
}

.footer {
    background: linear-gradient(135deg, #5B8EF3 0%, #4A7EE2 100%);
    padding: 60px 0;
}

.footer-content {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
}

.footer-content p {
    color: white;
    font-size: 21px;
}

/* Responsive Design */
.nav-links {
    display: flex;
    gap: 40px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #5B8EF3 0%, #4A7EE2 100%);
        flex-direction: column;
        align-items: center;
        gap: 32px;
        padding: 40px 0;

        display: none;
    }

    .nav-links.active {
        display: flex;
    }
}


.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

@media (max-width: 768px) {

    .container {
        padding: 0 24px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #5B8EF3 0%, #4A7EE2 100%);
        flex-direction: column;
        align-items: center;
        gap: 32px;
        padding: 40px 0;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        padding: 80px 0;
    }

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

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

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

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .hero-image {
        display: none;
    }

    .features {
        padding: 80px 0;
    }

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

    .feature-card {
        padding: 32px;
    }

    .pricing {
        padding: 80px 0;
    }

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

    .comparison-section {
        padding: 60px 20px;
    }

    .table-wrapper {
        overflow-x: auto;
    }

    .comparison-table {
        min-width: 700px;
    }

    .section-mission {
        padding: 0 24px;
    }

    .heading-mission {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .paragraph-mission,
    .paragraph-mission-detail {
        font-size: 20px;
    }

    .download-cta {
        padding: 80px 0;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content > p {
        font-size: 20px;
    }

    .hero-heading {
        font-size: 22px;
    }

    .hero-paragraph {
        font-size: 20px;
    }

    .app-buttons {
        flex-direction: column;
    }
}

@media (max-width: 360px) {

    .pricing-card {
        max-width: 312px;
        margin: 0 16;
    }

    .logo {
        font-size: 18px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }

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

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 14px;
    }

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

    .section-header p {
        font-size: 16px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-card p {
        font-size: 16px;
    }

    .price {
        font-size: 36px;
    }

    .price-period {
        font-size: 16px;
    }

    .plan-features li {
        font-size: 16px;
    }

    .heading-mission {
        font-size: 22px;
    }

    .hero-heading {
        font-size: 18px;
    }

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

    .paragraph-mission,
    .paragraph-mission-detail {
        font-size: 16px;
        line-height: 1.6;
    }

    .footer-content p {
        font-size: 14px;
    }

}
