/* ── GLOBAL BACKGROUND FIX ── */
body {
    background: #ffffff;
}

/* ── HERO SECTION ── */
.hero-section {
    background: linear-gradient(
        87deg,
        rgba(205, 201, 237, 0.5),
        rgba(191, 228, 245, 0.45)
    );

    position: relative;
    overflow: hidden;

    width: 100%;
    padding:20px;
    box-sizing: border-box;
}

.hero-content {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 50px;
    align-items: center;

    width: 100%;

    margin: 0 auto;
}

/* TEXT SIDE */
.hero-text {
    max-width: 700px;
    animation: fadeInLeft 0.8s ease forwards;
    text-align: left;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* TAGLINES */
.hero-tagline-wrapper {
    position: relative;
    min-height: 40px;
    margin-bottom: 5px;
}

.hero-tagline {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 15px;
    color: #2563eb;
    font-weight: 500;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(8px);
    transition: 0.6s;
    max-width: 500px;
}

.hero-tagline.active {
    opacity: 1;
    transform: translateY(0);
}

/* TITLE */
.hero-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e3a8a;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'poppins', system-ui, sans-serif;
}

.hero-title span {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    background-clip: text;
    color: transparent;
    font-family: 'poppins', system-ui, sans-serif;
}

/* DESCRIPTION */
.hero-description {
    font-family: 'poppins', system-ui, sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* BUTTON */
.btn-primary {
    background: #2563eb;
    color: white;
    padding: 14px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.2s;
}

.btn-primary:hover {
    background: #1d4ed8;
}

/* STATS */
.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    align-items: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 22px;
    font-weight: 510;
    color: #2563eb;
}

.stat-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #e5e7eb;
}

/* IMAGE */
.hero-image-wrapper {
    animation: fadeInRight 0.8s ease 0.2s forwards;
    opacity: 0;
}

.password-banner {

    background: #fff3cd;

    color: #856404;

    padding: 15px;

    margin: 20px;

    border-radius: 6px;

    border: 1px solid #ffeeba;
}

.password-banner a {

    margin-left: 10px;

    font-weight: bold;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hero-image-frame img {
    width: 100%;
    height: auto;
}

/* ── FEATURES SECTION ── */
.features-section {
    padding: 10px 0;
    margin: 0px auto;
}

.homecontainer {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 50px;
}

/* HEADINGS */
.section-header {
    text-align: center;
    margin-bottom: 10px;
}

.section-label {
    font-family: 'poppins', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 501;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-title {
    font-family: 'poppins', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #060606;
    margin: 0px;
}

/* ── CARDS GRID ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    font-family: 'poppins', system-ui, sans-serif;
}

/* ── CARDS (UPDATED GRADIENT) ── */
.feature-card {
    background: linear-gradient(87deg,
            rgba(205, 201, 237, 0.5),
            rgba(191, 228, 245, 0.45));
    border-radius: 16px;
    padding: 28px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.2);
}

/* CARD CONTENT */
.card-number {
    font-size: 40px;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.3);
}

.card-title {
    font-size: 18px;
    font-weight: 500;
    color: #060606;
    margin: 10px 0;
}

.card-text {
    font-size: 13px;
    color: #333;
    line-height: 1.7;
}

.card-features-title {
    font-size: 13px;
    font-weight: 500;
    margin-top: 10px;
}

.card-features {
    list-style: none;
    padding-top: 10px;
}

.card-features li {
    font-size: 12px;
    padding: 6px 10px;
    background: linear-gradient(87deg, rgba(205, 201, 237, 0.5), rgba(191, 228, 245, 0.45));
    border-radius: 6px;
    margin-bottom: 6px;
    align-items: center;

}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image-wrapper {
        margin-top: 30px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
}
.image-section {
    width: 100%;
    max-width: 1280px;

    margin: 0 auto 20px auto;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 16px;
    padding: 28px 20px;

    background: linear-gradient(
        87deg,
        rgba(205, 201, 237, 0.5),
        rgba(191, 228, 245, 0.45)
    );

    box-sizing: border-box;
}

.image-container {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px; /* optional styling */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* optional */
}

/* ============================= */
/* ── PRICING SECTION (ADDED) ── */
/* ============================= */

/* ── PRICING HERO ── */
.pricing-hero {
    padding: 0px 0 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pricing-hero-inner {
    font-family: 'poppins', system-ui, sans-serif;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-hero-label {
    font-family: 'poppins', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 501;
    gap:10px;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.pricing-hero-title {
    font-family: 'poppins', system-ui, sans-serif;
    font-size:15px;
    font-weight: 500;
    color: #101010;
    line-height: 1.2;
    margin: 0px;
}

.pricing-hero-title span {
    font-family: 'poppins', system-ui, sans-serif;
    background: #101010;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 15px;
}

.pricing-hero-sub {
    font-family: 'poppins', system-ui, sans-serif;
    font-size: 15px;
    color: #1a2744;
    line-height: 1.7;
    margin: 5px;
}

/* ── SECTION ── */
.pricing-section {

    padding: 6px 0 8px;
}

.pricing-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── CARDS GRID ── */
.pricing-grid {
    font-family: 'poppins', system-ui, sans-serif;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start; /* 🔥 change this */
    margin-bottom: 70px;
}

/* ── BASE CARD ── */
.pricing-card {
    text-align: left;
    background: linear-gradient(87deg, rgba(205, 201, 237, 0.5), rgba(191, 228, 245, 0.45));
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 5px solid transparent;
    margin-top: auto;
}

.card-body {
    flex-grow: 1;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(2, 112, 224, 0.14);
}

/* FEATURED */
.featured {
    background: linear-gradient(87deg, rgba(205, 201, 237, 0.5), rgba(191, 228, 245, 0.45));
    box-shadow: 0 8px 40px rgba(2, 112, 224, 0.3);
    transform: scale(1.03);
}

.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.featured-ribbon {
    position: absolute;
    top: -1px;
    right: 24px;
    background: linear-gradient(135deg, #61dafb, #0270e0);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 0 0 10px 10px;
    text-transform: uppercase;
}
.price-amount,
.price-period {
    text-align: left;
}
/* ── BADGE ── */
.tier-badge {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

.feat-content {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.starter-badge {
    background: rgba(191, 228, 245, 0.45);
    color: #0a1628;
}

.professional-badge {
    background: rgba(191, 228, 245, 0.45);
    color: #0a1628;
}

.enterprise-badge {
    background: rgba(191, 228, 245, 0.45);
    color: #0a1628;
}

/* ── PRICE ── */
.tier-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
    text-align: center;
    justify-content: flex-start;
    text-align: left;
}

.price-amount {
    font-size: 20px;
    font-weight: 500;
    color: #0a1628;
    text-align: center;
}

.featured .price-amount {
    font-size: 38px;
    font-weight: 500;
    color: #0a1628;
    text-align: center;
}

.price-period {
    font-size: 14px;
    color: #0a1628;
    font-weight: 400;
}

.featured .price-period {
    color: #0a1628;
}

/* ── TAGLINE ── */
.tier-tagline {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0270e0;
    margin-bottom: 16px;
    text-align: left;
}

.featured .tier-tagline {
    color: #2563eb;
}

.tier-divider {
    height: 1px;
    background: #e5e9f0;
}

.featured .tier-divider {
    background: rgba(255, 255, 255, 0.1);
}

/* ── FEATURE LIST ── */
.tier-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}

.feat-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feat-row strong {
    font-size: 14px;
    font-weight: 500;
    color: #0a1628;
    margin: 0;
}

.featured .feat-row strong {
    color: #0a1628;
}

.feat-row p {
    font-size: 11.5px;
    margin: 0;
    display: inline;
    color: #64748b; /* subtle gray */
}

.featured .feat-row p {
    color: #0a1628;
}

.feat-na strong,
.feat-na p {
    opacity: 0.4;
}

.feat-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
}

.feat-icon.check {
    background: #dcfce7;
    color: #16a34a;
}

.feat-icon.cross {
    background: #f1f5f9;
    color: #94a3b8;
}

/* ── CTA BUTTON ── */
.tier-cta {
    display: inline-block;
    width: fit-content;
    text-align: center;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 13px;
    margin: 0 auto;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    margin-top: auto;
    border-width: 0px;
    background-color: #5c7dd6;
    color: #ffffff;

}

.tier-cta:hover {
    transform: translateY(-6px);
    background: #1d4ed8;
    color: white;
}

.starter-cta {
    background: #0270e0;
    color: white;
    border: none;
}


.professional-cta {
    background: #0270e0;
    color: white;
    border: none;
}


.enterprise-cta {
    background: #0270e0;
    color: white;
    border: none;
}


/* ── COMPARISON TABLE ── */
.compare-section {
    margin-top: 10px;
}

.compare-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a2744;
    text-align: center;
    margin-bottom: 28px;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 13px;
}

.compare-table thead tr {
    background: #1a2744;
    color: white;
}

.compare-table th {
    padding: 16px 18px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.compare-table th.feat-col {
    text-align: left;
    width: 36%;
}

.compare-table td {
    padding: 13px 18px;
    text-align: center;
    color: #333;
    border-bottom: 1px solid #f0f4f8;
}

.compare-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #0a1628;
}

.compare-table tbody tr:hover {
    background: #f7faff;
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.featured-col {
    background: rgba(2, 112, 224, 0.05);
}

thead .featured-col {
    background: rgba(97, 218, 251, 0.12);
}

.price-row td {
    background: #f0f5ff;
    font-size: 15px;
    font-weight: 800;
    color: #0270e0;
    padding: 16px 18px;
}

.price-row td:first-child {
    color: #0a1628;
}

/* dots */
.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

.dot.green {
    background: #22c55e;
}

.dot.yellow {
    background: #f59e0b;
}

.dot.red {
    background: #ef4444;
}

/* table icons */
.tcheck {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    font-size: 12px;
    font-weight: 900;
}

.tcross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #94a3b8;
    font-size: 12px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .featured {
        transform: none;
    }

    .featured:hover {
        transform: translateY(-6px);
    }

    .pricing-hero-title {
        font-size: 28px;
    }
}


/* =========================================
   FINAL RESPONSIVE FIX
========================================= */

@media (max-width: 1024px) {

    html,
    body {
        overflow-x: hidden;
    }

    .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
}

.hero-text {
    text-align: center;
}

.hero-stats {
    justify-content: center;
}

.hero-title {
    font-size: 34px;
}

.hero-description {
    font-size: 15px;
}

.hero-image-wrapper {
    width: 100%;
}

    /* HERO SECTION */

    .hero-section {

        display: flex;
        flex-direction: column;

        width: 100%;

        padding: 20px 16px;

        gap: 24px;

        overflow: hidden;
    }

    /* TEXT */

    .hero-text {

        width: 100%;

        max-width: 100%;

        margin: 0;

        padding: 0;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.7;
        margin: 14px 0;
    }

    /* TAGLINE */

    .hero-tagline-wrapper {

        min-height: auto;

        margin: 10px 0;

        padding: 0;
    }

    .hero-tagline {
        position: relative;
        max-width: 100%;
    }

    /* STATS */

    .hero-stats {

        display: flex;

        flex-wrap: wrap;

        gap: 16px;

        margin-top: 20px;
    }

    /* IMAGE WRAPPER */

    .hero-image-wrapper {

        width: 100%;

        max-width: 100%;

        margin: 0;

        padding: 0;

        order: 2;

        opacity: 1;

        animation: none;
    }

    /* IMAGE FRAME */

    .hero-image-frame {

        width: 100%;

        max-width: 100%;

        margin: 0;

        padding: 0;

        overflow: hidden;

        border-radius: 14px;
    }

    /* IMAGE */

    .hero-image-frame img {

        width: 100%;

        max-width: 100%;

        height: auto;

        display: block;

        object-fit: contain;
    }

    /* FEATURES */

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 20px;
    }

    /* IMAGE SECTION */

    .image-section {

        width: 100%;

        margin: 0;

        padding: 10px;

        border-radius: 0;
    }

    .image-container {

        width: 100%;

        max-width: 100%;

        margin: 0;
    }

    .image-container img {

        width: 100%;

        max-width: 100%;

        height: auto;

        display: block;
    }

    /* PRICING */

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {

    .hero-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-divider {
        display: none;
    }

    .pricing-card {
        padding: 18px;
    }

    .feature-card {
        padding: 18px;
    }
}

.hero-image-frame{
    position: relative;
}

/* Watch Demo Button */
.watch-demo-btn {
    position: absolute;
    bottom: 2px;
    right: 6px;
    background: #3561a3;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
    z-index: 10;
}

.watch-demo-btn:hover {
    background: #1c46cc;
    transform: scale(1.05);
}

/* Modal Background */
.demo-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}

/* Modal Box */
.demo-modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

/* Video */
.demo-modal video {
    width: 100%;
    display: block;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 35px;
    cursor: pointer;
    z-index: 10000;
}