:root {
    --primary: #4ea8f5;
    --secondary: #7441c8;
    --text-dark: #2e367c;
    --text-muted: #6b6b84;
    --light-bg: #f7f3fb;
    --card-bg: #ffffff;
    --chip-bg: #eaf3ff;
    --chip-purple: #ebe3ff;
    --border-soft: #ece8f3;
    --footer-start: #43ace8;
    --footer-mid: #5b66c5;
    --footer-end: #7135a4;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background: #7135a4;
    color: #1f1f1f;
}

.hero-wrapper {
    background: linear-gradient(180deg, #f8f5fb 0%, #f5f2f9 100%);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.container-custom {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
}

/* Navbar */
.navbar-custom {
    padding: 28px 0 10px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    width: 48px;
    height: 48px;
    position: relative;
    display: inline-block;
}

.brand-logo::before,
.brand-logo::after {
    content: "";
    position: absolute;
    border-radius: 12px;
    transform: rotate(45deg);
}

.brand-logo::before {
    width: 38px;
    height: 12px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    top: 18px;
    left: 4px;
}

.brand-logo::after {
    width: 12px;
    height: 38px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    top: 4px;
    left: 18px;
}

.brand-text h4 {
    margin: 0;
    font-weight: 700;
    color: #473791;
    line-height: 1;
}

.brand-text span {
    font-size: 10px;
    letter-spacing: 1.2px;
    color: #8f8ba8;
    text-transform: uppercase;
}

.contact-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-header {
    max-width: 760px;
    margin-bottom: 68px;
}

.contact-title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    color: #111111;
    margin-bottom: 10px;
    letter-spacing: 0;
}

.contact-title span {
    background: linear-gradient(90deg, #4da2f1 0%, #7443c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.contact-subtitle {
    max-width: 680px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.3;
    color: #76798d;
    font-weight: 400;
}

.contact-main {
    margin-top: 20px;
}

/* Map left side */
.contact-map-card {
    width: 100%;
    height: 432px;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f1f1;
}

.contact-map-frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Form right side */
.contact-form {
    width: 100%;
}

.contact-input {
    width: 100%;
    height: 68px;
    border: 2px solid #ececf3;
    border-radius: 14px;
    background: #ffffff;
    padding: 0 22px;
    margin-bottom: 14px;
    font-size: 21px;
    font-weight: 400;
    color: #2f3240;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-input::placeholder {
    color: #d5d5d8;
}

.contact-input:focus {
    border-color: #7443c8;
    box-shadow: 0 0 0 4px rgba(116, 67, 200, 0.08);
}

.contact-textarea {
    height: 188px;
    resize: none;
    padding-top: 22px;
}

.contact-submit-btn {
    width: 100%;
    height: 52px;
    border: 0;
    border-radius: 11px;
    background: linear-gradient(90deg, #4ea8f5 0%, #7441c8 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(100, 90, 180, 0.18);
}

@media (max-width: 1199.98px) {
    .contact-title {
        font-size: 44px;
    }

    .contact-map-card {
        height: 400px;
    }
}

@media (max-width: 991.98px) {
    .contact-header {
        margin-bottom: 42px;
    }

    .contact-title {
        font-size: 40px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    .contact-map-card {
        height: 360px;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .contact-title {
        font-size: 32px;
        line-height: 1.15;
    }

    .contact-subtitle {
        font-size: 15px;
    }

    .contact-subtitle br {
        display: none;
    }

    .contact-map-card {
        height: 300px;
    }

    .contact-input {
        height: 58px;
        font-size: 17px;
        border-radius: 12px;
    }

    .contact-textarea {
        height: 160px;
    }
}

@media (max-width: 575.98px) {
    .contact-title {
        font-size: 28px;
    }

    .contact-header {
        margin-bottom: 32px;
    }

    .contact-map-card {
        height: 260px;
    }

    .contact-input {
        font-size: 16px;
        padding: 0 16px;
    }

    .contact-textarea {
        padding-top: 18px;
    }
}

.nav-center {
    gap: 28px;
}

.nav-link-custom {
    color: #4d5165;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 10px 0;
}

.nav-link-custom.active {
    color: #6e5ccf;
}

.nav-pill {
    background: linear-gradient(90deg,
            #d9ecff 0%,
            #e3e7fb 45%,
            #ecd9f7 100%);
    color: #5a4bb9;
    padding: 10px 18px;
    border-radius: 999px;
    display: inline-block;
    line-height: 1;
}

.btn-gradient {
    border: 0;
    padding: 12px 18px;
    border-radius: 14px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: 0.25s ease;
    box-shadow: 0 10px 24px rgba(100, 90, 180, 0.18);
}

.btn-gradient:hover {
    transform: translateY(-1px);
    color: #fff;
}

.btn-icon-box {
    width: 34px;
    height: 34px;
    background: #fff;
    color: #6a42c7;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

/* Hero */
.hero-section {
    padding: 34px 0 28px;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e7def8;
    color: #3f4560;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 15px;
    margin-bottom: 18px;
}

.hero-badge .icon {
    color: var(--primary);
    font-weight: 700;
}

.hero-title {
    font-size: 72px;
    line-height: 1.02;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 0;
    margin-bottom: 22px;
}

.title-highlight {
    background: #dbe7ff;
    padding: 4px 8px;
    border-radius: 16px;
    display: inline-block;
}

.title-highlight-alt {
    background: #ebe0f7;
    padding: 4px 8px;
    border-radius: 16px;
    display: inline-block;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.45;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 22px;
}

.hero-desc strong {
    color: #151515;
    font-weight: 700;
}

.chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.info-chip {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 15px;
    color: #32384f;
    line-height: 1;
    border: 1px solid #dde8f9;
    background: var(--chip-bg);
}

.hero-cta {
    padding: 15px 20px;
    border-radius: 16px;
    font-size: 18px;
}

/* Right Side Visual */
.hero-visual {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.blob-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 22px;
    opacity: 0.95;
}

.shape.blue-1 {
    width: 104px;
    height: 104px;
    background: #55aaf5;
    top: 75px;
    left: 120px;
    border-radius: 24px;
}

.shape.blue-2 {
    width: 84px;
    height: 84px;
    background: #5caef8;
    top: 75px;
    right: 100px;
    border-radius: 20px;
}

.shape.purple-1 {
    width: 88px;
    height: 88px;
    background: #b4a5ea;
    bottom: 170px;
    right: 40px;
    border-radius: 20px;
}

.shape.soft-1,
.shape.soft-2,
.shape.soft-3 {
    background: #efebf4;
}

.shape.soft-1 {
    width: 130px;
    height: 130px;
    top: 95px;
    right: 5px;
    opacity: 0.8;
}

.shape.soft-2 {
    width: 120px;
    height: 120px;
    top: 180px;
    left: 80px;
    opacity: 0.5;
}

.shape.soft-3 {
    width: 170px;
    height: 170px;
    top: 110px;
    left: 220px;
    opacity: 0.45;
}

.plus-block {
    position: absolute;
    width: 210px;
    height: 210px;
    top: 54px;
    left: 150px;
}

.plus-block::before,
.plus-block::after {
    content: "";
    position: absolute;
    background: #58aaf6;
    border-radius: 22px;
}

.plus-block::before {
    width: 210px;
    height: 72px;
    top: 69px;
    left: 0;
}

.plus-block::after {
    width: 72px;
    height: 210px;
    top: 0;
    left: 69px;
}

.visual-person {
    position: relative;
    z-index: 3;
    max-width: 470px;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 18px 40px rgba(70, 56, 133, 0.12));
}

.review-card {
    position: absolute;
    left: 2px;
    top: 300px;
    z-index: 4;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(225, 225, 235, 0.9);
    border-radius: 22px;
    padding: 14px 18px;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(50, 50, 90, 0.08);
}

.review-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d7d7d7, #9e9e9e);
    flex-shrink: 0;
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars {
    color: #f5b400;
    font-size: 26px;
    letter-spacing: 1px;
    line-height: 1;
}

.review-text {
    margin-top: 6px;
    color: #3d3d52;
    font-size: 16px;
    padding-left: 50px;
}

.shield-badge {
    position: absolute;
    right: 35px;
    top: 280px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: 0 10px 30px rgba(50, 50, 90, 0.08);
}

.shield-inner {
    width: 42px;
    height: 42px;
    background: #6f49cb;
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Stats */
.stats-section {
    padding: 8px 0 28px;
}

.stats-row {
    border-top: 1px solid #e8e3ef;
    padding-top: 18px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 26px 18px 20px;
    text-align: center;
    height: 100%;
}

.stat-number {
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;

    background: linear-gradient(90deg,
            #41A5E3 0%,
            #6a7bd8 50%,
            #6A36A3 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.stat-label {
    color: #6f7187;
    font-size: 18px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 58px;
    }

    .hero-visual {
        min-height: 560px;
    }

    .review-card {
        left: 10px;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse-custom {
        background: rgba(255, 255, 255, 0.85);
        border: 1px solid #ebe6f2;
        border-radius: 18px;
        padding: 16px;
        margin-top: 16px;
    }

    .hero-section {
        padding-top: 18px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-content {
        text-align: center;
    }

    .hero-badge,
    .chip-wrap,
    .hero-btn-wrap {
        justify-content: center;
    }

    .hero-visual {
        min-height: 520px;
        margin-top: 24px;
    }

    .review-card {
        left: 0;
        top: 250px;
    }

    .shield-badge {
        right: 10px;
        top: 230px;
    }
}

@media (max-width: 767.98px) {
    .navbar-custom {
        padding-top: 18px;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.1;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-badge {
        font-size: 14px;
        text-align: left;
    }

    .hero-visual {
        min-height: 420px;
    }

    .visual-person {
        max-width: 300px;
    }

    .review-card {
        min-width: 210px;
        padding: 12px 14px;
        top: 185px;
        left: 0;
    }

    .review-text {
        padding-left: 0;
        margin-top: 10px;
        font-size: 14px;
    }

    .review-row {
        flex-wrap: wrap;
    }

    .shield-badge {
        width: 82px;
        height: 82px;
        top: 165px;
        right: 0;
    }

    .shield-inner {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .stat-number {
        font-size: 34px;
    }

    .stat-label {
        font-size: 15px;
    }

    .plus-block {
        transform: scale(0.72);
        top: 25px;
        left: 60px;
    }
}

@media (max-width: 575.98px) {
    .container-custom {
        padding: 0 14px;
    }

    .hero-title {
        font-size: 32px;
    }

    .btn-gradient {
        width: 100%;
        justify-content: center;
    }

    .review-card {
        position: static;
        margin: 14px auto 0;
    }

    .shield-badge {
        display: none;
    }

    .hero-visual {
        min-height: auto;
        display: block;
        text-align: center;
    }

    .blob-bg {
        display: none;
    }

    .visual-person {
        max-width: 280px;
    }
}

.services-section {
    background: #f7f5fa;
    position: relative;
    overflow: hidden;
}

.services-header {
    max-width: 760px;
    margin-bottom: 10px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 34px;
    border-radius: 999px;
    background: linear-gradient(90deg, #d9edf9 0%, #d8c8ed 100%);
    color: #6a43c5;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 22px;
}

.section-badge .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #6a43c5;
    display: inline-block;
}

.services-title {
    font-size: 58px;
    line-height: 1.08;
    font-weight: 800;
    color: #111111;
    margin-bottom: 14px;
    letter-spacing: 0;
}

.services-title span {
    background: linear-gradient(90deg, #4da2f1 0%, #7443c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.services-subtitle {
    max-width: 650px;
    margin: 0 auto;
    font-size: 22px;
    line-height: 1.45;
    color: #7a7c8d;
    font-weight: 400;
}

/* Card wrapper */
.service-card-wrap {
    position: relative;
    min-height: 315px;
    max-width: 320px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    height: 250px;
    border-radius: 14px;
    background: linear-gradient(90deg, #d7ebf8 0%, #dcd0ee 100%);
}

.service-card-outline {
    position: absolute;
    left: 52px;
    top: 52px;
    width: calc(100% - 52px);
    height: calc(100% - 52px);
    border: 2px solid #a94cff;
    border-radius: 14px;
}

.service-card-main {
    position: absolute;
    top: 22px;
    left: 22px;
    right: 22px;
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 22px 18px;
    min-height: 235px;
    box-shadow: 0 6px 18px rgba(25, 25, 35, 0.10);
    border: 1px solid rgba(0, 0, 0, 0.04);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-icon {
    color: #5a9ef0;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-main h3 {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
    color: #2f347b;
    margin-bottom: 12px;
    max-width: 220px;
}

.service-card-main p {
    font-size: 13px;
    line-height: 1.45;
    color: #8a8d9a;
    margin-bottom: 18px;
    max-width: 235px;
    flex-grow: 1;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #4ea8f5 0%, #7441c8 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    padding: 10px 10px 10px 16px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.25s ease;
}

.service-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.service-btn .btn-arrow {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #ffffff;
    color: #6b43c7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .services-title {
        font-size: 48px;
    }

    .services-subtitle {
        font-size: 19px;
    }
}

@media (max-width: 991.98px) {
    .services-title {
        font-size: 40px;
    }

    .services-subtitle {
        font-size: 17px;
        max-width: 600px;
    }

    .service-card-wrap {
        max-width: 340px;
    }
}

@media (max-width: 767.98px) {
    .services-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .services-title {
        font-size: 32px;
        line-height: 1.15;
    }

    .services-subtitle {
        font-size: 15px;
        max-width: 100%;
    }

    .section-badge {
        font-size: 14px;
        padding: 10px 26px;
    }

    .service-card-wrap {
        min-height: 300px;
    }

    .service-card-bg {
        width: 150px;
        height: 150px;
    }

    .service-card-outline {
        left: 40px;
        top: 40px;
        width: calc(100% - 40px);
        height: calc(100% - 40px);
    }

    .service-card-main {
        top: 18px;
        left: 18px;
        right: 18px;
        padding: 24px 18px 18px;
    }
}

@media (max-width: 575.98px) {
    .services-title {
        font-size: 28px;
    }

    .service-card-wrap {
        max-width: 100%;
        min-height: 290px;
    }

    .service-card-main h3 {
        font-size: 17px;
    }

    .service-card-main p {
        font-size: 12px;
    }
}

.portfolio-section {
    background: #f7f5fa;
    position: relative;
}

.portfolio-header {
    max-width: 760px;
    margin-bottom: 28px;
}

.portfolio-title {
    font-size: 58px;
    line-height: 1.08;
    font-weight: 800;
    color: #111111;
    margin-bottom: 14px;
    letter-spacing: 0;
}

.portfolio-title span {
    background: linear-gradient(90deg, #4da2f1 0%, #7443c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.portfolio-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 21px;
    line-height: 1.4;
    color: #7a7c8d;
}

.portfolio-tabs {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 34px;
}

.portfolio-tab {
    background: transparent;
    border: 0;
    padding: 0;
    font-size: 21px;
    font-weight: 500;
    color: #111111;
    letter-spacing: 0.2px;
    position: relative;
    transition: 0.2s ease;
}

.portfolio-tab.active {
    color: #7443c8;
}

.portfolio-tab:hover {
    color: #7443c8;
}

.portfolio-grid {
    margin-top: 18px;
}

.portfolio-card {
    background: #dedede;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    min-height: 255px;
    box-shadow: 0 4px 12px rgba(30, 30, 40, 0.08);
}

.simple-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d9d9d9;
    padding: 14px;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    display: block;
}

.contain-img {
    object-fit: contain;
    max-height: 225px;
}

.portfolio-card {
    background: #dedede;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    min-height: 255px;
    box-shadow: 0 4px 12px rgba(30, 30, 40, 0.08);
    border: 4px solid transparent;
    cursor: pointer;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.portfolio-card:hover {
    border-color: #43a5f6;
    box-shadow: 0 10px 20px rgba(60, 100, 190, 0.14);
    transform: translateY(-3px);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 255px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.contain-img {
    object-fit: cover;
    max-height: none;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.06);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(59, 157, 244, 0.78) 0%,
            rgba(116, 67, 200, 0.75) 100%);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.featured-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 28px 26px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.portfolio-card:hover .featured-overlay,
.portfolio-card:hover .featured-content {
    opacity: 1;
    visibility: visible;
}

.portfolio-card:hover .featured-content {
    transform: translateY(0);
}

.featured-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.featured-content p {
    font-size: 15px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.96);
    max-width: 260px;
    margin-bottom: 20px;
}

.featured-card {
    border: 4px solid #43a5f6;
    box-shadow: 0 10px 20px rgba(60, 100, 190, 0.10);
    cursor: pointer;
}

.featured-card .portfolio-image {
    object-fit: cover;
    min-height: 255px;
    transition: transform 0.35s ease;
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(59, 157, 244, 0.78) 0%,
            rgba(116, 67, 200, 0.75) 100%);
    z-index: 1;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.featured-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 28px 26px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;

    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.featured-card:hover .featured-overlay,
.featured-card:hover .featured-content {
    opacity: 1;
    visibility: visible;
}

.featured-card:hover .featured-content {
    transform: translateY(0);
}

.featured-card:hover .portfolio-image {
    transform: scale(1.06);
}

.featured-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.featured-content p {
    font-size: 15px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.96);
    max-width: 260px;
    margin-bottom: 20px;
}

.preview-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    background: #ffffff;
    color: #5d4bc2;
    text-decoration: none;
    border-radius: 14px;
    padding: 10px 10px 10px 16px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.25s ease;
}

.preview-btn:hover {
    color: #5d4bc2;
    transform: translateY(-2px);
}

.preview-arrow {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: linear-gradient(90deg, #4ea8f5 0%, #7441c8 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
}

@media (max-width: 1199.98px) {
    .portfolio-title {
        font-size: 48px;
    }

    .portfolio-subtitle {
        font-size: 18px;
    }

    .portfolio-tab {
        font-size: 18px;
    }
}

@media (max-width: 991.98px) {
    .portfolio-title {
        font-size: 40px;
    }

    .portfolio-subtitle {
        font-size: 17px;
        max-width: 600px;
    }

    .portfolio-tabs {
        gap: 20px;
    }

    .portfolio-tab {
        font-size: 16px;
    }

    .portfolio-card {
        min-height: 230px;
    }

    .featured-card .portfolio-image {
        min-height: 230px;
    }
}

@media (max-width: 767.98px) {
    .portfolio-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .portfolio-title {
        font-size: 32px;
        line-height: 1.15;
    }

    .portfolio-subtitle {
        font-size: 15px;
        max-width: 100%;
    }

    .portfolio-tabs {
        gap: 14px;
        margin-top: 22px;
    }

    .portfolio-tab {
        font-size: 14px;
    }

    .portfolio-card {
        min-height: 220px;
        border-radius: 18px;
    }

    .featured-content {
        padding: 22px 20px 20px;
    }

    .featured-content h3 {
        font-size: 22px;
    }

    .featured-content p {
        font-size: 14px;
        max-width: 100%;
    }

    .preview-btn {
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .portfolio-title {
        font-size: 28px;
    }

    .portfolio-tabs {
        justify-content: center;
        gap: 12px 18px;
    }

    .portfolio-tab {
        font-size: 13px;
    }

    .portfolio-card {
        min-height: 210px;
    }

    .featured-content h3 {
        font-size: 20px;
    }

    .featured-content p {
        font-size: 13px;
    }

    .preview-arrow {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
}

.team-section {
    background: #f3eef7;
    position: relative;
}

.team-header {
    max-width: 760px;
    margin-bottom: 26px;
}

.team-title {
    font-size: 58px;
    line-height: 1.08;
    font-weight: 800;
    color: #111111;
    margin-bottom: 14px;
    letter-spacing: 0;
}

.team-title span {
    background: linear-gradient(90deg, #4da2f1 0%, #7443c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.team-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.45;
    color: #7a7c8d;
}

/* card */
.team-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 6px 18px rgba(30, 30, 40, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(30, 30, 40, 0.10);
}

.team-image-wrap {
    height: 290px;
    overflow: hidden;
    position: relative;
    border-radius: 24px 24px 0 0;
    clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* content */
.team-content {
    padding: 26px 24px 20px;
    text-align: center;
}

.team-content h3 {
    font-size: 40px;
    line-height: 1.05;
    font-weight: 700;
    color: #2f347b;
    margin-bottom: 8px;
}

.team-role {
    font-size: 18px;
    font-weight: 400;
    color: #1f1f1f;
    margin-bottom: 8px;
}

.team-skills {
    font-size: 15px;
    color: #7443c8;
    margin-bottom: 22px;
    font-weight: 500;
}

.team-divider {
    width: 122px;
    height: 8px;
    border-radius: 999px;
    margin: 0 auto 22px;
    background: linear-gradient(90deg, #4ea8f5 0%, #7441c8 100%);
}

/* socials */
.team-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.team-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f0f0f3;
    color: #222222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.25s ease;
}

.team-socials a:hover {
    background: linear-gradient(90deg, #4ea8f5 0%, #7441c8 100%);
    color: #ffffff;
    transform: translateY(-2px);
}

.team-socials svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* nav buttons */
.team-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 34px;
}

.team-nav-btn {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: 2px solid #aeb3bf;
    background: transparent;
    color: #9ea4b1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

.team-nav-btn svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

.team-nav-btn.active {
    border-color: #6f47c9;
    color: #6f47c9;
}

.team-nav-btn:hover {
    border-color: #6f47c9;
    color: #6f47c9;
    transform: translateY(-2px);
}

/* responsive */
@media (max-width: 1199.98px) {
    .team-title {
        font-size: 48px;
    }

    .team-content h3 {
        font-size: 34px;
    }
}

@media (max-width: 991.98px) {
    .team-title {
        font-size: 40px;
    }

    .team-subtitle {
        font-size: 16px;
        max-width: 620px;
    }

    .team-image-wrap {
        height: 260px;
    }

    .team-content h3 {
        font-size: 30px;
    }

    .team-role {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .team-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .team-title {
        font-size: 32px;
        line-height: 1.15;
    }

    .team-subtitle {
        font-size: 15px;
        max-width: 100%;
    }

    .team-image-wrap {
        height: 240px;
    }

    .team-content {
        padding: 22px 18px 18px;
    }

    .team-content h3 {
        font-size: 26px;
    }

    .team-role {
        font-size: 15px;
    }

    .team-skills {
        font-size: 14px;
    }

    .team-divider {
        width: 110px;
        height: 7px;
    }

    .team-nav-btn {
        width: 62px;
        height: 62px;
    }

    .team-nav-btn svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 575.98px) {
    .team-title {
        font-size: 28px;
    }

    .team-image-wrap {
        height: 220px;
    }

    .team-content h3 {
        font-size: 22px;
    }

    .team-role {
        font-size: 14px;
    }

    .team-skills {
        font-size: 13px;
    }

    .team-nav {
        margin-top: 26px;
    }

    .team-nav-btn {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 575.98px) {
    .team-title {
        font-size: 28px;
    }

    .team-image-wrap {
        height: 220px;
    }

    .team-content {
        padding: 20px 16px 16px;
    }

    .team-content h3 {
        font-size: 20px;
    }
}

.about-story-section {
    background: #f7f5fa;
    position: relative;
    overflow: hidden;
}

.about-story-header {
    max-width: 860px;
    margin-bottom: 8px;
}

.about-story-title {
    font-size: 58px;
    line-height: 1.08;
    font-weight: 800;
    color: #111111;
    margin-bottom: 14px;
    letter-spacing: 0;
}

.about-story-title span {
    background: linear-gradient(90deg, #4da2f1 0%, #7443c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.about-story-subtitle {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.45;
    color: #7a7c8d;
}

.about-visual-wrap {
    position: relative;
    min-height: 520px;
    max-width: 560px;
    margin: 0 auto;
}

.about-outline-blue {
    position: absolute;
    top: 18px;
    left: 22px;
    width: 220px;
    height: 240px;
    border: 3px solid #4ea8f5;
    border-right: none;
    border-bottom: none;
    border-radius: 18px 0 0 0;
    z-index: 1;
}

.about-outline-purple {
    position: absolute;
    right: 65px;
    bottom: 85px;
    width: 230px;
    height: 265px;
    border: 3px solid #7c47d1;
    border-left: none;
    border-top: none;
    border-radius: 0 0 18px 0;
    z-index: 1;
}

.about-image-card {
    position: absolute;
    left: 44px;
    top: 40px;
    width: 400px;
    height: 370px;
    border-radius: 20px;
    overflow: hidden;
    background: #e8e8e8;
    z-index: 2;
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* floating cards */
.about-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(226, 226, 236, 0.95);
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(30, 30, 40, 0.10);
    z-index: 3;
}

.about-clients-card {
    top: 78px;
    right: 18px;
    width: 170px;
    padding: 18px 22px;
}

.about-clients-card .small-label {
    font-size: 14px;
    color: #222;
    font-weight: 500;
    margin-bottom: 10px;
}

.about-clients-card .big-value {
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(90deg, #4da2f1 0%, #7443c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.about-reviews-card {
    left: 0;
    bottom: 136px;
    width: 210px;
    padding: 18px 18px 16px;
}

.review-avatars {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.review-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    margin-left: -6px;
    background: #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-weight: 700;
    font-size: 18px;
}

.review-avatar:first-child {
    margin-left: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plus-avatar {
    background: #f6f6f8;
}

.reviews-text {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(90deg, #4da2f1 0%, #7443c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* dotted decorations */
.about-dots {
    position: absolute;
    width: 110px;
    height: 110px;
    z-index: 0;
    background-image: radial-gradient(#567cf0 1.7px, transparent 1.7px);
    background-size: 12px 12px;
    opacity: 0.95;
}

.about-dots-top {
    top: 10px;
    right: 60px;
}

.about-dots-bottom {
    bottom: 78px;
    left: 15px;
}

/* content */
.about-story-content {
    max-width: 520px;
}

.about-story-content p {
    font-size: 18px;
    line-height: 1.35;
    color: #222222;
    margin-bottom: 22px;
}

.about-readmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #4ea8f5 0%, #7441c8 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    padding: 12px 12px 12px 18px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.25s ease;
    box-shadow: 0 10px 24px rgba(100, 90, 180, 0.16);
}

.about-readmore-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.about-readmore-btn .btn-arrow {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #fff;
    color: #6a43c7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
}

@media (max-width: 1199.98px) {
    .about-story-title {
        font-size: 48px;
    }
}

@media (max-width: 991.98px) {
    .about-story-title {
        font-size: 40px;
    }

    .about-story-subtitle {
        font-size: 16px;
        max-width: 660px;
    }

    .about-visual-wrap {
        min-height: 500px;
    }

    .about-image-card {
        width: 360px;
        height: 340px;
        left: 36px;
    }

    .about-clients-card {
        right: 10px;
    }

    .about-story-content {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .about-story-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .about-story-title {
        font-size: 32px;
        line-height: 1.15;
    }

    .about-story-subtitle {
        font-size: 15px;
        max-width: 100%;
    }

    .about-visual-wrap {
        min-height: 430px;
        max-width: 100%;
    }

    .about-image-card {
        position: relative;
        width: 100%;
        max-width: 330px;
        height: 300px;
        left: 0;
        top: 40px;
        margin: 0 auto;
    }

    .about-outline-blue {
        left: 12px;
        top: 12px;
        width: 180px;
        height: 180px;
    }

    .about-outline-purple {
        right: 10px;
        bottom: 52px;
        width: 180px;
        height: 180px;
    }

    .about-clients-card {
        top: 18px;
        right: 0;
        width: 150px;
        padding: 14px 16px;
    }

    .about-clients-card .big-value {
        font-size: 34px;
    }

    .about-reviews-card {
        left: 0;
        bottom: 18px;
        width: 180px;
        padding: 14px;
    }

    .reviews-text {
        font-size: 16px;
    }

    .about-dots-top {
        right: 70px;
        top: 6px;
    }

    .about-dots-bottom {
        left: 4px;
        bottom: 6px;
    }

    .about-story-content p {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .about-story-title {
        font-size: 28px;
    }

    .about-visual-wrap {
        min-height: 390px;
    }

    .about-image-card {
        max-width: 280px;
        height: 260px;
        top: 34px;
        border-radius: 16px;
    }

    .about-clients-card {
        width: 132px;
        padding: 12px 14px;
    }

    .about-clients-card .small-label {
        font-size: 12px;
    }

    .about-clients-card .big-value {
        font-size: 28px;
    }

    .about-reviews-card {
        width: 164px;
        bottom: 10px;
    }

    .review-avatar {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .reviews-text {
        font-size: 14px;
    }

    .about-story-content p {
        font-size: 15px;
        line-height: 1.5;
    }

    .about-readmore-btn {
        font-size: 14px;
        padding: 10px 10px 10px 16px;
    }

    .about-readmore-btn .btn-arrow {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .about-dots {
        width: 82px;
        height: 82px;
        background-size: 10px 10px;
    }
}

.trust-section {
    background: #f7f5fa;
    position: relative;
    overflow: hidden;
}

.trust-header {
    max-width: 760px;
    margin-bottom: 24px;
}

.trust-title {
    font-size: 58px;
    line-height: 1.08;
    font-weight: 800;
    color: #111111;
    margin-bottom: 14px;
    letter-spacing: 0;
}

.trust-title span {
    background: linear-gradient(90deg, #4da2f1 0%, #7443c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.trust-subtitle {
    max-width: 720px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.45;
    color: #7a7c8d;
}

/* Main fade wrapper */
.trust-fade-wrap {
    position: relative;
    max-height: 640px;
    overflow: hidden;
    padding-top: 14px;
    padding-bottom: 14px;
}

/* top transparent effect */
.trust-fade-wrap::before,
.trust-fade-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    z-index: 5;
    pointer-events: none;
}

.trust-fade-wrap::before {
    top: 0;
    height: 95px;
    background: linear-gradient(180deg,
            #f7f5fa 0%,
            rgba(247, 245, 250, 0.92) 35%,
            rgba(247, 245, 250, 0) 100%);
}

.trust-fade-wrap::after {
    bottom: 0;
    height: 110px;
    background: linear-gradient(0deg,
            #f7f5fa 0%,
            rgba(247, 245, 250, 0.92) 35%,
            rgba(247, 245, 250, 0) 100%);
}

/* column stack */
.trust-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* card */
.trust-card {
    background: linear-gradient(90deg,
            rgba(219, 239, 250, 0.88) 0%,
            rgba(230, 221, 245, 0.92) 100%);
    border-radius: 22px;
    padding: 22px 22px 20px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 6px 20px rgba(30, 30, 40, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(30, 30, 40, 0.08);
}

.trust-text {
    font-size: 15px;
    line-height: 1.65;
    color: #4f5360;
    margin-bottom: 28px;
}

.trust-divider {
    width: 100%;
    height: 1px;
    background: rgba(120, 120, 140, 0.16);
    margin-bottom: 18px;
}

.trust-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-user-top {
    align-items: center;
    min-height: 84px;
}

.trust-avatar {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #ab8ee7;
    background: #fff;
}

.trust-user h4 {
    font-size: 18px;
    font-weight: 700;
    color: #303541;
    margin: 0 0 3px;
}

.trust-user span {
    display: block;
    font-size: 14px;
    color: #7f8491;
    margin-bottom: 6px;
}

.trust-stars {
    color: #f5c21b;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1;
}

/* responsive */
@media (max-width: 1199.98px) {
    .trust-title {
        font-size: 48px;
    }
}

@media (max-width: 991.98px) {
    .trust-title {
        font-size: 40px;
    }

    .trust-subtitle {
        font-size: 16px;
        max-width: 620px;
    }

    .trust-fade-wrap {
        max-height: none;
        overflow: visible;
    }

    .trust-fade-wrap::before,
    .trust-fade-wrap::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .trust-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .trust-title {
        font-size: 32px;
        line-height: 1.15;
    }

    .trust-subtitle {
        font-size: 15px;
        max-width: 100%;
    }

    .trust-card {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .trust-text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 22px;
    }

    .trust-user h4 {
        font-size: 16px;
    }

    .trust-user span {
        font-size: 13px;
    }

    .trust-avatar {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .trust-stars {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .trust-title {
        font-size: 28px;
    }

    .trust-avatar {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .trust-stars {
        font-size: 14px;
    }
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logoo img {
    width: 110px;
    /* adjust as needed */
    height: 110px;
    object-fit: contain;
}

.brand-text h4 {
    margin: 0;
}

.brand-text span {
    font-size: 14px;
}

.logo-title {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.appx {
    color: #2D336B;
}

.lab {
    color: #6A36A3;
}

.tagline {
    display: block;
    margin-top: 10px;
    letter-spacing: 0px;
    font-size: 10px;
    color: #777;
    text-transform: uppercase;
}

.shield-badge {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.gradient-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;
    border-radius: 12px;
    margin-bottom: 15px;
    /* pill shape */

    background: linear-gradient(90deg,
            #d9ecff 0%,
            /* soft blue */
            #e3e7fb 45%,
            /* transition */
            #ecd9f7 100%
            /* light purple */
        );

    /* subtle polish */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.gradient-box span {
    font-size: 14px;
    font-weight: 500;
    color: #2b2b2b;
}

.gradient-box .icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* reusable gradient */
.gradient-bg {
    background: linear-gradient(90deg,
            #d9ecff 0%,
            #e3e7fb 45%,
            #ecd9f7 100%);
}

/* chips */
.info-chip {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;

    font-size: 13px;
    font-weight: 500;
    color: #2b2b2b;

    /* apply gradient */
    background: linear-gradient(90deg,
            #d9ecff 0%,
            #e3e7fb 45%,
            #ecd9f7 100%);

    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* layout */
.chip-wrap {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.faq-section {
    background: linear-gradient(90deg, #f8fbff 0%, #f1eaf9 52%, #f7f3fb 100%);
    position: relative;
    overflow: hidden;
}

.faq-left {
    max-width: 480px;
}

.faq-badge {
    margin-bottom: 18px;
}

.faq-title {
    font-size: 44px;
    line-height: 1.08;
    font-weight: 800;
    color: #050505;
    letter-spacing: 0;
    margin-bottom: 28px;
}

.faq-call-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 12px;
    min-height: 345px;
    padding: 30px 36px;
    box-shadow: 0 16px 40px rgba(70, 56, 133, 0.04);
}

.faq-person-img {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 24px rgba(30, 30, 40, 0.08);
    margin-bottom: 24px;
}

.faq-call-card h3 {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 800;
    color: #050505;
    margin-bottom: 14px;
}

.faq-call-card p {
    max-width: 385px;
    font-size: 15px;
    line-height: 1.45;
    color: #121212;
    margin-bottom: 20px;
}

.faq-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #4ea8f5 0%, #7441c8 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 11px;
    padding: 9px 9px 9px 18px;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-call-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(100, 90, 180, 0.18);
}

.faq-call-btn span {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #ffffff;
    color: #6a43c7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
}

/* Right FAQ list */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.86);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.92);
}

.faq-question {
    width: 100%;
    min-height: 64px;
    border: 0;
    background: transparent;
    padding: 18px 22px 17px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    color: #050505;
    cursor: pointer;
}

.faq-question span {
    font-size: 19px;
    line-height: 1.2;
    font-weight: 500;
}

.faq-question strong {
    font-size: 32px;
    line-height: 1;
    font-weight: 400;
    color: #050505;
    flex-shrink: 0;
}

.faq-answer {
    display: none;
    padding: 0 22px 18px 18px;
    max-width: 585px;
    font-size: 15px;
    line-height: 1.25;
    color: #969696;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    padding-bottom: 10px;
}

.faq-item.active .faq-question span {
    font-size: 24px;
    line-height: 1.08;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .faq-title {
        font-size: 40px;
    }

    .faq-call-card h3 {
        font-size: 32px;
    }

    .faq-question span {
        font-size: 17px;
    }

    .faq-item.active .faq-question span {
        font-size: 21px;
    }
}

@media (max-width: 991.98px) {
    .faq-left {
        max-width: 100%;
    }

    .faq-title {
        font-size: 38px;
    }

    .faq-call-card {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .faq-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq-call-card {
        padding: 24px 22px;
    }

    .faq-person-img {
        width: 88px;
        height: 88px;
    }

    .faq-call-card h3 {
        font-size: 28px;
    }

    .faq-question {
        padding: 16px;
    }

    .faq-question span {
        font-size: 16px;
    }

    .faq-item.active .faq-question span {
        font-size: 19px;
    }

    .faq-question strong {
        font-size: 28px;
    }

    .faq-answer {
        padding: 0 16px 16px;
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .faq-title {
        font-size: 28px;
    }

    .faq-call-card h3 {
        font-size: 24px;
    }

    .faq-call-card p {
        font-size: 14px;
    }
}

.footer-section {
    position: relative;
    background: #f4f0f8;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* If footer accidentally comes inside a container, this breaks it out full width */
.footer-fullbleed {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.footer-wave {
    height: 185px;
    background: #f4f0f8;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.wave-fill {
    fill: url(#footerWaveGradient);
}

.wave-line {
    fill: none;
    stroke: #6e4ec2;
    stroke-width: 1;
    opacity: 0.72;
    vector-effect: non-scaling-stroke;
}

.line-1 {
    stroke-dasharray: 10 10;
    opacity: 0.9;
}

.line-2 {
    opacity: 0.68;
}

.line-3 {
    opacity: 0.5;
}

.line-4 {
    opacity: 0.36;
}

.footer-gradient {
    position: relative;
    margin-top: -2px;
    padding: 62px 0 18px;
    background: linear-gradient(90deg, var(--footer-start) 0%, var(--footer-mid) 46%, var(--footer-end) 100%);
    color: #ffffff;
    overflow: hidden;
    width: 100%;
}


.footer-gradient .container-custom {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(320px, 377px) 175px 174px 132px;
    gap: 76px;
    align-items: start;
    max-width: 1084px;
    margin: 0 auto;
}

.footer-brand h2 {
    font-size: 31px;
    line-height: 1;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 13px;
}

.footer-brand p {
    max-width: 315px;
    font-size: 17px;
    line-height: 1.15;
    color: rgba(255, 255, 255, 0.96);
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    color: #5b63c8;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.footer-socials a::before {
    color: currentColor;
    display: block;
    font-size: 19px;
    font-weight: 800;
    line-height: 1;
}

.footer-socials a:nth-child(1)::before {
    content: "f";
    font-family: Arial, sans-serif;
}

.footer-socials a:nth-child(2)::before {
    content: "";
    width: 15px;
    height: 15px;
    border: 2px solid currentColor;
    border-radius: 5px;
    box-shadow: inset 0 0 0 3px #ffffff;
    position: relative;
}

.footer-socials a:nth-child(2)::after {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    position: absolute;
    transform: translate(5px, -5px);
}

.footer-socials a:nth-child(3)::before {
    content: "";
    width: 18px;
    height: 15px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.6 6.1c-.7.3-1.5.5-2.3.6.8-.5 1.4-1.2 1.7-2.1-.8.5-1.6.8-2.6 1a4 4 0 0 0-6.9 3.7A11.4 11.4 0 0 1 3.3 5.2a4 4 0 0 0 1.2 5.4c-.7 0-1.3-.2-1.8-.5v.1a4 4 0 0 0 3.2 3.9c-.6.2-1.2.2-1.8.1a4 4 0 0 0 3.8 2.8 8.1 8.1 0 0 1-5 1.7H2a11.3 11.3 0 0 0 6.2 1.8c7.4 0 11.5-6.1 11.5-11.5v-.5c.8-.6 1.4-1.3 1.9-2.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.6 6.1c-.7.3-1.5.5-2.3.6.8-.5 1.4-1.2 1.7-2.1-.8.5-1.6.8-2.6 1a4 4 0 0 0-6.9 3.7A11.4 11.4 0 0 1 3.3 5.2a4 4 0 0 0 1.2 5.4c-.7 0-1.3-.2-1.8-.5v.1a4 4 0 0 0 3.2 3.9c-.6.2-1.2.2-1.8.1a4 4 0 0 0 3.8 2.8 8.1 8.1 0 0 1-5 1.7H2a11.3 11.3 0 0 0 6.2 1.8c7.4 0 11.5-6.1 11.5-11.5v-.5c.8-.6 1.4-1.3 1.9-2.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.footer-socials a:nth-child(4)::before {
    content: "in";
    font-family: Arial, sans-serif;
    font-size: 18px;
}

.footer-socials svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.90);
    color: #43ace8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.94);
    text-decoration: none;
    font-size: 21px;
    line-height: 1;
    font-weight: 400;
    min-height: auto;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-divider {
    width: 78%;
    height: 1px;
    background: rgba(255, 255, 255, 0.13);
    margin: 38px auto 20px;
}

.footer-bottom {
    text-align: center;
    font-size: 0;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom::before {
    content: "\00a9  AppXLab. All rights reserved.";
    font-size: 15px;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .footer-content {
        gap: 44px;
    }

    .footer-links a {
        font-size: 21px;
    }
}

@media (max-width: 991.98px) {
    .footer-wave {
        height: 180px;
    }

    .footer-gradient {
        padding-top: 44px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 42px 60px;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .footer-wave {
        height: 160px;
    }

    .footer-gradient {
        margin-top: -2px;
        padding: 42px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
        line-height: 1.35;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links {
        gap: 18px;
    }

    .footer-links a {
        font-size: 18px;
    }

    .footer-divider {
        width: 100%;
        margin-top: 34px;
    }

    .footer-bottom {
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .footer-brand h2 {
        font-size: 28px;
    }

    .footer-socials a {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}

/* Final responsive polish */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body * {
    letter-spacing: 0;
}

img,
svg {
    max-width: 100%;
}

section[id] {
    scroll-margin-top: 92px;
}

.footer-fullbleed {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
}

.brand-logoo img {
    width: 72px;
    height: 72px;
}

.brand-textt {
    display: block;
}

.logo-title {
    font-size: 30px;
}

.tagline {
    margin-top: 6px;
    font-size: 9px;
    letter-spacing: 0;
}

.nav-center {
    gap: 4px;
}

.nav-link-custom,
.btn-gradient,
.service-btn,
.preview-btn,
.about-readmore-btn,
.faq-call-btn,
.contact-submit-btn {
    min-height: 44px;
}

.btn-gradient,
.service-btn,
.preview-btn,
.about-readmore-btn,
.faq-call-btn {
    white-space: nowrap;
}

.stats-section,
.services-section,
.portfolio-section,
.team-section,
.about-story-section,
.trust-section,
.contact-section,
.faq-section {
    padding-top: 84px !important;
    padding-bottom: 84px !important;
}

.stat-card,
.review-card,
.service-card-bg,
.service-card-outline,
.service-card-main,
.portfolio-card,
.team-card,
.about-image-card,
.about-floating-card,
.trust-card,
.contact-map-card,
.faq-call-card,
.faq-item {
    border-radius: 8px;
}

.team-image-wrap {
    border-radius: 8px 8px 0 0;
}

.service-card-wrap {
    height: 100%;
    max-width: 350px;
    min-height: 0;
    margin-bottom: 0;
    padding: 22px 0 42px 22px;
}

.service-card-bg {
    width: 76%;
    height: 76%;
}

.service-card-outline {
    inset: 44px 0 0 44px;
    width: auto;
    height: auto;
}

.service-card-main {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    min-height: 310px;
    height: 100%;
}

.contact-input {
    font-size: 18px;
}

.footer-links a {
    min-height: auto;
}

@media (max-width: 991.98px) {
    html {
        scroll-padding-top: 78px;
    }

    section[id] {
        scroll-margin-top: 78px;
    }

    .brand-logoo img {
        width: 60px;
        height: 60px;
    }

    .logo-title {
        font-size: 26px;
    }

    .navbar-collapse-custom {
        backdrop-filter: blur(14px);
    }

    .navbar-collapse-custom .d-flex {
        justify-content: center;
    }

    .nav-center {
        gap: 8px;
    }

    .hero-section {
        padding-bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    .stats-section,
    .services-section,
    .portfolio-section,
    .team-section,
    .about-story-section,
    .trust-section,
    .contact-section,
    .faq-section {
        padding-top: 64px !important;
        padding-bottom: 64px !important;
    }

    .section-badge {
        max-width: 100%;
        white-space: normal;
    }

    .portfolio-card,
    .featured-card .portfolio-image,
    .portfolio-image {
        min-height: 240px;
    }

    .featured-overlay,
    .featured-content {
        opacity: 1;
        visibility: visible;
    }

    .featured-overlay {
        background: linear-gradient(180deg,
                rgba(13, 18, 32, 0) 0%,
                rgba(21, 28, 48, 0.78) 100%);
    }

    .featured-content {
        justify-content: flex-end;
        transform: none;
    }

    .about-dots,
    .about-outline-blue,
    .about-outline-purple {
        display: none;
    }

    .contact-input {
        height: 56px;
        border-radius: 8px;
        font-size: 16px;
    }

    .contact-textarea {
        min-height: 150px;
        height: 150px;
    }
}

@media (max-width: 575.98px) {
    body,
    .hero-wrapper {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .container-custom {
        padding-right: 16px;
        padding-left: 16px;
        max-width: 100%;
    }

    .row {
        margin-right: 0;
        margin-left: 0;
    }

    .row > * {
        min-width: 0;
        padding-right: 8px;
        padding-left: 8px;
    }

    .navbar-custom {
        padding-top: 14px;
    }

    .brand {
        gap: 8px;
        min-width: 0;
    }

    .brand-logoo img {
        width: 48px;
        height: 48px;
    }

    .logo-title {
        font-size: 21px;
    }

    .tagline {
        font-size: 7px;
        margin-top: 4px;
        white-space: nowrap;
    }

    .gradient-box {
        display: flex;
        width: 100%;
        justify-content: center;
        padding-right: 12px;
        padding-left: 12px;
    }

    .gradient-box span {
        font-size: 13px;
    }

    .chip-wrap {
        justify-content: center;
    }

    .hero-btn-wrap {
        width: 100%;
        max-width: 340px;
        margin-right: auto;
        margin-left: auto;
    }

    .hero-btn-wrap .btn-gradient {
        width: 100%;
    }

    .shield-badge {
        display: none !important;
    }

    .review-card {
        width: 100%;
        max-width: 340px;
    }

    .services-title,
    .portfolio-title,
    .team-title,
    .about-story-title,
    .trust-title,
    .contact-title,
    .faq-title {
        overflow-wrap: anywhere;
    }

    .stat-card {
        padding-right: 10px;
        padding-left: 10px;
    }

    .stat-label {
        font-size: 14px;
    }

    .service-card-wrap {
        padding: 16px 0 28px 16px;
    }

    .service-card-main {
        min-height: auto;
        padding: 22px 16px 18px;
    }

    .service-card-main p {
        font-size: 13px;
    }

    .portfolio-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 8px;
        scrollbar-width: thin;
    }

    .portfolio-tab {
        flex: 0 0 auto;
    }

    .about-clients-card,
    .about-reviews-card {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        max-width: 280px;
        margin: 12px auto 0;
    }

    .about-visual-wrap {
        min-height: auto;
    }

    .about-image-card {
        top: 0;
    }

    .footer-gradient {
        padding-bottom: 24px;
    }
}
