﻿* {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

:root {
    --purple: #6b00de;
    --green: #b9ff29;
    --dark: #111111;
}

.themePrimary {
    color: var(--purple);
}

.themeSecondary {
    color: var(--green);
}

.main-navbar {
    background: #fff;
    padding: 16px 0;
    border-bottom: 1px solid #f1f1f1;
    position: sticky;
    top: 0;
    z-index: 999;
}

.brand-logo {
    font-size: 1.9rem;
    font-weight: 900;
    letter-spacing: .5px;
    color: var(--dark) !important;
}

    .brand-logo span {
        color: var(--purple);
    }

.navbar-nav .nav-link {
    color: #444 !important;
    font-weight: 600;
    margin: 0 10px;
    transition: .3s;
    position: relative;
}

    .navbar-nav .nav-link:hover {
        color: var(--purple) !important;
    }

.btn-login {
    border: 2px solid var(--purple);
    color: var(--purple) !important;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    margin-right: 10px;
    text-decoration: none;
}

    .btn-login:hover {
        background: var(--purple);
        color: #fff !important;
    }

.btn-start {
    background: var(--purple);
    color: #fff !important;
    padding: 11px 22px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
}

    .btn-start:hover {
        background: #5700b4;
        color: #fff;
        transform: translateY(-2px);
    }

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

@media(max-width:991px) {

    .navbar-nav {
        margin-top: 18px;
    }

        .navbar-nav .nav-link {
            margin: 0;
            padding: 12px 0;
        }

    .nav-buttons {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .btn-login,
    .btn-start {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }
}
/**/

/* ================= HERO BASE ================= */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    overflow: hidden;
    padding: 100px 0;
}

    /* SOFT BOTTOM FADE COLOR (MAIN EFFECT YOU WANT) */
    .hero-section::before {
        content: "";
        position: absolute;
        bottom: -200px;
        left: 50%;
        transform: translateX(-50%);
        width: 1200px;
        height: 600px;
        background: radial-gradient( circle, rgba(107, 0, 222, 0.12), rgba(185, 255, 41, 0.08), transparent 70% );
        filter: blur(60px);
        z-index: 0;
    }

    /* optional soft top fade */
    .hero-section::after {
        content: "";
        position: absolute;
        top: -200px;
        right: -200px;
        width: 500px;
        height: 500px;
        background: radial-gradient( circle, rgba(107, 0, 222, 0.08), transparent 70% );
        filter: blur(80px);
        z-index: 0;
    }

/* GRID */
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* BADGE - CLEAN STYLE */
.hero-badge {
    display: inline-block;
    font-size: .9rem;
    font-weight: 600;
    color: var(--purple);
    background: rgba(107, 0, 222, 0.08);
    padding: 8px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

/* TITLE - PREMIUM GRADIENT TEXT ONLY */
.hero-title {
    font-size: 4.2rem;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 25px;
    background: linear-gradient(90deg, var(--purple), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

/* BUTTONS - CLEAN OUTLINE + PRIMARY */
.btn-main {
    background: var(--purple);
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(107,0,222,0.25);
}

    .btn-main:hover {
        color: #fff;
        transform: translateY(-2px);
    }

.btn-demo {
    border: 2px solid #ddd;
    color: #111;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

    .btn-demo:hover {
        border-color: var(--purple);
        color: var(--purple);
    }

/* IMAGE */
.mockup-card {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

    .mockup-card img {
        width: 100%;
        display: block;
    }

    .mockup-card:hover {
        transform: translateY(-6px) scale(1.02);
    }

/* FLOAT CARD (LIGHT GLASS STYLE) */
.hero-card {
    position: absolute;
    right: 60px;
    bottom: 60px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 20px 24px;
    max-width: 280px;
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.hero-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

.hero-card-text {
    font-size: .9rem;
    color: #666;
    line-height: 1.6;
}
/* ================= STRIPE-STYLE BACKGROUND WAVE ================= */

.hero-bg-wave {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

    /* soft moving gradient blobs */
    .hero-bg-wave::before,
    .hero-bg-wave::after {
        content: "";
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        filter: blur(120px);
        opacity: 0.18;
        animation: waveMove 18s ease-in-out infinite alternate;
    }

    /* purple glow */
    .hero-bg-wave::before {
        background: radial-gradient(circle, var(--purple), transparent 70%);
        top: -200px;
        left: -150px;
    }

    /* green glow */
    .hero-bg-wave::after {
        background: radial-gradient(circle, var(--green), transparent 70%);
        bottom: -250px;
        right: -180px;
        animation-delay: 4s;
    }

/* extra subtle moving layer */
.hero-bg-wave {
    background: linear-gradient( 120deg, rgba(107,0,222,0.03), rgba(185,255,41,0.02), rgba(255,255,255,1) );
    background-size: 200% 200%;
    animation: bgShift 20s ease-in-out infinite;
}

@keyframes waveMove {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    50% {
        transform: translate(60px, -40px) scale(1.1);
    }

    100% {
        transform: translate(-40px, 60px) scale(1);
    }
}

@keyframes bgShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* RESPONSIVE */
@media(max-width:991px) {

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-card {
        display: none;
    }
}

@media(max-width:576px) {
    .hero-title {
        font-size: 2.4rem;
    }
}
/******/
/* ================= BRAND DOMAIN SECTION ================= */

.brand-domain-section {
    position: relative;
    overflow: hidden;
    background: #fff;
}

    .brand-domain-section::before {
        content: "";
        position: absolute;
        width: 900px;
        height: 400px;
        left: 50%;
        bottom: -220px;
        transform: translateX(-50%);
        background: radial-gradient(circle, rgba(107,0,222,0.10), rgba(185,255,41,0.06), transparent 70%);
        filter: blur(70px);
    }

/* TOP */

.brand-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(107,0,222,0.08);
    color: var(--purple);
    font-size: .85rem;
    font-weight: 700;
}

.brand-heading {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -2px;
    color: #111;
}

.brand-subtext {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #666;
}

/* INFO BOX */

.brand-info-box {
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #f1f1f1;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

    .brand-info-box:hover {
        transform: translateY(-4px);
    }

.check-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: rgba(107,0,222,0.08);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}


/* DOMAIN CARD */

.domain-card {
    max-width: 520px;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(0,0,0,0.06);
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
    position: relative;
}

    .domain-card::before {
        content: "";
        position: absolute;
        inset: auto -80px -120px -80px;
        height: 220px;
        background: radial-gradient(circle, rgba(107,0,222,0.18), rgba(185,255,41,0.08), transparent 70%);
        filter: blur(70px);
    }

.domain-top {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ff5f57;
}

.yellow {
    background: #febc2e;
}

.green {
    background: #28c840;
}

/* BODY */

.domain-body {
    padding: 90px 40px;
    position: relative;
    z-index: 2;
}

.domain-label {
    font-size: .95rem;
    color: #777;
    margin-bottom: 24px;
    font-weight: 600;
}

/* FIELD */

.domain-field {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 22px 30px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(107,0,222,0.10), rgba(185,255,41,0.08));
    border: 1px solid rgba(107,0,222,0.08);
    box-shadow: 0 15px 40px rgba(107,0,222,0.08);
}

.domain-prefix {
    font-size: 1.25rem;
    font-weight: 700;
    color: #666;
}

.changing-domain {
    font-size: 1.35rem;
    font-weight: 900;
    background: linear-gradient(90deg,var(--purple),#8e2dff,var(--green));
    background-size: 200% auto;
    animation: gradientMove 4s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* gradient moving effect */

@keyframes gradientMove {

    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

@media(max-width:576px) {

    .domain-body {
        padding: 60px 20px;
    }

    .domain-field {
        padding: 18px 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .domain-prefix,
    .changing-domain {
        font-size: 1rem;
    }
}

/* TOP */

.domain-top {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ff5f57;
}

.yellow {
    background: #febc2e;
}

.green {
    background: #28c840;
}

/* CHIPS */

.domain-chip {
    position: relative;
    z-index: 2;
    padding: 20px 22px;
    border-radius: 18px;
    font-size: 1.05rem;
    font-weight: 700;
    background: linear-gradient(90deg, rgba(107,0,222,0.08), rgba(185,255,41,0.08));
    border: 1px solid rgba(107,0,222,0.08);
}

    .domain-chip:hover {
        transform: translateX(6px);
    }

/* RESPONSIVE */

@media(max-width:991px) {

    .brand-heading {
        font-size: 3rem;
    }
}

@media(max-width:576px) {

    .brand-heading {
        font-size: 2.2rem;
    }

    .brand-subtext {
        font-size: 1rem;
    }
}
/* ================= SIMPLE HOW SECTION ================= */

.simple-how-section {
    padding: 90px 0;
    background: #fff;
    position: relative;
}

/* TOP */

.section-head {
    max-width: 850px;
    margin: auto;
    margin-bottom: 70px;
}

.simple-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(107,0,222,0.08);
    color: var(--purple);
    font-size: .85rem;
    font-weight: 700;
}

.simple-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -2px;
    color: #111;
    margin-top: 24px;
}

.simple-text {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #666;
    margin-top: 22px;
}

/* CARD */

.simple-step-card {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 28px;
    padding: 32px;
    height: 100%;
    transition: .35s;
    position: relative;
    overflow: hidden;
    position: relative;
}

    .simple-step-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.06);
        border-color: rgba(107,0,222,0.12);
    }

/* middle highlight card */

.active-card {
    background: linear-gradient( 180deg, rgba(107,0,222,0.03), rgba(255,255,255,1) );
}


.step-top {
    position: absolute;
    top: 22px;
    right: 24px;
}

.step-no {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -4px;
    background: linear-gradient( 180deg, rgba(107,0,222,0.14), rgba(107,0,222,0.03) );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
    pointer-events: none;
}

/* CONTENT */

.step-heading {
    font-size: 1.7rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 16px;
}

.step-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* IMAGE */

.step-image {
    border-radius: 18px;
    overflow: hidden;
    background: #f8f8f8;
}

    .step-image img {
        width: 100%;
        display: block;
    }

/* RESPONSIVE */

@media(max-width:991px) {

    .simple-title {
        font-size: 2.8rem;
    }
}

@media(max-width:576px) {

    .simple-how-section {
        padding: 90px 0;
    }

    .simple-title {
        font-size: 2.1rem;
    }

    .simple-text {
        font-size: 1rem;
    }

    .simple-step-card {
        padding: 24px;
    }

    .step-heading {
        font-size: 1.45rem;
    }
}

/* ================= PRICING ================= */

.pricing-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(107,0,222,0.08);
    color: var(--purple);
    font-weight: 700;
}

.pricing-title {
    font-weight: 500;
    letter-spacing: -2px;
    color: #111;
}

/* CARD */

.menu-price-card {
    background: linear-gradient( 180deg, rgba(107,0,222,0.05), rgba(255,255,255,1) );
    border: 1px solid rgba(107,0,222,0.08);
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
}

/* TOP STRIP */

.plan-strip {
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
}

.green-strip {
    background: #a458f5;
}

.orange-strip {
    background: #7a07f5;
}

.basic-strip {
    background: #c799f7;
}
/* BODY */
.plan-body {
    padding: 55px 42px;
}

/* PRICE */

.price-box {
    text-align: center;
    margin-bottom: 35px;
}

.currency {
    font-size: 1.6rem;
    font-weight: 450;
    vertical-align: top;
    margin-right: 4px;
}

.price {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -3px;
    color: #000;
}

.year {
    font-size: 1.6rem;
    font-weight: 450;
}

/* TEXT */

.plan-text {
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    color: #4b5b77;
    margin-bottom: 45px;
    min-height: 100px;
}

/* FEATURES */

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .feature-list li {
        font-size: 1rem;
        color: #000;
        margin-bottom: 10px;
        font-weight: 600;
        display: flex;
        align-items: flex-start;
        gap: 14px;
    }

        .feature-list li i {
            color: #5f966d;
            margin-top: 5px;
            font-size: 1rem;
        }

        .feature-list li:not(.active) {
            padding-left: 30px;
            color: #6c757d;
            font-weight: 400;
        }

/* RESPONSIVE */

@media(max-width:991px) {

    .pricing-title {
        font-size: 2.5rem;
    }

    .plan-body {
        padding: 40px 28px;
    }

    .price {
        font-size: 3.5rem;
    }
}

@media(max-width:576px) {

    .pricing-title {
        font-size: 2rem;
    }

    .plan-strip {
        font-size: 1.4rem;
    }

    .price {
        font-size: 3rem;
    }

    .year {
        font-size: 1.4rem;
    }

    .plan-text {
        font-size: 1rem;
    }

    .feature-list li {
        font-size: 1rem;
    }
}

/* ================= FOOTER ================= */

.instora-footer {
    background: linear-gradient( 135deg, rgba(107,0,222,0.04) 0%, rgba(185,255,41,0.10) 100% );
    position: relative;
    overflow: hidden;
    padding: 90px 0 30px;
    border-top: 1px solid rgba(107,0,222,0.08);
}

/* LOGO */

.footer-logo-img {
    height: 48px;
    margin-bottom: 22px;
}

.footer-about {
    color: #666;
    line-height: 1.9;
    max-width: 320px;
    font-size: .98rem;
}

/* TITLES */

.footer-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 24px;
}

/* LINKS */

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #666 !important;
    text-decoration: none;
    transition: .3s;
    font-weight: 500;
}

    .footer-links a:hover {
        color: var(--purple) !important;
        padding-left: 4px;
    }

/* CONTACT */

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    color: #666;
    line-height: 1.7;
}

.footer-contact i {
    color: var(--purple);
    margin-top: 4px;
}

.footer-contact a {
    color: #666 !important;
    text-decoration: none;
    transition: .3s;
}

    .footer-contact a:hover {
        color: var(--purple) !important;
    }
/* BOTTOM */

.footer-bottom-layout {
    margin-top: 60px;
    padding-top: 28px;
    border-top: 1px solid #f1f1f1;
    /* display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;*/
}

/* SOCIAL */

.footer-social {
    display: flex;
    gap: 12px;
}

    .footer-social a {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: rgba(107,0,222,0.06);
        color: var(--purple);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: .3s;
    }

        .footer-social a:hover {
            background: var(--purple);
            color: #fff;
            transform: translateY(-3px);
        }

.footer-bottom-layout p {
    color: #777;
    font-size: .92rem;
}

/* MOBILE */

@media(max-width:991px) {

    .instora-footer {
        text-align: center;
    }

    .footer-about {
        margin: auto;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom-layout {
        flex-direction: column;
    }
}

@media(max-width:576px) {

    .instora-footer {
        padding: 70px 0 25px;
    }

    .footer-logo-img {
        height: 42px;
    }
}

/* ================= HERO ================= */

.inner-hero {
    padding: 80px 0 80px;
    background: linear-gradient( 180deg, #ffffff 0%, #faf7ff 45%, #f6ffe8 100% );
}

.inner-hero-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(107,0,222,0.08);
    color: var(--purple);
    font-size: .85rem;
    font-weight: 700;
}

.inner-hero-title {
    font-size: 4rem;
    letter-spacing: -2px;
    font-weight: 600;
    margin-top: 28px;
    background: linear-gradient(90deg, var(--purple), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.inner-hero-text {
    max-width: 720px;
    margin: 24px auto 0;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.9;
}

/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 0 0 80px;
    background: #fff;
}

/* LEFT CARD */

.contact-info-card {
    background: linear-gradient( 180deg, rgba(107,0,222,0.05), rgba(255,255,255,1) );
    border: 1px solid rgba(107,0,222,0.08);
    border-radius: 32px;
    padding: 42px;
}

.info-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

.info-text {
    color: #666;
    line-height: 1.9;
    margin-bottom: 40px;
}

/* CONTACT ITEM */

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(107,0,222,0.08);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item span {
    display: block;
    color: #777;
    margin-bottom: 6px;
    font-size: .92rem;
}

.contact-item a,
.contact-item p {
    color: #111;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.7;
}

/* SOCIAL */

.contact-social {
    display: flex;
    gap: 14px;
    margin-top: 40px;
}

    .contact-social a {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        background: rgba(107,0,222,0.08);
        color: var(--purple);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: .3s;
    }

        .contact-social a:hover {
            background: var(--purple);
            color: #fff;
            transform: translateY(-3px);
        }

/* FORM CARD */

.contact-form-card {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 32px;
    padding: 42px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.03);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 35px;
}

/* INPUTS */

.form-label {
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}

.custom-input {
    height: 58px;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    padding: 14px 18px;
    box-shadow: none !important;
    transition: .3s;
}

    .custom-input:focus {
        border-color: var(--purple);
    }

.custom-textarea {
    min-height: 160px;
    resize: none;
    padding-top: 18px;
}

/* BUTTON */

.contact-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 16px;
    background: var(--purple);
    color: #fff;
    font-weight: 700;
    transition: .3s;
}

    .contact-btn:hover {
        background: #5700b4;
        transform: translateY(-2px);
    }

/* MOBILE */

@media(max-width:576px) {

    .contact-hero {
        padding: 90px 0 60px;
    }

    .contact-title {
        font-size: 2.1rem;
    }

    .contact-text {
        font-size: 1rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 28px;
        border-radius: 24px;
    }

    .form-title,
    .info-title {
        font-size: 1.6rem;
    }
}


/* =================get started  SECTION ================= */

/* CARD */

.getstarted-card {
    background: linear-gradient( 180deg, rgba(107,0,222,0.04), rgba(255,255,255,1) );
    border: 1px solid rgba(107,0,222,0.08);
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
}

/* TITLE */

.form-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #111;
}

.form-subtitle {
    margin-top: 14px;
    color: #666;
    line-height: 1.8;
}

/* LABEL */

.form-label {
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}

/* INPUT */

.custom-input {
    height: 58px;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    padding: 14px 18px;
    box-shadow: none !important;
    transition: .3s;
}

    .custom-input:focus {
        border-color: var(--purple);
    }

.custom-textarea {
    min-height: 160px;
    resize: none;
    padding-top: 18px;
}

/* BUTTON */

.submit-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 16px;
    background: var(--purple);
    color: #fff;
    font-weight: 700;
    transition: .3s;
}

    .submit-btn:hover {
        background: #5700b4;
        transform: translateY(-2px);
    }

/* MOBILE */

@media(max-width:991px) {

    .inner-hero-title {
        font-size: 2.8rem;
    }
}

@media(max-width:576px) {

    .getstarted-hero {
        padding: 90px 0 60px;
    }

    .inner-hero-title {
        font-size: 2.1rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .getstarted-card {
        padding: 28px;
        border-radius: 24px;
    }

    .form-title {
        font-size: 1.7rem;
    }
}
/*--- loader contact page  --*/
#formLoader {
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.loader-backdrop {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/*------------- business-showcase-section ---------------------------*/
.business-showcase-section {
    padding: 100px 0 20px 0;
}

.logo-wall {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap: 50px 40px;
    align-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    text-decoration: none;
    transition: .25s;
}

    .logo-item:hover {
        transform: scale(1.05);
    }

    .logo-item img {
        width: 120px;
        height: 120px;
        object-fit: contain;
        border-radius: 40%;
        filter: grayscale(10%);
    }

    /*--- page ---*/
.business-link {
    text-decoration: none;
}

.business-card {
    background: #fff;
    border: 1px solid #edf1f5;
    border-radius: 20px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: .25s;
    height: 100%;
}

    .business-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0,0,0,.08);
    }

.business-logo,
.logo-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    flex-shrink: 0;
}

.business-logo {
    object-fit: cover;
    border: 1px solid #eee;
}

.logo-placeholder {
    background: #564F90;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.business-info {
    flex: 1;
}

    .business-info h5 {
        color: #222;
        font-weight: 600;
        margin: 0;
    }

.business-arrow {
    color: #999;
    font-size: 18px;
}

.business-card:hover .business-arrow {
    color: #564F90;
}