/*  RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    max-width: 100%;
    overflow-x: hidden;
    background: transparent;
}

/* CONTAINER & LAYOUT */
.container {
    width: 100%;
    max-width: 81.25rem;
    margin: 0 auto;
    padding: 0 4.6%;
}

/* HERO SECTION */
.hero-section,
.workspace-hero {
    padding: 30px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1500px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.hero-text {
    flex: 2;
    min-width: 600px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    max-width: 100%;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1rem;
    color: #505050;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 100%;
}

.btn-compare {
    display: inline-block;
    background: #ffffff;
    color: #2655A5;
    border: 1.5px solid #2655A5;
    padding: 0.625rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-compare:hover {
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
    color: #ffffff;
    text-decoration: none;
    border-color: transparent;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image img,
.hero-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    justify-self: end;
}

/* WHY SMART SECTION */
.whysmart-wrapper {
    background: #EFEFEF 70%;
    display: flex;
    justify-content: center;
    padding: 0.625rem 1.25rem;
}

.whysmart-frame {
    width: 100%;
    max-width: 87.5rem;
    background: rgba(239, 239, 239, 0.70);
    border-radius: 1.5rem;
    padding: 1.25rem;
}

.whysmart-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3.125rem;
    line-height: 1.3;
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.whysmart-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.whysmart-card {
    position: relative;
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.75rem;
    min-height: 15rem;
    box-shadow: 0 0.625rem 1.5rem rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whysmart-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(43, 61, 145, 0.15);
}

.whysmart-card .icon {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 64px;
    height: 36px;
    object-fit: contain;
}

.whysmart-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #008ACF;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    max-width: 18.75rem;
}

.whysmart-card p {
    font-size: 0.875rem;
    color: #505050;
    line-height: 1.6;
    margin: 0;
}

/* Highlight Card (Gemini) */
.highlight-card {
    border-radius: 1.25rem;
    padding: 1.75rem;
    background: #ffffff;
    position: relative;
    border: 0.1875rem solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(90deg, #4796E3, #CA6673, #9177C7) border-box;
    box-shadow: 0 0 0.9375rem rgba(71, 149, 227, 0),
        0 0 0.9375rem rgba(202, 102, 115, 0.2),
        0 0 0.9375rem rgba(145, 119, 199, 0.2);
}

.ai-title {
    color: #008ACF;
}

.ai-text {
    color: #505050;
}

/* GEMINI BANNER */
.gemini-banner {
    position: relative;
    max-width: 90.625rem;
    height: 15.625rem;
    margin: 1.25rem auto;
    border-radius: 1.25rem;
    padding: 1.25rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    margin-top: 5.625rem;
    margin-bottom: 5.625rem;
    box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.15);
    border: 0.0625rem solid #f0f0f0;
}

.gemini-overlay {
    height: 100%;
    width: 100%;
    border-radius: 16px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gemini-container {
    text-align: center;
    padding: 20px;
}

.gemini-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0B1F33;
    margin-bottom: 0.625rem;
}

.gemini-text p {
    font-size: 0.9375rem;
    color: #3F3F3F;
    max-width: 62.5rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* PLANS & PRICING */
.pricing-wrapper {
    padding: 4.375rem 0;
    background: #F4F4F4;
}

.pricing-container {
    max-width: 100rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.pricing-heading {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    background: linear-gradient(90deg, #3AB2EA, #2B3D91);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #505050;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    width: 100%;
    margin: 0;
}

.pricing-card {
    flex: 1 1 20rem;
    max-width: 21.25rem;
    min-height: 34.375rem;
    height: auto;
    background: #FFFFFF;
    border: 0.125rem solid rgba(196, 196, 196, 0.75);
    border-radius: 1rem;
    padding: 1.5rem 1.125rem 1.75rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(43, 61, 145, 0.15);
}

.pricing-card.active {
    background: linear-gradient(180deg, #2BABE1 0%, #879FF3 100%);
    border: 3px solid #008ACF;
}

.plan-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #008ACF;
    margin-bottom: 1rem;
}

.pricing-card.active .plan-title {
    color: #FFFFFF;
    font-weight: 700;
}

.price-bar {
    background: #008ACF;
    color: #FFFFFF;
    width: calc(100% + 2.25rem);
    margin-left: -1.125rem;
    min-height: 2.8125rem;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 400;
}

.price-bar.white {
    background: #FFFFFF;
    color: #008ACF;
}

.price-bar.full {
    justify-content: center;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.125rem;
    font-size: 1rem;
    color: #000000;
}

.features li::before {
    content: "✓";
    min-width: 22px;
    height: 22px;
    background: #97DCFF;
    color: #008ACF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-card.active .features li {
    color: #FFFFFF;
}

.pricing-card.active .features li::before {
    background: #FFFFFF;
    color: #008ACF;
}

.btn-outline,
.btn-white {
    display: inline-block;
    width: 8.75rem;
    height: 2.625rem;
    align-self: center;
    border: 1.5px solid #2655A5;
    background: #FFFFFF;
    color: #2655A5;
    font-size: 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    padding: 0.625rem 1.5rem;
    text-decoration: none;
}

.btn-outline:hover,
.btn-white:hover {
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
    color: #ffffff;
    text-decoration: none;
    border-color: transparent;
}

/* SECURITY & COMPLIANCE */
.security-section {
    padding: 50px 0;
    background: #0588C7;
    margin-top: 0;
}

.security-section .container {
    max-width: 87.5rem;
    margin: 0 auto;
    padding: 1.875rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.security-title-main {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    margin-top: -0.625rem;
}

.security-subtitle {
    max-width: 62.5rem;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: #ffffff;
    font-size: 1.125rem;
    line-height: 1.6;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.security-card {
    background: #ffffff;
    border-radius: 1rem;
    width: 100%;
    max-width: 19.3125rem;
    height: 12.9375rem;
    padding: 1.25rem 0.9375rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(43, 61, 145, 0.15);
}

.security-card img {
    width: 4.375rem;
    height: 4.375rem;
    object-fit: contain;
    margin-bottom: 1rem;
}

.security-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0088CC;
    line-height: 1.4;
}

/* BITSWARE PARTNER SECTION */
.bitsware-section {
    width: 100%;
    max-width: 77.4375rem;
    margin: 3.75rem auto 1.25rem;
    padding: 1.25rem 1.25rem;
}

.bitsware-heading {
    text-align: center;
    color: #008ACF;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2.5rem;
}

.bitsware-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.bitsware-card {
    width: 23.75rem;
    min-height: 11.25rem;
    background: #FFFFFF;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.05);
    border: 0.0625rem solid #f0f0f0;
}

.bitsware-icon {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: contain;
    flex-shrink: 0;
}

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

.bitsware-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.bitsware-content p {
    font-size: 0.8125rem;
    color: #505050;
    line-height: 1.5;
    margin: 0;
}

/* GEMINI FEATURE SECTION */
.gemini-wrapper {
    display: flex;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 3.125rem;
    padding-top: 4.375rem;
    margin-bottom: 1.25rem;
    margin-left: 1.25rem;
    margin-right: 1.25rem;
}

.gemini-card {
    width: 100%;
    max-width: 93.75rem;
    min-height: 25rem;
    height: auto;
    border-radius: 1.5rem;
    display: flex;
    overflow: hidden;
    background: linear-gradient(270deg,
            rgba(243, 243, 243, 0) 0%,
            rgba(32, 159, 226, 0.1) 50%,
            rgba(141, 107, 194, 0.1) 100%);
}

.gemini-left {
    flex: 1.2;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gemini-heading {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #906AC1 0%, #1BA1E3 50%, #408FD8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gemini-subtext {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #000000;
    max-width: 37.5rem;
    margin-bottom: 1.875rem;
}

.gemini-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gemini-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #000;
    margin-bottom: 1.125rem;
}

.gemini-icon {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.375rem;
    object-fit: contain;
    flex-shrink: 0;
}

.gemini-right {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.gemini-right img {
    max-width: 36.25rem;
    height: auto;
    max-height: 27.25rem;
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    object-fit: contain;
}

/* CTA SECTION */
.cta {
    padding: 3.125rem 0 1.875rem 0;
    background: white;
    display: flex;
    justify-content: center;
}

.cta .container {
    position: relative;
    width: 100%;
    max-width: 87.5rem;
    margin: 0 auto;
    padding: 0 4.6%;
}

.cta-main-frame {
    position: relative;
    width: 100%;
    max-width: 81.25rem;
    height: 21.875rem;
    margin: 0 auto;
    background: linear-gradient(90deg, #A7D6FF 0%, rgba(0, 138, 207, 0.5) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3.125rem 4.6%;
    overflow: visible;
}

.cta-inner-content {
    flex: 1;
    max-width: 37.5rem;
    z-index: 3;
}

.cta-inner-content h2 {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-inner-content p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #505050;
    margin-bottom: 1.5rem;
    max-width: 28.125rem;
}

.btn-cta-outline {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.625rem 1.5rem;
    border: 0.0625rem solid #2655A5;
    border-radius: 0.5rem;
    background: rgba(167, 214, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.875rem;
    color: #2655A5;
    text-decoration: none;
}

.btn-cta-outline:hover {
    background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
    color: #ffffff;
    text-decoration: none;
    border-color: transparent;
}

.cta-image {
    position: relative;
    width: 22.6%;
    height: auto;
    align-self: flex-end;
    z-index: 2;
    margin-bottom: -3.125rem;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    display: block;
}

/* DEVICE RESPONSIVE */

/* Large Desktop (min-width: 1400px) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-description {
        font-size: 1.5rem;
    }

    .pricing-heading {
        font-size: 2.625rem;
    }

    .gemini-heading {
        font-size: 2.625rem;
    }
}

/* Desktop (max-width: 1399px) */
@media (max-width: 1399px) {
    .hero-title {
        font-size: 3.25rem;
    }

    .hero-description {
        font-size: 1.375rem;
    }

    .pricing-grid {
        justify-content: center;
        gap: 20px;
    }

    .pricing-card {
        flex: 0 1 300px;
        max-width: 320px;
    }

    .cta-main-frame {
        height: auto;
        min-height: 300px;
    }

    .cta-image {
        width: 240px;
        right: 40px;
    }
}

/* Tablet Landscape (max-width: 1199px) */
@media (max-width: 1199px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        padding: 0 20px;
        gap: 30px;
    }

    .hero-title {
        font-size: 2.625rem;
    }

    .hero-description {
        font-size: 1.125rem;
        max-width: 100%;
    }

    .hero-image img,
    .hero-img {
        max-width: 400px;
    }

    .whysmart-frame {
        padding: 50px 40px;
    }

    .whysmart-title {
        font-size: 2rem;
    }

    .whysmart-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .gemini-banner {
        margin-left: 15px;
        margin-right: 15px;
        height: 250px;
    }

    .pricing-heading {
        font-size: 2.25rem;
        margin-bottom: 40px;
    }

    .pricing-subtitle {
        font-size: 1.125rem;
        line-height: 28px;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 700px;
        margin: 0 auto;
    }

    .pricing-card {
        flex: 0 1 260px;
        max-width: 280px;
        flex: none;
        width: 100%;
        max-width: none;
        min-height: 500px;
    }

    .security-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-left: 100px;
    }

    .bitsware-card {
        width: calc(50% - 10px);
        min-width: 300px;
    }

    .gemini-card {
        min-height: 350px;
    }

    .gemini-left {
        padding: 30px;
    }

    .gemini-heading {
        font-size: 2rem;
    }

    .cta-main-frame {
        height: 320px;
        padding: 30px 40px;
        overflow: visible;
    }

    .cta-inner-content h2 {
        font-size: 1.875rem;
    }

    .cta-image {
        width: 220px;
        height: 360px;
        margin-bottom: -40px;
    }

    .cta-image img {
        height: 97%;
        width: 100%;
        object-fit: contain;
        object-position: bottom;
        width: 270px;
        align-self: center;
        z-index: 2;
        margin-bottom: -40px;
    }
}

/* Tablet Portrait (max-width: 900px) */
@media (max-width: 900px) {

    .hero-section,
    .workspace-hero {
        padding: 50px 0;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
    }

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

    .hero-title {
        font-size: 2.375rem;
    }

    .hero-description {
        font-size: 1rem;
        text-align: center;
    }

    .hero-image {
        justify-content: center;
    }

    .hero-image img,
    .hero-img {
        max-width: 350px;
    }

    .btn-compare.btn-desktop {
        display: none;
    }

    .btn-compare.btn-mobile {
        display: inline-block;
        margin-top: 15px;
    }

    .whysmart-wrapper {
        padding: 40px 15px;
    }

    .whysmart-frame {
        padding: 40px 30px;
        border-radius: 20px;
    }

    .whysmart-title {
        font-size: 1.75rem;
        margin-bottom: 35px;
    }

    .whysmart-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .whysmart-card {
        min-height: 220px;
        padding: 24px;
    }

    .whysmart-card h3 {
        font-size: 1.125rem;
    }

    .whysmart-card p {
        font-size: 0.8125rem;
    }

    .highlight-card {
        padding: 24px;
        border-radius: 16px;
        border-width: 2px;
        box-shadow: 0 0 20px rgba(71, 150, 227, 0.25),
            0 0 35px rgba(202, 102, 115, 0.15),
            0 0 50px rgba(145, 119, 199, 0.15);
    }

    .gemini-banner {
        margin-left: 15px;
        margin-right: 15px;
        height: 220px;
    }

    .gemini-text h2 {
        font-size: 1.5rem;
    }

    .gemini-text p {
        font-size: 0.875rem;
    }

    .pricing-wrapper {
        padding: 60px 0;
    }

    .pricing-heading {
        font-size: 2rem;
    }

    .pricing-subtitle {
        font-size: 1rem;
        line-height: 26px;
        padding: 0 20px;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 700px;
        margin: 0 auto;
    }

    .pricing-card {
        flex: none;
        width: 100%;
        max-width: none;
        min-height: 480px;
    }

    .pricing-card.active {
        order: 0;
    }

    .security-section {
        padding: 60px 0;
    }

    .security-title-main {
        font-size: 1.75rem;
    }

    .security-subtitle {
        font-size: 0.9375rem;
        padding: 0 20px;
    }

    .security-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 10px;
    }

    .security-card {
        padding: 25px 18px;
    }

    .security-card img {
        width: 60px;
        height: 60px;
    }

    .security-card h3 {
        font-size: 0.875rem;
    }

    .bitsware-section {
        padding: 40px 15px;
        margin: 40px auto;
    }

    .bitsware-heading {
        font-size: 1.75rem;
    }

    .bitsware-grid {
        gap: 16px;
    }

    .bitsware-card {
        width: calc(50% - 8px);
        min-width: 280px;
        min-height: 160px;
        padding: 20px;
    }

    .bitsware-icon {
        width: 48px;
        height: 48px;
    }

    .bitsware-content h3 {
        font-size: 0.9375rem;
    }

    .bitsware-content p {
        font-size: 0.75rem;
    }

    .gemini-wrapper {
        padding: 40px 15px;
    }

    .gemini-card {
        flex-direction: column;
        min-height: auto;
    }

    .gemini-left {
        display: contents;
    }

    .gemini-heading {
        order: 1;
        font-size: 1.75rem;
        text-align: center;
        padding: 30px 30px 10px 30px;
        /* width: 700px; */
    }

    .gemini-subtext {
        order: 2;
        text-align: center;
        max-width: 100%;
        padding: 0 30px;
        margin-bottom: 15px;
    }

    .gemini-right {
        order: 3;
        padding: 20px;
    }

    .gemini-right img {
        width: 100%;
        max-width: none;
        height: auto;
        border-radius: 16px;
    }

    .gemini-points {
        order: 4;
        max-width: 500px;
        margin: 0 auto;
        padding: 10px 30px 30px 30px;
    }

    .cta {
        padding: 60px 0 50px 0;
    }

    .cta-main-frame {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        height: auto;
        min-height: auto;
    }

    .cta-inner-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .cta-inner-content h2 {
        font-size: 1.75rem;
    }

    .cta-inner-content p {
        max-width: 100%;
    }

    .cta-image {
        position: relative;
        margin-top: 20px;
        width: 180px;
        margin-bottom: -50px;
        align-self: center;
    }
}
@media (max-width: 900px) {
    .security-grid {
        grid-template-columns: repeat(1fr);
        gap: 20px;
        padding: 20px;
        max-width: 700px;
        margin: 0 auto;
    }

    .security-card {
        min-height: auto;
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .security-card img {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .security-card h3 {
        font-size: 16px;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {

    .hero-section,
    .workspace-hero {
        padding: 40px 0;
    }

    .hero-content {
        padding: 0 15px;
        gap: 0px;
        display: flex;
        flex-direction: column;
    }

    .hero-text,
    .hero-image {
        display: contents;
    }

    .hero-title {
        order: 1;
        font-size: 2rem;
    }

    .hero-description {
        order: 2;
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .hero-description br {
        display: none;
    }

    .hero-image img,
    .hero-img {
        order: 3;
        margin-bottom: 20px;
        max-width: 300px;
    }

    .btn-compare {
        order: 4;
        width: fit-content;
        align-self: center;
        text-align: center;
        margin-top: 10px;
        padding: 10px 24px;
        font-size: 0.875rem;
    }

    .whysmart-wrapper {
        padding: 30px 12px;
    }

    .whysmart-frame {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .whysmart-title {
        font-size: 1.375rem;
        margin-bottom: 25px;
    }

    .whysmart-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .whysmart-card {
        min-height: 147.2px;
        padding: 20px;
        position: relative;
    }

    .whysmart-card .icon {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .whysmart-card h3 {
        font-size: 1.0625rem;
        max-width: calc(100% - 60px);
    }

    .whysmart-card p {
        font-size: 0.8125rem;
    }

    .highlight-card {
        padding: 24px 20px;
        border-radius: 14px;
        border-width: 2px;
        box-shadow: 0 0 15px rgba(71, 150, 227, 0.2),
            0 0 25px rgba(202, 102, 115, 0.12),
            0 0 35px rgba(145, 119, 199, 0.12);
    }

    .gemini-banner {
        margin-left: 12px;
        margin-right: 12px;
        height: auto;
        min-height: 180px;
        border-radius: 16px;
    }

    .gemini-text h2 {
        font-size: 1.25rem;
    }

    .gemini-text p {
        font-size: 0.8125rem;
    }

    .pricing-wrapper {
        padding: 50px 0;
    }

    .pricing-container {
        padding: 0 15px;
    }

    .pricing-heading {
        font-size: 1.625rem;
        margin-bottom: 15px;
    }

    .pricing-subtitle {
        font-size: 0.875rem;
        line-height: 22px;
        margin-bottom: 35px;
    }

    .pricing-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .pricing-card {
        width: 100%;
        max-width: 400px;
        min-height: 480px;
        padding: 20px 16px 24px;
    }

    .plan-title {
        font-size: 1.625rem;
        margin-bottom: 12px;
    }

    .price-bar {
        width: calc(100% + 32px);
        margin-left: -16px;
        font-size: 0.875rem;
        min-height: 40px;
    }

    .features li {
        font-size: 0.8125rem;
        margin-bottom: 14px;
    }

    .btn-outline,
    .btn-white {
        width: 130px;
        height: 40px;
        font-size: 0.8125rem;
    }

    .security-section {
        padding: 50px 0;
    }

    .security-section .container {
        padding: 0 15px;
    }

    .security-title-main {
        font-size: 1.5rem;
    }

    .security-subtitle {
        font-size: 0.875rem;
        margin-bottom: 30px;
    }

    .security-subtitle br {
        display: none;
    }

    .security-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .security-card {
        padding: 20px 12px;
        border-radius: 10px;
    }

    .security-card img {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }

    .security-card h3 {
        font-size: 0.8125rem;
    }

    .bitsware-section {
        padding: 35px 12px;
        margin: 35px auto;
    }

    .bitsware-heading {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .bitsware-grid {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .bitsware-card {
        width: 100%;
        max-width: 400px;
        min-height: auto;
        padding: 18px;
        gap: 14px;
        align-items: flex-start;
    }

    .bitsware-content {
        flex: 1;
        min-width: 0;
    }

    .bitsware-icon {
        width: 44px;
        height: 44px;
    }

    .bitsware-content h3 {
        font-size: 0.875rem;
        margin-bottom: 6px;
    }

    .bitsware-content p {
        font-size: 0.75rem;
        line-height: 1.5;
        text-align: left;
    }

    .gemini-wrapper {
        padding: 35px 12px 50px 12px;
    }

    .gemini-card {
        border-radius: 18px;
    }

    .gemini-heading {
        font-size: 1.625rem;
        padding: 25px 20px 10px 20px;
    }

    .gemini-subtext {
        font-size: 0.875rem;
        margin-bottom: 25px;
        padding: 0 20px;
    }

    .gemini-points {
        padding: 0 20px 25px 20px;
    }

    .gemini-points li {
        font-size: 0.8125rem;
        margin-bottom: 14px;
    }

    .gemini-icon {
        width: 24px;
        height: 24px;
    }

    .gemini-right img {
        max-width: none;
    }

    .cta {
        padding: 50px 0 40px 0;
    }

    .cta .container {
        padding: 0 12px;
    }

    .cta-main-frame {
        padding: 35px 25px 0 25px;
        border-radius: 14px;
        overflow: visible;
        min-height: auto;
        max-height: none;
    }

    .cta-inner-content h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .cta-inner-content p {
        font-size: 0.8125rem;
        margin-bottom: 24px;
    }

    .btn-cta-outline {
        padding: 10px 20px;
        font-size: 0.8125rem;
    }

    .cta-image {
        width: 200px;
        height: 250px;
        margin: 20px auto 0;
        position: relative;
        left: auto;
        transform: none;
        right: auto;
        display: block;
    }

    .cta-image img {
        height: 100%;
        width: 100%;
        object-fit: contain;
        object-position: top;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {

    .hero-section,
    .workspace-hero {
        padding: 20px 0;
    }

    .hero-content {
        padding: 0 12px;
        gap: 0px;
    }

    .hero-title {
        font-size: 1.625rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 0.875rem;
    }

    .hero-image img,
    .hero-img {
        max-width: 250px;
    }

    .btn-compare {
        padding: 10px 20px;
        font-size: 0.8125rem;
    }

    .whysmart-wrapper {
        padding: 10px 10px;
    }

    .whysmart-frame {
        padding: 25px 16px;
        border-radius: 14px;
    }

    .whysmart-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .whysmart-card {
        padding: 18px;
    }

    .whysmart-card .icon {
        width: 40px;
        height: 40px;
        top: 12px;
        right: 18px;
    }

    .whysmart-card h3 {
        font-size: 1rem;
        max-width: calc(100% - 55px);
    }

    .whysmart-card p {
        font-size: 0.75rem;
    }

    .highlight-card {
        padding: 18px;
        border-radius: 12px;
        border-width: 2px;
        box-shadow: 0 0 12px rgba(71, 150, 227, 0.18),
            0 0 20px rgba(202, 102, 115, 0.1),
            0 0 28px rgba(145, 119, 199, 0.1);
    }

    .gemini-banner {
        margin-left: 10px;
        margin-right: 10px;
        min-height: 150px;
        border-radius: 14px;
    }

    .gemini-container {
        padding: 15px;
    }

    .gemini-text h2 {
        font-size: 1.125rem;
    }

    .gemini-text p {
        font-size: 0.75rem;
    }

    .pricing-wrapper {
        padding: 40px 0;
    }

    .pricing-container {
        padding: 0 12px;
    }

    .pricing-heading {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .pricing-subtitle {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 40px;
        margin-top: 0;
    }

    .pricing-card {
        min-height: 500px;
        padding: 18px 14px 22px;
    }

    .plan-title {
        font-size: 1.5rem;
    }

    .price-bar {
        width: calc(100% + 28px);
        margin-left: -14px;
        font-size: 0.8125rem;
    }

    .features li {
        font-size: 0.75rem;
        gap: 10px;
    }

    .features li::before {
        min-width: 20px;
        height: 20px;
        font-size: 0.625rem;
    }

    .security-section {
        padding: 40px 0;
        margin-top: 30px;
        margin-bottom: 50px;
    }

    .security-section .container {
        padding: 0 12px;
    }

    .security-title-main {
        font-size: 1.25rem;
    }

    .security-subtitle {
        font-size: 0.8125rem;
        margin-bottom: 25px;
    }

    .security-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-left: 20px;
        margin-right: 20px;
        justify-items: center;
    }

    .security-card {
        padding: 20px 16px;
        flex-direction: column;
        justify-content: center;
        gap: 16px;
    }

    .security-card img {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .security-card h3 {
        font-size: 0.875rem;
        text-align: center;
    }

    .bitsware-section {
        padding: 0 10px;
        margin: 0 auto;
    }

    .bitsware-heading {
        font-size: 1.25rem;
        margin-bottom: 25px;
        margin-top: 20px;
        padding-top: 25;
    }

    .bitsware-card {
        padding: 16px;
        gap: 12px;
        align-items: flex-start;
    }

    .bitsware-content {
        flex: 1;
        min-width: 0;
    }

    .bitsware-icon {
        width: 40px;
        height: 40px;
    }

    .bitsware-content h3 {
        font-size: 0.8125rem;
    }

    .bitsware-content p {
        font-size: 0.75rem;
        line-height: 1.5;
        text-align: left;
    }

    .gemini-wrapper {
        padding: 20px 10px 10px 10px;
        margin-top: 20px;
    }

    .gemini-card {
        border-radius: 14px;
    }

    .gemini-left {
        padding: 20px 16px;
    }

    .gemini-heading {
        font-size: 1.375rem;
    }

    .gemini-subtext {
        font-size: 0.8125rem;
        margin-bottom: 20px;
    }

    .gemini-points li {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .gemini-icon {
        width: 22px;
        height: 22px;
    }

    .gemini-right {
        padding: 15px;
    }

    .gemini-right img {
        max-height: 200px;
    }

    .cta {
        padding: 30px 0 20px 0;
    }

    .cta .container {
        padding: 0 10px;
    }

    .cta-main-frame {
        padding: 40px 20px 0 20px;
        border-radius: 12px;
        overflow: hidden;
        max-height: 400px;
    }

    .cta-inner-content h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: #ffffff;
    }

    .cta-inner-content p {
        font-size: 0.75rem;
        margin-bottom: 16px;
    }

    .btn-cta-outline {
        padding: 10px 18px;
        font-size: 0.75rem;
    }

    .cta-image {
        width: 220px;
        margin-top: 30px;
        margin-bottom: 0;
    }

    .cta-image img {
        max-height: 180px;
        display: block;
        margin-bottom: -5px;
    }
}

/* Extra Small Mobile (max-width: 320px) */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.375rem;
    }

    .hero-description {
        font-size: 0.8125rem;
    }

    .hero-image img,
    .hero-img {
        max-width: 200px;
    }

    .whysmart-title {
        font-size: 1.125rem;
    }

    .pricing-heading {
        font-size: 1.25rem;
    }

    .plan-title {
        font-size: 1.375rem;
    }

    .security-title-main {
        font-size: 1.125rem;
    }

    .bitsware-heading {
        font-size: 1.125rem;
    }

    .gemini-heading {
        font-size: 1.25rem;
    }

    .cta-inner-content h2 {
        font-size: 1.125rem;
    }

    .cta-image {
        width: 120px;
    }
}
