@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* header */

.header-area {
    position: relative;
    z-index: 99;
}

.logo {
    max-height: 100px;
}

.navbar-nav {
    gap: 65px;
}

.nav-link {
    color: #000;
    font-weight: 400;
    transition: .3s;
    font-size: 0.9375rem;
}

.nav-item a {
    color: #000;
    font-weight: 400;
    font-size: 0.9375rem;
}

.nav-link:hover {
    color: #1e88ff;
}

.login-btn {
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

.signup-btn {
    color: #fff;
    text-decoration: none;
    padding: 6px 24px;
    border-radius: 10px;
    font-weight: 600;
}

.signup-btn:hover {
    background: #0075ff;
    color: #fff;
}

.dropdown-hover {
    position: relative;
}

.custom-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;
    z-index: 999;
}

.custom-dropdown a {
    display: block;
    padding: 6px 10px;
    color: #222;
    text-decoration: none;
    font-size: 14px;
}

.custom-dropdown a:hover {
    background: #f5f5f5;
}

/* Hover Effect */

.dropdown-hover:hover .custom-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item {
    position: relative;
}

/* Mega Menu Box */
.menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 450px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    z-index: 999;
}

/* Hover */
.menu-item:hover .menu {
    opacity: 1;
    visibility: visible;
}

/* Item */
.item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.item i {
    font-size: 24px;
    color: #3b4cff;
}

.item span {
    font-size: 12px;
    color: #222;
}

.item:hover span {
    color: #3b4cff;
}

/* heroSection */

.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    background:
        radial-gradient(circle at right center,
            rgba(173, 216, 230, .35),
            transparent 35%);
}

.hero-over {
    position: absolute;
    left: 0;
    top: 60px;
    width: 250px;
    height: 500px;
    background-size: 30px 30px;
    filter: brightness(0.9);
}

.hero-over img {
    top: 30px;
    width: 250px;
    height: 350px;
    position: relative;
}

.hero-content::after {
    content: "";
    position: absolute;
    left: -300px;
    top: 30%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(63, 167, 219, 0.55) 10%,
            rgba(111, 206, 255, .15) 40%,
            transparent 75%);
    filter: blur(70px);
}

.hero-content h1 {
    font-size: 3.8333rem;
    font-weight: 700;
    color: #000;
    font-style: normal;
    line-height: 78.83px;
    z-index: 5;
    position: relative;
}

.hero-content h1 span {
    display: block;
    background: linear-gradient(90deg, #1265FF 0%, #048CFF 47.6%, #0ADFFB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
    color: transparent;
}

.hero-content p {
    max-width: 330px;
    margin-top: 25px;
    color: #7D7D7D;
    font-size: 1.03625;
    line-height: 1.3;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;

}

.allbtn {
    background: #048FFF;
    background: linear-gradient(90deg, rgba(4, 143, 255, 1) 0%, rgba(37, 215, 254, 1) 50%);
}

.btn-start {
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-start i {
    font-size: 18px;
    color: #180DE7;
    background: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-download {
    border: 1px solid #222;
    color: #111;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 650px;
    margin: auto;
}

.cloud-img {
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.download-dropdown {
    position: relative;
    display: inline-block;
}

.download-menu {
    position: absolute;
    top: 110%;
    left: 0;
    min-width: 250px;
    background: #fff;
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s ease;
    z-index: 999;
}

.download-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    font-size: 12px;
}

.download-menu a:hover {
    background: #f5f8ff;
    color: #2196ff;
}

.download-menu i {
    font-size: 14px;
    color: #2196ff;
}

/* Hover Open */

.download-dropdown:hover .download-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* backup-share */

.backup-share-section {
    position: relative;
    overflow: hidden;
}

/* Left Gradient Glow */
.backup-share-section::before {
    content: "";
    position: absolute;
    left: -250px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(102, 196, 243, .50) 0%,
            rgba(111, 206, 255, .15) 40%,
            transparent 75%);
    filter: blur(70px);

}

/* Right Gradient Glow */
.backup-share-section::after {
    content: "";
    position: absolute;
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(111, 206, 255, .35) 0%,
            rgba(111, 206, 255, .15) 40%,
            transparent 75%);
    filter: blur(70px);
}

.feature-image {
    position: relative;
    z-index: 2;
}

.feature-image img {
    max-width: 400px;
    animation: float 4s ease-in-out infinite;
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-content h2 {
    font-size: 62.57px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    line-height: 73.83px;
}

.feature-content p {
    color: #777;
    font-size: 1.03625rem;
    line-height: 1.3;
    margin-bottom: 35px;
    font-weight: 500;
    font-style: normal;
}

/* secure section */
.secure-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* Left Gradient */
.secure-section::before {
    content: "";
    position: absolute;
    left: -250px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(89, 201, 241, .50) 0%,
            rgba(113, 216, 255, .15) 35%,
            transparent 70%);

    filter: blur(80px);
}

/* Right Gradient */
.secure-section::after {
    content: "";
    position: absolute;
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(101, 209, 248, .50) 0%,
            rgba(113, 216, 255, .15) 35%,
            transparent 70%);
    filter: blur(80px);
}

.secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #eef7ff;
    background: linear-gradient(90deg, rgba(162, 230, 255, 0.61) 0%, #FFFFFF 100%);
    border-radius: 40.83px;
    color: #392FFA;
    font-size: 0.6225rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.secure-title {
    font-size: 3.894375rem;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    margin-bottom: 25px;
}

.secure-title span {
    background: linear-gradient(90deg, #106AFF 0%, #0594FF 37.5%, #08C3FD 63.46%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.secure-desc {
    font-size: 1.444375rem;
    color: #7c7c7c;
    line-height: 30.67px;
    max-width: 600px;
    font-weight: 500;
}

.secure-list {
    list-style: none;
    padding: 0;
    margin: 35px 0;
}

.secure-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
    color: #777;
    font-size: 0.841875rem;
}

.secure-list i {
    color: #2563eb;
}

.learn-btn {
    display: inline-block;
    background: linear-gradient(90deg,
            #1f8fff,
            #2ec5ff);
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.031875rem;
}

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

/* premium section */

.premium-section {
    padding: 50px 0;
    background: #fff;
}

.premium-title {
    text-align: center;
    font-size: 3.714375rem;
    font-weight: 700;
    margin-bottom: 50px;
}


.premium-title span {
    background: linear-gradient(90deg, #088AFF 40%, #08C3FD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cards Layout */

.premium-wrapper {
    width: 100%;
}

/* Card */

.premium-card {
    height: 270px;
    background: #F8FAFC;
    border-radius: 10px;
    padding: 30px 20px;
    border: 1px solid #e5e5e5;
    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.premium-card span {
    color: #1687ff;
    font-size: 28px;
    font-weight: 700;
}

.premium-card h5 {
    font-size: 1.33375rem;
    margin-top: 25px;
    font-weight: 600;
    font-style: normal;
}


.premium-card p {
    font-size: 0.881875rem;
    color: #777;
    line-height: 1.6;
    font-weight: 400;
}

/* Bottom cards */
.top-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
    margin-bottom: 80px;

}

/* Connector lines */
.top-cards::after {
    content: "";
    position: absolute;
    bottom: -45px;
    left: 12%;
    width: 76%;
    height: 1.9px;
    background: linear-gradient(90deg, #1272FF 8.62%, #0FDCFD 41.89%, #0780FF 77.22%, #0FDCFD 100%);
}

.top-cards .premium-card::before {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    height: 25px;
    width: 2px;
    background: linear-gradient(90deg, #1272FF 8.62%, #0FDCFD 41.89%, #0780FF 77.22%, #0FDCFD 100%);
    bottom: -45px;
}

.top-cards .premium-card::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #168cff;
    box-shadow:
        0 0 10px #168cff;
}

.bottom-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.bottom-cards .premium-card {
    width: 270px;
    position: relative;
    background: #F8FAFC;
}

.bottom-cards .premium-card::before {
    content: "";
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    height: 20px;
    width: 2px;
    background: #21bfff;
}

/* Vertical dot */

.bottom-cards .premium-card::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #168cff;
    box-shadow:
        0 0 10px #168cff;
}

.detail-btn {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #1272FF;
    text-decoration: none;
    font-size: 15.2px;
    font-weight: 600;
}

/* plan section */

.pricing-section {
    position: relative;
    padding: 35px 50px;
    color: white;
    overflow: hidden;
    min-height: 520px;
    width: 100%;
}

.pricing-section::before {
    content: "";
    position: absolute;
    inset: 0;
    left: 0;
    bottom: 10;
    width: 65%;
    height: 100%;
    background-image: url('/assets/css/braxImage/plan.png');
    /* important */
    background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;
    z-index: 1;
}

.pricing-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(41, 118, 243, 0.95),
            rgba(21, 119, 206, 0.95));
    z-index: 0;
}

/* Content above image */
.pricing-section .container-fluid {
    position: relative;
    z-index: 3;
}

/* LEFT */

.pricing-left {
    position: relative;
    z-index: 2;
}

.choose-tag {
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 30px;
    padding: 4px 20px;
    width: max-content;
    font-size: 14px;
    margin-bottom: 25px;
}

.pricing-left h1 {
    font-size: 26.19px;
    font-weight: 700;
    line-height: 35.15px;
    letter-spacing: 0px;
}

.pricing-left h1 span {
    background: linear-gradient(90deg,
            #0FDCFD,
            #A1C7FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.pricing-left p {
    font-size: 11.07px;
    opacity: .9;
    line-height: 1.5;
}

/* TABS */

.plan-tabs {
    display: flex;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 35px;
    width: 430px;
    margin: auto;
    overflow: hidden;
}

.plan-tabs div {
    padding: 8px 20px;
    font-weight: 600;
}

.plan-tabs .active {
    background: linear-gradient(105.26deg, #79ADF1 -15.93%, #1272FF 61.79%, #180DE7 102.07%);
    color: white;
    border-radius: 30px;
}

/* CARDS */

.pricing-cards,
.plan-tabs {
    position: relative;
    z-index: 5;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 25px;
    margin-top: 35px;
    align-items: start;
}

.price-card,
.billing-card {
    background: white;
    color: #15213b;
    border-radius: 6px;
    padding: 18px;
    height: 380px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.check-icon {
    color: #180DE7;
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
}

.billing-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    padding-right: 70px;
}

.disable-icon {
    color: #999;
    font-size: 1rem;
    margin-right: 10px;
}

.price-card h2 {
    font-size: 34px;
    margin: 8px 0 15px;
    font-weight: 500;
}

.price-card small {
    font-size: 11px;
    color: #555;
}

.premium-card small {
    font-size: 0.9rem;
    margin-top: 10px;
    color: #666666;
}

.price-card button,
.premium-card button {
    width: 100%;
    border: none;
    border-radius: 25px;
    padding: 8px 11.9px;
    background: #e8efff;
    color: #1655d8;
    font-weight: 600;
}

.premium-card button {
    background: linear-gradient(90deg, #157cff, #10cde9);
    color: white;
}

.price-card ul {
    padding: 0;
    margin-top: 25px;
}

.price-card li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 20px;
}

.premium-card h2 {
    font-size: 36px;
}

.disable {
    color: #646363;
}

.badges {
    display: flex;
    gap: 8px;
    margin-bottom: 5px;
}

.badges span {
    background: #187cff;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 5px;
}

.badges span:nth-child(2) {
    background: #eeeeff;
    color: #333;
}


/* BILLING */

.billing-card h5 {
    font-size: 16px;
    margin-bottom: 15px;
}

.billing {
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 13.04px;
    font-weight: 600;
    min-height: 75px;
    position: relative;
    padding: 15px 45px 15px 15px;
}

.billing::after {
    content: " ";
    width: 18px;
    height: 18px;
    border: 2px solid #777;
    border-radius: 50%;
    position: absolute;
    right: 18px;
    top: 25px;
    background: white;
}

.billing p {
    font-size: 9.73px;
    line-height: 16px;
    margin-top: 8px;
    margin-right: 20px;
    color: #555;
    font-weight: 600;
}

.billing.active {
    border: 2px solid #283cff;
}

.billing.active::after {
    background: #180DE7;
    border-color: #283cff;
}

.billing.active::before {
    content: "✓";
    color: white;
    position: absolute;
    right: 21px;
    top: 22px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.billing-card:before {
    content: "40% OFF";
    position: absolute;
    right: 20px;
    top: 20px;
    background: #180DE7;
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 11px;
    z-index: 3;
}

/* pricing banner section */

.pricing-banner-section {
    background: linear-gradient(90deg, #157cff, #10cde9);
    color: white;
    border-radius: 40px;
    position: relative;
    margin-top: 100px;
    margin-bottom: 60px;
}

.pricing-banner-image {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    z-index: 5;
    transform: translateY(-70px);
    margin-bottom: -30px;
}

.pricing-banner-image img {
    width: 100%;
    height: auto;
    display: block;
}

.pricing-banner-image .main-phone {
    position: relative;
    z-index: 2;
}

.pricing-banner-content {
    color: #fff;
}

.pricing-banner-content h2 {
    max-width: 600px;
}

.pricing-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    font-weight: 700;
    font-size: 14px;
    margin-top: 24px;

}

.pricing-tag i {
    font-size: 1rem;
}

.pricing-banner-content h2 {
    font-size: 3rem;
    line-height: 1.02;
    font-weight: 600;
    margin-bottom: 12px;
}

.pricing-badges {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    align-items: center;
    white-space: nowrap;
    margin-bottom: 24px;
}

.pricing-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    color: #fff;
    font-weight: 300;
    font-size: .75rem;
    white-space: nowrap;
}

.pricing-badges i {
    font-size: 1rem;
}

.pricing-action-card {
    background: #fff;
    border-radius: 30px;
    padding: 16px 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .14);
    min-height: 180px;
    min-width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-action-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #111;
}

.pricing-action-card p {
    margin-bottom: 24px;
    color: #6b7a94;
    line-height: 1.3;
}

.pricing-action-card .btn {
    border-radius: 12px;
    padding: 4px 24px;
    font-weight: 600;
}

/* referral */
.referral-section {
    overflow: hidden;
}

.referral-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #000;
    margin-bottom: 20px;
}

.referral-content h1 span {
    background: linear-gradient(90deg, #116AFF 0%, #0593FF 37.5%, #08C9FC 63.46%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.referral-content p {
    max-width: 500px;
    color: #7b7b7b;
    font-size: 1.32rem;
    line-height: 1.3;
    font-weight: 500;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

/* .hero-shape {
    width: 100%;
    max-width: 520px;
    overflow: hidden;
    border-radius: 120px 0 120px 120px;
    background: #edf5ff;
} */

.hero-shape img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.earning-badge {
    position: absolute;
    left: 30%;
    bottom: 20px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    color: #0d6efd;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
}

.feature-wrapper {
    padding-top: 30px;
}

.feature-item {
    text-align: center;
    height: 100%;
    padding: 15px 25px;
    position: relative;
}

.border-right::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20px;
    width: 1px;
    height: 140px;
    background: #e6e6e6;
}


.icon-box {
    width: 75px;
    height: 75px;
    margin: auto;
    border-radius: 50%;
    background: #eef4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.icon-box i {
    font-size: 40px;
    color: #180DE7;
    font-weight: 800;
}

.feature-number {
    color: #180DE7;
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.feature-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-item p {
    color: #505050;
    font-size: 1rem;
    line-height: 1.3;
    text-align: center;
}

.cta-box {
    background: #eef9ff;
    border-radius: 15px;
    padding: 30px 30px;
}

.cta-left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 150px;
    width: 100%;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: -7px;
}

.avatar-group span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: -3px;
}

.count {
    margin-left: 10px;
    background: #2455ff;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

.cta-text {
    text-align: center;
}

.cta-text h5 {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-text p {
    margin: 0;
    color: #666;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-view {
    background: linear-gradient(93.16deg, #392FFA -18.87%, #0FDCFD 102.05%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-view:hover {
    background: linear-gradient(93.16deg, #392FFA -18.87%, #0FDCFD 102.05%);
    color: #fff;
}

/* number section */

.numbers-section {
    background: linear-gradient(90deg,
            #f7f7f7 0%,
            #eef4fa 50%,
            #f2f8fd 100%);
    overflow: hidden;
}

/* Left Content */

.trusted-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #3f51ff;
    background: #eef1ff;
    padding: 5px 10px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.numbers-content h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.numbers-content h2 span {
    background: linear-gradient(90deg, #0F70FF 62.5%, #0596FF 78.37%, #08C9FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.numbers-content p {
    color: #666;
    max-width: 320px;
    line-height: 1.7;
    margin-bottom: 25px;
}


/* Stats Area */

.stats-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.right-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stats-card {
    background: #fff;
    border-radius: 18px;
    padding: 45px 45px;
    min-width: 300px;
    min-height: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
}

.card-large {
    min-width: 300px;
    min-height: 250px;
}

.card-blue {
    background: #eef8ff;
}

.stats-card h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #2F3DF8;
    margin-bottom: 8px;
}

.stats-card span {
    display: block;
    width: 24px;
    height: 2px;
    background: #2f49ff;
    margin-bottom: 12px;
}

.stats-card p {
    margin: 0;
    color: #444;
    line-height: 1.4;
}


/* faqs section */

.faq-section {
    background: #f8fbff;
    width: min(900px, 100%);
    margin-inline: auto;
    padding: 60px 20px;
}

/* Heading */

.faq-badge {
    background: linear-gradient(90deg, rgba(163, 186, 255, 0.26) 0%, rgba(217, 247, 255, 0.9) 100%);
    color: #180DE7;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.faq-heading h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-top: 15px;
}

.faq-heading p {
    color: #666;
}

.heading-line {
    width: 40px;
    height: 3px;
    background: #2f7cff;
    border-image-source: linear-gradient(90deg, #1272FF 0%, #180DE7 47.12%, #0FDCFD 100%);
    margin: 20px auto 0;
}

/* Accordion */

.accordion-item {
    border: 1px solid #e4e7ec;
    border-radius: 10px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-button {
    background: #fff;
    box-shadow: none !important;
    font-weight: 600;
    padding: 18px 20px;
}

.accordion-button:not(.collapsed) {
    background: #fff;
    color: #000;
}

.accordion-body {
    background: #f4f8ff;
    color: #666;
    padding: 20px 55px;
}

.faq-number {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: #eef3ff;
    color: #3f51ff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

/* Bottom CTA */

.faq-support {
    margin-top: 30px;
    background: #dff5ff;
    border-radius: 12px;
    padding: 20px 25px;

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

.support-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.support-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f7cff;
    font-size: 22px;
}

.support-left h6 {
    margin-bottom: 4px;
    font-weight: 700;
}

.support-left p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.support-btns {
    display: flex;
    gap: 15px;
}

.btn-plan {
    border: 2px solid #0e51c4;
    color: #0e51c4;
    padding: 12px 24px;
}

/* footer section */

.footer-section {
    background: #000;
    border-radius: 25px 25px 0 0;
    padding: 85px 35px;
    color: white;
    margin: 15px 0 0;
}

.footer-wrapper {
    align-items: flex-start;
}

/* Logo */

.logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
}


.logo-area img {
    width: 230px;
}

.logo-area span {
    font-size: 20px;
    font-weight: 700;
}

.footer-brand p {
    font-size: 1rem;
    color: #ddd;
    /* margin-top: 5px; */
    line-height: 1.3;
    padding-top: 10px;
    padding-left: 20px;
    max-width: 200px;
}

.social-icons {
    margin-top: 10px;
    padding-left: 20px;
}

.social-icons a {
    color: white;
    margin-right: 18px;
    font-size: 1rem;
}

/* Columns */

.footer-column h5 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-column ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-column ul li {
    font-size: 1rem;
    color: #d7d7d7;
    margin-bottom: 8px;
}