﻿* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

html {
    font-size: 14px;
}

/* ================= Mobile Styles: ≤ 700px ================= */
@media (max-width: 700px) {
    html {
        font-size: 15px;
    }

    .hero {
        padding: 30px 16px;
    }

        .hero h1 {
            font-size: 32px;
        }

        .hero h2 {
            font-size: 22px;
        }

        .hero p {
            font-size: 14px;
        }

    .hero-img img {
        max-width: 250px;
    }

    .plan {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
}


    .plan-header h3 {
        font-size: 18px;
    }

    .plan .price {
        font-size: 1.1rem;
    }

    .plan ul li {
        font-size: 0.85rem;
        padding: 8px 12px;
    }

    .plan .gst-note {
        font-size: 0.75rem;
    }

    .info-box {
        padding: 10px 16px;
    }

    .info-item {
        font-size: 0.9rem;
    }

        .info-item img {
            width: 18px;
            height: 18px;
        }

    footer {
        padding: 20px 30px;
    }

    .social-icons img {
        width: 24px;
    }
}


/* ================= Mobile Styles: ≤ 470px ================= */
@media (max-width: 470px) {
    html {
        font-size: 14px;
    }

    .hero {
        padding: 24px 12px;
    }

        .hero h1 {
            font-size: 26px;
        }

        .hero h2 {
            font-size: 20px;
        }

        .hero p {
            font-size: 13px;
        }

    .hero-img img {
        max-width: 200px;
    }

    .hero-buttons button,
    .btn,
    .plan .btn {
        font-size: 14px;
        padding: 6px 14px;
    }

    .plan {
        min-height: auto;
        padding-bottom: 16px;
    }
}
    .plan-header h3 {
        font-size: 16px;
    }

    .plan ul li {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .plan .gst-note {
        font-size: 0.7rem;
    }

    .info-item {
        font-size: 0.85rem;
    }

    footer {
        padding: 16px 20px;
    }

        footer h4 {
            font-size: 1rem;
        }

    .footer-links a {
        font-size: 0.9rem;
    }

    .social-icons img {
        width: 22px;
        margin-right: 8px;
    }
}


/* ================= Desktop Styles ================= */

/* General */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f3f6fa;
    color: #333;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #e8f0ff, #f8fbff);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
}

.hero-text {
    max-width: 500px;
}

.hero-img {
    position: relative;
    display: inline-block;
}

    .hero-img::before {
        content: "";
        position: absolute;
        top: -20px;
        left: -20px;
        right: -20px;
        bottom: -20px;
        background: radial-gradient(circle at center, rgba(13,110,253,0.25) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 0;
    }

    .hero-img img {
        position: relative;
        z-index: 1;
        max-width: 350px;
        height: auto;
        border: none;
        outline: none;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
    }

.hero h1 {
    font-size: 40px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.hero h2 {
    font-size: 28px;
    font-weight: bold;
    margin: 10px 0;
}

.hero p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.hero-buttons button,
.btn,
.plan .btn {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bold;
    background: #0d6efd;
    color: white;
    border-radius: 6-8px;
    padding: 8-12px 16-24px;
    border: none;
    cursor: pointer;
}

    .hero-buttons button:hover,
    .btn:hover,
    .plan .btn:hover {
        background: #0d6efd;
    }

/* Pricing / Plans */
.yellow-gradient {
    background: linear-gradient(to top, #fff9e6 0%, #e8f0ff 100%);
    padding: 40px 20px;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.plan {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    flex: 1 1 30%;
    max-width: 300px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-header {
    background: #0d6efd;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 8px 8px 0 0;
}

    .plan-header h3 {
        margin: 0;
        font-size: 20px;
    }

    .plan-header .subtitle {
        margin: 4px 0 0;
        font-size: 0.9rem;
    }

.plan .price {
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    margin: 16px 0;
    color: #333;
    white-space: nowrap;
}

.plan ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    flex-grow: 1;
}

    .plan ul li {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

        .plan ul li:nth-child(odd) {
            background: #f0f4ff;
        }

        .plan ul li:nth-child(even) {
            background: #f7f7f7;
        }

.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
}

.plan .gst-note {
    font-size: 0.8rem;
    color: #555;
    margin: 0;
}

/* Info Box */
.info-box {
    background: #eaf3ff;
    padding: 12px 20px;
    border-radius: 6px;
    margin-top: 20px;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: center;
    color: #0d6efd;
    font-weight: 500;
    justify-content: center;
    margin-bottom: 8px;
}

    .info-item img {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }

/* Tick icon */
.tick {
    color: #0d6efd;
    margin-right: 6px;
}

/* Footer */
footer {
    background: #1b1b1b;
    color: #ccc;
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
}

    footer h4 {
        color: white;
        margin-bottom: 12px;
    }

.footer-links a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
}

.social-icons img {
    width: 28px;
    margin-right: 12px;
    cursor: pointer;
}

/* ================= Mobile Styles ================= */
@media (max-width: 768px) {

    /* Hero stack */
    .hero-container {
        flex-direction: column !important;
        gap: 20px;
        text-align: center;
    }

    /* Pricing cards stack vertically */
    .pricing-container {
        flex-direction: column !important;
        align-items: center;
        gap: 20px;
    }

    .plan {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }

    /* Info box items stack vertically */
    .info-item {
        flex-direction: column;
        gap: 8px;
    }

    /* Header nav stack */
    header nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

        header nav ul li {
            margin: 0;
        }

    /* Footer responsive */
    footer {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        text-align: center;
    }

        footer div {
            margin-bottom: 20px;
        }
}
.essentials.plan, .essentials {
    background: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    flex: 1 1 30% !important;
    max-width: 300px !important;
    min-height: 420px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 0 !important; /* or match automate */
    margin: 0 !important;
}