:root {

    --dark: #07111f;
    --dark-2: #0c192b;

    --primary: #7157ff;
    --primary-light: #9a87ff;

    --green: #21d6c2;

    --white: #ffffff;

    --bg: #f7f9fc;
    --border: #e5eaf1;

    --text: #101827;
    --muted: #697586;

}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    font-family:
        "DM Sans",
        sans-serif;

    background: var(--bg);

    color: var(--text);

}


h1,
h2,
h3,
h4,
h5,
h6 {

    font-family:
        "Manrope",
        sans-serif;

    font-weight: 800;

    letter-spacing: -0.035em;

}


a {
    text-decoration: none;
}


/* =====================================================
   NAVBAR
===================================================== */

.samoweb-navbar {

    padding: 18px 0;

    background:
        rgba(7, 17, 31, .80);

    backdrop-filter:
        blur(20px);

    border-bottom:
        1px solid
        rgba(255,255,255,.08);

}


.navbar-brand {

    display: flex;

    align-items: center;

    gap: 10px;

    color: white;

    font-family: "Manrope";

    font-weight: 800;

    font-size: 22px;

}


.logo-icon {

    width: 36px;

    height: 36px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--green)
        );

    color: var(--dark);

    font-weight: 800;

}


.logo-text span {
    color: #9c8cff;
}


.nav-link {

    color:
        rgba(255,255,255,.72)
        !important;

    font-size: 14px;

    font-weight: 600;

    padding:
        10px 13px !important;

}


.nav-link:hover {

    color: white !important;

}


.navbar-toggler {

    color: white;

    font-size: 25px;

}


.btn-navbar {

    padding:
        10px 18px;

    border-radius: 10px;

    background: white;

    color: var(--dark);

    font-weight: 700;

}


.dropdown-menu {

    border: 0;

    border-radius: 15px;

    padding: 10px;

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.12);

}


.dropdown-item {

    padding: 11px 14px;

    border-radius: 9px;

    font-size: 14px;

}


.dropdown-item i {

    margin-right: 8px;

    color: var(--primary);

}


/* =====================================================
   HERO
===================================================== */

.hero-section {

    min-height: 800px;

    padding:
        180px 0
        100px;

    position: relative;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 85% 20%,
            rgba(113,87,255,.28),
            transparent 30%
        ),

        radial-gradient(
            circle at 70% 90%,
            rgba(33,214,194,.12),
            transparent 30%
        ),

        var(--dark);

    color: white;

}


.hero-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}


.hero-glow-one {

    width: 400px;

    height: 400px;

    right: -180px;

    top: 120px;

    border:
        1px solid
        rgba(140,120,255,.35);

}


.hero-glow-two {

    width: 200px;

    height: 200px;

    right: 100px;

    bottom: 40px;

    border:
        1px solid
        rgba(33,214,194,.35);

}


.hero-badge {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #a99cff;

    font-size: 11px;

    letter-spacing: .16em;

    font-weight: 800;

    margin-bottom: 24px;

}


.hero-badge span {

    width: 28px;

    height: 1px;

    background:
        currentColor;

}


.hero-section h1 {

    max-width: 800px;

    font-size:
        clamp(48px, 6vw, 78px);

    line-height: 1;

}


.hero-section h1 span {

    color: #9d8cff;

}


.hero-description {

    max-width: 650px;

    color: #9aa8ba;

    font-size: 18px;

    line-height: 1.75;

    margin:
        28px 0 35px;

}


.hero-buttons {

    display: flex;

    gap: 14px;

    flex-wrap: wrap;

}


.btn-primary-custom {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        14px 21px;

    border: 0;

    border-radius: 11px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #836cff,
            #5c45db
        );

    font-weight: 700;

}


.btn-primary-custom:hover {

    color: white;

    transform:
        translateY(-2px);

}


.btn-outline-custom {

    padding:
        13px 21px;

    border:
        1px solid
        rgba(255,255,255,.18);

    border-radius: 11px;

    color: white;

    font-weight: 700;

}


.btn-outline-custom:hover {

    background: white;

    color: var(--dark);

}


.hero-services {

    display: flex;

    gap: 35px;

    margin-top: 60px;

}


.hero-services div {

    display: flex;

    flex-direction: column;

}


.hero-services strong {

    color: #9c8cff;

    font-size: 11px;

}


.hero-services span {

    margin-top: 4px;

    color: #8b98aa;

    font-size: 12px;

}


/* =====================================================
   HERO VISUAL
===================================================== */

.hero-visual {

    padding: 18px;

    border-radius: 28px;

    background:
        rgba(255,255,255,.08);

    border:
        1px solid
        rgba(255,255,255,.13);

    box-shadow:
        0 40px 100px
        rgba(0,0,0,.3);

    transform:
        rotate(2deg);

}


.visual-header {

    display: flex;

    justify-content:
        space-between;

    padding:
        5px 5px 15px;

    color: #8593a6;

    font-size: 10px;

    letter-spacing: .15em;

}


.visual-window {

    min-height: 390px;

    border-radius: 18px;

    background: #f4f6fa;

    padding: 20px;

    color: var(--dark);

}


.window-top {

    display: flex;

    gap: 5px;

}


.window-top span {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #ccd3dc;

}


.dashboard-title {

    margin-top: 30px;

}


.dashboard-title small {

    display: block;

    color: #8a95a5;

    font-size: 8px;

    letter-spacing: .12em;

}


.dashboard-title strong {

    display: block;

    margin-top: 5px;

    font-family: "Manrope";

    font-size: 19px;

}


.dashboard-cards {

    display: flex;

    gap: 9px;

    margin-top: 25px;

}


.dashboard-cards div {

    height: 65px;

    flex: 1;

    border-radius: 10px;

    background: #e3e8ef;

}


.dashboard-chart {

    height: 145px;

    display: flex;

    align-items: end;

    gap: 8px;

    margin-top: 25px;

}


.dashboard-chart div {

    flex: 1;

    border-radius:
        5px 5px 0 0;

    background:
        linear-gradient(
            #9a88ff,
            #dfe3ed
        );

}


.visual-footer {

    display: flex;

    justify-content:
        space-between;

    padding:
        15px 5px 0;

    color: #78869a;

    font-size: 10px;

}


/* =====================================================
   SECTIONS
===================================================== */

.section-padding {

    padding:
        110px 0;

}


.section-heading {

    display: flex;

    justify-content:
        space-between;

    align-items:
        end;

    gap: 50px;

    margin-bottom: 50px;

}


.section-heading h2 {

    max-width: 680px;

    font-size:
        clamp(36px, 4vw, 58px);

    line-height: 1.03;

}


.section-heading p {

    max-width: 400px;

    color: var(--muted);

    line-height: 1.75;

}


.section-label {

    color: #7157ff;

    font-size: 11px;

    letter-spacing: .14em;

    font-weight: 800;

    margin-bottom: 18px;

}


/* =====================================================
   SERVICES
===================================================== */

.main-service-card {

    display: flex;

    gap: 25px;

    height: 100%;

    padding: 35px;

    border:
        1px solid
        var(--border);

    border-radius: 22px;

    background: white;

    color: var(--text);

    transition: .25s;

}


.main-service-card:hover {

    color: var(--text);

    transform:
        translateY(-6px);

    box-shadow:
        0 25px 60px
        rgba(7,17,31,.08);

}


.service-icon {

    flex:
        0 0 62px;

    width: 62px;

    height: 62px;

    display: grid;

    place-items: center;

    border-radius: 17px;

    background:
        #eeeaff;

    color:
        #7157ff;

    font-size: 27px;

}


.service-icon.green {

    background:
        #e3faf7;

    color:
        #159e91;

}


.service-number {

    color: #9ba5b3;

    font-size: 11px;

}


.main-service-card h3 {

    margin:
        15px 0 10px;

    font-size: 27px;

}


.main-service-card p {

    color: var(--muted);

    line-height: 1.7;

}


.service-link {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-top: 12px;

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

}


/* =====================================================
   SAAS
===================================================== */

.saas-section {

    background:
        var(--dark);

    color: white;

}


.section-heading.light p {

    color: #8e9bad;

}


.section-heading.light .section-label {

    color: #9c8cff;

}


.saas-card {

    display: block;

    padding: 38px;

    min-height: 410px;

    border:
        1px solid
        rgba(255,255,255,.1);

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.035)
        );

    color: white;

    transition: .25s;

}


.saas-card:hover {

    color: white;

    transform:
        translateY(-7px);

    border-color:
        rgba(156,140,255,.5);

}


.saas-card-top {

    display: flex;

    justify-content:
        space-between;

    color: #7f8da1;

}


.saas-tag {

    font-size: 10px;

    letter-spacing: .13em;

    font-weight: 800;

}


.saas-icon {

    margin-top: 65px;

    font-size: 34px;

    color: #9c8cff;

}


.gym-card .saas-icon {

    color: #42ddce;

}


.saas-card h3 {

    margin-top: 18px;

    font-size: 40px;

}


.saas-card p {

    max-width: 520px;

    color: #8f9cae;

    line-height: 1.7;

}


.saas-features {

    display: flex;

    gap: 20px;

    margin-top: 25px;

}


.saas-features span {

    color: #b6c0ce;

    font-size: 12px;

}


.saas-features i {

    color: #5de1d4;

}


/* =====================================================
   PROCESS
===================================================== */

.process-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    border-top:
        1px solid
        var(--border);

}


.process-card {

    padding:
        30px 25px;

    border-right:
        1px solid
        var(--border);

}


.process-card:first-child {

    padding-left: 0;

}


.process-card span {

    color: var(--primary);

    font-size: 11px;

}


.process-card i {

    display: block;

    margin-top: 40px;

    color: #6e58e6;

    font-size: 27px;

}


.process-card h3 {

    margin-top: 20px;

}


.process-card p {

    color: var(--muted);

    line-height: 1.7;

}


/* =====================================================
   CTA
===================================================== */

.final-cta {

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 40px;

    padding: 65px;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #ebe8ff,
            #e7faf7
        );

}


.final-cta h2 {

    max-width: 650px;

    font-size:
        clamp(36px, 4vw, 55px);

}


.final-cta p {

    color: var(--muted);

}


/* =====================================================
   INNER HERO
===================================================== */

.page-hero,
.product-hero {

    padding:
        180px 0
        100px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(113,87,255,.25),
            transparent 30%
        ),
        var(--dark);

    color: white;

}


.page-hero h1,
.product-hero h1 {

    max-width: 850px;

    font-size:
        clamp(46px, 6vw, 75px);

    line-height: 1;

}


.page-hero p,
.product-hero p {

    max-width: 650px;

    color: #9ba8b9;

    font-size: 19px;

    line-height: 1.7;

    margin-top: 25px;

}


/* =====================================================
   ABOUT
===================================================== */

.about-visual {

    min-height: 450px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 30px;

    border-radius: 30px;

    background:
        var(--dark);

    color: #9b89ff;

}


.about-visual > span {

    font:
        800 180px
        "Manrope";

}


.about-visual div {

    font:
        800 26px
        "Manrope";

    line-height: 1.4;

    color: white;

}


.large-text {

    color: #313c4c;

    font-size: 20px;

    line-height: 1.7;

}


.body-text {

    color: var(--muted);

    line-height: 1.8;

}


/* =====================================================
   SERVICE DETAIL
===================================================== */

.detail-service-card {

    display: block;

    height: 100%;

    padding: 40px;

    background: white;

    border:
        1px solid
        var(--border);

    border-radius: 24px;

    color: var(--text);

}


.detail-service-card:hover {

    color: var(--text);

    transform:
        translateY(-5px);

}


.detail-icon {

    width: 70px;

    height: 70px;

    display: grid;

    place-items: center;

    border-radius: 18px;

    background: #eeeaff;

    color: var(--primary);

    font-size: 30px;

    margin-bottom: 30px;

}


.detail-icon.green {

    background: #e1faf6;

    color: #159e91;

}


.detail-service-card h3 {

    font-size: 30px;

}


.detail-service-card p {

    color: var(--muted);

    line-height: 1.7;

}


.detail-service-card > span {

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

}


.feature-list > div {

    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        17px 0;

    border-bottom:
        1px solid
        var(--border);

    color: #465264;

}


.feature-list i {

    color: var(--primary);

}


/* =====================================================
   PRODUCTS
===================================================== */

.product-card {

    display: block;

    height: 100%;

    padding: 40px;

    border-radius: 25px;

    background: white;

    border:
        1px solid
        var(--border);

    color: var(--text);

}


.product-card:hover {

    color: var(--text);

    transform:
        translateY(-6px);

    box-shadow:
        0 25px 60px
        rgba(7,17,31,.08);

}


.product-icon {

    width: 70px;

    height: 70px;

    display: grid;

    place-items: center;

    border-radius: 18px;

    background: #eeeaff;

    color: var(--primary);

    font-size: 30px;

    margin-bottom: 35px;

}


.product-icon.green {

    background: #e1faf6;

    color: #159e91;

}


.product-card small {

    color: var(--primary);

    font-weight: 800;

    letter-spacing: .12em;

}


.product-card h2 {

    font-size: 40px;

    margin-top: 15px;

}


.product-card p {

    color: var(--muted);

    line-height: 1.7;

}


.product-card > span {

    color: var(--primary);

    font-weight: 700;

    font-size: 13px;

}


/* =====================================================
   PRODUCT HERO
===================================================== */

.product-badge {

    color: #9c8cff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .14em;

    margin-bottom: 20px;

}


.gym-product {

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(33,214,194,.18),
            transparent 30%
        ),
        var(--dark);

}


.feature-box {

    padding: 30px;

    border:
        1px solid
        var(--border);

    border-radius: 20px;

    background: white;

    height: 100%;

}


.feature-box > i {

    color: var(--primary);

    font-size: 30px;

}


.feature-box h3 {

    margin-top: 25px;

}


.feature-box p {

    color: var(--muted);

    line-height: 1.7;

}


/* =====================================================
   PROJECTS
===================================================== */

.project-card {

    overflow: hidden;

    border-radius: 24px;

    background: white;

    border:
        1px solid
        var(--border);

}


.project-image {

    height: 280px;

    display: grid;

    place-items: center;

    font-size: 70px;

}


.billcrm-project {

    background:
        linear-gradient(
            135deg,
            #16103a,
            #6250c8
        );

    color: #b9aeff;

}


.gym-project {

    background:
        linear-gradient(
            135deg,
            #052d2b,
            #159e91
        );

    color: #9af3e8;

}


.school-project {

    background:
        linear-gradient(
            135deg,
            #18263a,
            #416b9c
        );

    color: #b9d5f5;

}


.license-project {

    background:
        linear-gradient(
            135deg,
            #29200c,
            #8a6d24
        );

    color: #f6d98b;

}


.project-content {

    padding: 30px;

}


.project-content small {

    color: var(--primary);

    font-weight: 800;

    font-size: 10px;

    letter-spacing: .12em;

}


.project-content h3 {

    margin-top: 10px;

}


.project-content p {

    color: var(--muted);

}


/* =====================================================
   PHONE
===================================================== */

.phone-mockup {

    width: 270px;

    height: 540px;

    padding: 10px;

    margin: auto;

    border-radius: 35px;

    background:
        #101722;

    box-shadow:
        0 35px 70px
        rgba(0,0,0,.2);

}


.phone-screen {

    height: 100%;

    padding: 25px 17px;

    border-radius: 27px;

    background:
        #f4f6fa;

}


.phone-bar {

    width: 70px;

    height: 5px;

    margin: auto;

    border-radius: 20px;

    background: #ccd2db;

}


.phone-title {

    margin-top: 40px;

    font:
        800 20px
        "Manrope";

}


.phone-box {

    height: 100px;

    margin-top: 25px;

    border-radius: 14px;

    background:
        #ddd8ff;

}


.phone-box.small {

    height: 55px;

    background: #e3e7ed;

}


/* =====================================================
   CONTACT
===================================================== */

.contact-info {

    padding-right: 30px;

}


.contact-info h2 {

    font-size: 42px;

}


.contact-info p {

    color: var(--muted);

    line-height: 1.8;

}


.contact-item {

    display: flex;

    gap: 15px;

    margin-top: 30px;

}


.contact-item > i {

    color: var(--primary);

    font-size: 22px;

}


.contact-item small,
.contact-item strong {

    display: block;

}


.contact-item small {

    color: #8994a3;

}


.contact-form {

    padding: 40px;

    border-radius: 25px;

    background: white;

    border:
        1px solid
        var(--border);

}


.contact-form label {

    display: block;

    margin-bottom: 8px;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .08em;

}


.contact-form input,
.contact-form select,
.contact-form textarea {

    width: 100%;

    border:
        1px solid
        #dce2e9;

    border-radius: 10px;

    padding: 13px 14px;

    outline: none;

    font: inherit;

    background: #fbfcfd;

}


.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {

    border-color:
        var(--primary);

    box-shadow:
        0 0 0 4px
        rgba(113,87,255,.08);

}


.btn-dark-custom {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        14px 21px;

    background:
        var(--dark);

    color: white;

    border-radius: 11px;

    font-weight: 700;

    border: 0;

}


.btn-dark-custom:hover {

    color: white;

    background:
        #15243a;

}


/* =====================================================
   FOOTER
===================================================== */

.samoweb-footer {

    padding:
        80px 0 25px;

    background:
        #06101d;

    color: white;

}


.footer-logo {

    display: flex;

    align-items: center;

    gap: 10px;

    color: white;

    font:
        800 23px
        "Manrope";

}


.footer-logo span:last-child {

    color: #9c8cff;

}


.footer-description {

    max-width: 430px;

    margin-top: 20px;

    color: #7f8ca0;

    line-height: 1.7;

}


.footer-cta {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 20px;

    color: #a99cff;

    font-weight: 700;

}


.samoweb-footer h6 {

    color: #77859a;

    text-transform: uppercase;

    letter-spacing: .1em;

    font-size: 11px;

}


.samoweb-footer .col-lg-2 a,
.samoweb-footer .col-lg-3 a {

    display: block;

    margin-top: 13px;

    color: #aab5c4;

    font-size: 14px;

}


.footer-bottom {

    display: flex;

    justify-content:
        space-between;

    margin-top: 60px;

    padding-top: 22px;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    color: #657388;

    font-size: 12px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:991px) {

    .hero-section {

        padding-top: 145px;

    }


    .hero-visual {

        max-width: 550px;

        margin: auto;

    }


    .section-heading {

        display: block;

    }


    .section-heading p {

        margin-top: 20px;

    }


    .process-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .process-card:nth-child(2) {

        border-right: 0;

    }

}


@media(max-width:767px) {

    .hero-section {

        min-height: auto;

        padding:
            135px 0 80px;

    }


    .hero-section h1 {

        font-size: 46px;

    }


    .hero-services {

        gap: 20px;

        flex-wrap: wrap;

    }


    .hero-visual {

        transform: none;

    }


    .section-padding {

        padding: 75px 0;

    }


    .process-grid {

        grid-template-columns: 1fr;

    }


    .process-card {

        border-right: 0;

        border-bottom:
            1px solid
            var(--border);

        padding-left: 0;

    }


    .final-cta {

        display: block;

        padding: 40px 25px;

    }


    .final-cta .btn {

        margin-top: 20px;

    }


    .main-service-card {

        display: block;

    }


    .service-icon {

        margin-bottom: 25px;

    }


    .saas-card {

        min-height: auto;

    }


    .contact-info {

        padding-right: 0;

    }


    .contact-form {

        padding: 25px;

    }


    .footer-bottom {

        display: block;

    }


    .footer-bottom span {

        display: block;

        margin-top: 8px;

    }

}


/* =========================================================
   SAMOWEB NAVBAR CTA
   ========================================================= */

.btn-navbar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 11px 20px;

    background: linear-gradient(
        135deg,
        #2563eb,
        #4f46e5
    );

    color: #ffffff !important;

    border: 0;
    border-radius: 12px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;

    line-height: 1;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;

    box-shadow:
        0 8px 20px rgba(37, 99, 235, 0.20);
}


/* Normal link state */
.btn-navbar:link,
.btn-navbar:visited {
    color: #ffffff !important;
    text-decoration: none !important;
}


/* Hover */
.btn-navbar:hover {
    color: #ffffff !important;

    background: linear-gradient(
        135deg,
        #1d4ed8,
        #4338ca
    ) !important;

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(37, 99, 235, 0.30);
}


/* Mouse click */
.btn-navbar:active {
    color: #ffffff !important;

    background: linear-gradient(
        135deg,
        #1e40af,
        #3730a3
    ) !important;

    transform: translateY(0);
}


/* Keyboard focus */
.btn-navbar:focus,
.btn-navbar:focus-visible {
    color: #ffffff !important;

    outline: none;

    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.18),
        0 8px 20px rgba(37, 99, 235, 0.20);
}


/* Arrow animation */
.btn-navbar i {
    transition: transform 0.2s ease;
}

.btn-navbar:hover i {
    transform: translate(2px, -2px);
}


/* Mobile */
@media (max-width: 991.98px) {

    .btn-navbar {
        width: 100%;
        justify-content: center;
    }

}


/* =========================================================
   SEO INTRO SECTION
   ========================================================= */

.seo-intro-section {
    background: #f8fafc;
}

.seo-content {
    max-width: 950px;
    margin: 0 auto;
}

.seo-content h2 {
    margin-top: 12px;
    margin-bottom: 22px;

    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;

    font-weight: 800;
    letter-spacing: -1px;

    color: #111827;
}

.seo-content p {
    margin-bottom: 16px;

    font-size: 16px;
    line-height: 1.8;

    color: #64748b;
}