* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}


@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
    font-family: spfont;
    src: url(../../fonts/vQyevYAyHtARFwPqUzQGpnDs.woff2);
}

.hero-section {
    background-color: white;
    padding: 15px;
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero-section-inner {
    position: relative;
    background-color: #f7f7f7;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section-inner img {
    height: 100%;
}

.hero-section-inner-2 {
    padding: 32px;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 0;
    right: 0;
}

.leftDiv {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

/* .leftDiv .leftDiv-headings h1 {
    font-size: 94px;
    font-family: spfont;
    font-weight: 400;
} */

.leftDiv-headings {
    position: relative;
    width: 650px;
    height: 100px;
    overflow: hidden;
}


.heading-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.heading-wrapper h1 {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    font-size: 94px;
    font-family: spfont;
    font-weight: 400;
    line-height: 94px;
    white-space: nowrap;
}

.heading-wrapper h1:nth-child(1) {
    transform: translateY(0);
    opacity: 1;
}

.heading-wrapper h1:nth-child(2) {
    transform: translateY(100px);
    opacity: 0;
}

.heading-wrapper h1:nth-child(3) {
    transform: translateY(100px);
    opacity: 0;
}

.leftDiv-button .leftDiv-ac-button {
    width: 130px;
    height: 50px;
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.rightDiv {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.rightDiv .rightDiv-fade-list {
    display: flex;
    justify-content: center;
    gap: 0px;
    align-items: end;
    flex-direction: column;
}

.rightDiv .rightDiv-fade-list p {
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    opacity: .5;
}

.desc-div1 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 32px 60px;
    width: 100%;
    gap: 30px;
}

.desc-div2 {
    gap: 0px;
}

.desc-div2 .leftImg-div {
    width: 60% !important;
}

.desc-div2 .leftImg-div img {
    /* width: 85% !important; */
    height: 500px !important;
    object-position: top;
}

.desc-div1 .leftImg-div {
    width: 100%;
}

.desc-div1 .leftImg-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}


.desc-div1 .desc-contentDiv {
    width: 100%;
}


.desc-contentDiv .contentDiv-small-box {
    padding: 10px 20px;
    background-color: #f7f7f7;
    border-radius: 10px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.desc-contentDiv .contentDiv-heading {
    font-family: spfont;
    font-weight: 600;
    font-size: 36px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.desc-contentDiv .contentDiv-text {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    max-width: 90%;
    margin-bottom: 20px;
}

.contentDiv-button .contentDiv-ac-button {
    width: 130px;
    height: 50px;
    background-color: #ededed;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

/*================ HERO / PRODUCT SECTIONS RESPONSIVE ================*/

@media (max-width: 1439px) {
    .leftDiv-headings {
        width: 480px;
        height: 74px;
    }

    .heading-wrapper h1 {
        font-size: 70px;
        line-height: 74px;
    }
}

@media (max-width: 1199px) {
    .hero-section-inner-2 {
        padding: 24px;
    }

    .leftDiv-headings {
        width: 360px;
        height: 56px;
    }

    .heading-wrapper h1 {
        font-size: 52px;
        line-height: 56px;
    }

    .desc-div1 {
        padding: 50px 24px;
        gap: 24px;
    }
}

@media (max-width: 991px) {
    /* padding-top clears the fixed navbar (logo + Menu button) just
       enough that the heading sits close behind/under it — matching how
       close together they are on desktop — without actually overlapping. */
    .hero-section-inner-2 {
        flex-direction: column;
        justify-content: space-between;
        padding: 23px 20px 20px;
    }

    .leftDiv,
    .rightDiv {
        width: 100%;
    }

    /* On mobile/tablet .leftDiv no longer stretches to the hero's full
       height (it's now a column child, not a row child), so its own
       justify-content:space-between has nothing to distribute and the
       heading + button collapse together. Use an explicit gap instead. */
    .leftDiv {
        justify-content: flex-start;
        gap: 220px;
    }

    .leftDiv-button .leftDiv-ac-button {
        margin-top: 4px;
    }

    .rightDiv {
        flex-direction: row;
        justify-content: flex-end;
    }

    .rightDiv .rightDiv-fade-list {
        align-items: flex-end;
    }

    .desc-div1,
    .desc-div1.desc-div2 {
        flex-direction: column;
    }

    .desc-div1 .leftImg-div,
    .desc-div1.desc-div2 .leftImg-div {
        width: 100% !important;
    }

    .desc-div1 .desc-contentDiv {
        width: 100%;
    }

    /* Sculpt X4's markup puts the content div before the image (for the
       alternating content-left/image-right look on desktop); reverse
       that on mobile so the image leads, matching the X2 section above
       it and the requested mobile order. */
    .desc-div2 .desc-contentDiv {
        order: 2;
    }

    .desc-div2 .leftImg-div {
        order: 1;
    }

    .desc-div2 .leftImg-div img {
        height: 320px !important;
    }

    .contentDiv-text {
        max-width: 100% !important;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 10px;
    }

    .leftDiv-headings {
        width: 260px;
        height: 40px;
    }

    .heading-wrapper h1 {
        font-size: 36px;
        line-height: 40px;
    }

    .leftDiv-button .leftDiv-ac-button {
        width: 110px;
        height: 44px;
        font-size: 14px;
    }

    .rightDiv .rightDiv-fade-list p {
        font-size: 13px;
    }

    .desc-contentDiv .contentDiv-heading {
        font-size: 28px;
        margin-top: 14px;
        margin-bottom: 14px;
    }

    .desc-contentDiv .contentDiv-text {
        font-size: 15px;
    }

    .desc-div2 .leftImg-div img {
        height: 240px !important;
    }
}

@media (max-width: 420px) {
    .leftDiv-headings {
        width: 200px;
        height: 32px;
    }

    .heading-wrapper h1 {
        font-size: 28px;
        line-height: 32px;
    }
}

/*================ NON-INVASIVE (sticky heading + scroll-reveal gallery) ================*/
/* Mirrors the live site's actual structure: a sticky heading that stays
   parked near the top of the viewport while three rows of images (each
   offset by a different left padding, creating a scattered/staggered
   collage) scroll past underneath it, with each image individually
   fading/scaling into view as it enters the viewport. */

.non-invasive-section {
    background-color: #fff;
    padding: 100px 16px 60px;
    display: flex;
    justify-content: center;
}

.ni-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.ni-heading {
    position: sticky;
    top: 110px;
    z-index: 2;
    text-align: center;
}

.ni-heading h2 {
    font-family: 'spfont';
    font-weight: 900;
    font-size: 75px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.ni-heading p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    width: 99%;
    color: #000000;
}

.ni-images {
    width: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1111;
}

.ni-row {
    width: 100%;
    display: flex;
    align-items: center;
}

.ni-row-1 {
    padding-left: 40px;
}

.ni-row-2 {
    padding-left: 70px;
    justify-content: space-between;
}

.ni-row-3 {
    padding: 70px 25px 60px 50px;
    justify-content: space-between;
}

.ni-img {
    flex: none;
    border-radius: 16px;
    overflow: hidden;
    opacity: 1;
    transform: scale(0.82);
}

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

.ni-img-5 {
    width: 400px;
    height: 330px;
}

.ni-img-3 {
    width: 228px;
    height: 292px;
}

.ni-img-4 {
    width: 396px;
    height: 448px;
}

.ni-img-1 {
    width: 269px;
    height: 175px;
}

.ni-img-2 {
    width: 373px;
    height: 243px;
}

.ni-wide-image {
    width: 100%;
    /* max-width: 480px; */
    aspect-ratio: 1.54;
    border-radius: 16px;
    overflow: hidden;
    opacity: 1;
    transform: scale(0.88);
    z-index: 1112;
}

.ni-wide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1199px) {
    .ni-row-2 {
        padding-left: 160px;
    }

    .ni-row-3 {
        padding: 50px 60px 40px 80px;
    }

    .ni-img-5 {
        width: 320px;
        height: 270px;
    }

    .ni-img-4 {
        width: 320px;
        height: 360px;
    }
}

/* Below 991px, the desktop's staggered-padding row layout is replaced
   entirely with a fluid grid (full-width image, then 2-up grids) sized
   in percentages/aspect-ratio only, so it's mathematically impossible
   for it to overflow the viewport at any width in this range. */
@media (max-width: 991px) {
    .non-invasive-section {
        padding: 70px 16px 40px;
    }

    .ni-heading {
        top: 120px;
    }

    .ni-heading h2 {
        font-size: 44px;
    }

    .ni-row-1,
    .ni-row-2,
    .ni-row-3 {
        padding: 0;
        width: 100%;
    }

    .ni-row-1 {
        display: block;
    }

    .ni-row-2,
    .ni-row-3 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .ni-img-5,
    .ni-img-3,
    .ni-img-4,
    .ni-img-1,
    .ni-img-2 {
        width: 100%;
        height: auto;
    }

    .ni-img-5 {
        aspect-ratio: 4 / 3;
    }

    .ni-img-3,
    .ni-img-4,
    .ni-img-1,
    .ni-img-2 {
        aspect-ratio: 1 / 1;
    }

    .ni-images {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .ni-wide-image {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .ni-heading h2 {
        font-size: 32px;
    }
}

/*================ SHARED SITE STYLES (navbar, footer, hero/contact, FAQ, insights) ================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;

}

body {
    background: #FAFAF8;
    color: #111;
    scroll-behavior: smooth;
}

/*================ NAVBAR (fixed, overlay) ================*/

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 32px 0 60px;
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 100%); */
    pointer-events: none;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    pointer-events: auto;
}

.navbar .logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    text-decoration: none;
}



.navbar .logo:hover {
    color: #fff;
}

.menu-wrap {
    position: relative;
}

.menu-btn {
    background-color: #1a1a1a;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px 20px;
    border-radius: 20px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.menu-btn i {
    font-size: 16px;
    color: #fff;
}

.menu-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    min-width: 200px;
    padding-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: 0.2s ease;
    pointer-events: none;
}

.menu-dropdown.show,
.menu-wrap:hover .menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.menu-dropdown-inner {
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.menu-dropdown .nav-link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    text-align: center;
    padding: 14px 14px;
    border-radius: 12px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.menu-dropdown .nav-link:hover,
.menu-dropdown .nav-link.is-active {
    color: #fff;
}

@media (max-width: 600px) {
    .navbar {
        padding: 20px 0 50px;
    }

    .menu-btn span {
        display: none;
    }
}

.container {
    max-width: 1600px;
    width: 96%;
}

.logo {
    font-size: 30px;
    font-weight: 700;
    color: #1d74d8;
    letter-spacing: 2px;
}

.logo:hover {
    color: #1d74d8;
}


.hero {
    padding: 140px 0 70px;
}

.hero-icon {
    width: 60px;
    height: 60px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 22px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero p {
    font-size: 22px;
    max-width: 760px;
    margin: auto;
    color: #555;
}

.contact-box {
    background: #f8f8f8;
    /* border-radius: 28px; */
    padding: 12px;
    border-radius: 32px;

}

.contact-image img {
    width: 100%;
    height: 725px;
    object-position: left;
    object-fit: cover;
    border-radius: 22px;
}

.email-card,
.form-card {
    background: white;
    border-radius: 22px;
    padding: 30px;
}

.email-card {
    margin-bottom: 15px;
}

.email-card h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
}

.email-card p {
    font-size: 21px;
    margin-bottom: 12px;
}

.form-control,
.form-select {
    height: 58px;
    margin-bottom: 18px;
    border-radius: 14px;
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.submit-btn {
    width: 100%;
    height: 58px;
    border: none;
    background: #ff5b2e;
    color: #fff;
    font-weight: 600;
    border-radius: 14px;
    font-size: 18px;
    transition: .3s;
}

.submit-btn:hover {
    background: #ff4613;
    transform: translateY(-2px);
}

.faq-section {
    /* padding: 120px 0; */
}

.faq-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.faq-subtitle {
    max-width: 620px;
    margin: auto;
    font-size: 18px;
    color: #666;
}

.faq-wrapper {
    background: #fafafa;
    padding: 18px;
    border-radius: 30px;
}

.custom-accordion .accordion-item {
    /* border: none; */
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    margin-bottom: 16px;
    /* border-radius: 15px; */
    overflow: hidden;
    box-shadow: 0 0 0 1px #eee;
}

.custom-accordion .accordion-button {
    background: #fff;
    padding: 28px;
    font-weight: 600;
    font-size: 18px;
    box-shadow: none;
}

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

.custom-accordion .accordion-body {
    padding: 20px 22px;
    color: #666;
}

.faq-image {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.faq-image img {
    width: 100%;
    height: 66%;
    object-fit: cover;
    border-radius: 22px;
}

.faq-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff5a2d;
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}


/* Responsive */

@media(max-width:992px) {

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .logo {
        font-size: 24px;
    }

}

@media(max-width:768px) {

    .hero {
        padding: 100px 0 40px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }

    .menu-btn {
        padding: 10px 18px;
    }

    .contact-image img {
        height: 280px;
    }

    .email-card h2 {
        font-size: 28px;
    }

    .email-card p {
        font-size: 17px;
    }


    /*================ FAQ ================*/

    .faq-title {
        font-size: 56px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .faq-subtitle {
        max-width: 620px;
        margin: auto;
        font-size: 18px;
        color: #666;
    }

    .faq-wrapper {
        background: #fafafa;
        padding: 18px;
        border-radius: 30px;
    }

    .custom-accordion .accordion-item {
        /* border: none; */
        background: #fff;
        border: 1px solid #ececec;
        border-radius: 18px;
        margin-bottom: 16px;
        /* border-radius: 15px; */
        overflow: hidden;
        box-shadow: 0 0 0 1px #eee;
    }

    .custom-accordion .accordion-button {
        background: #fff;
        padding: 22px;
        font-weight: 600;
        font-size: 18px;
        box-shadow: none;
    }

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

    .custom-accordion .accordion-body {
        padding: 20px 22px;
        color: #666;
    }

    .faq-image {
        height: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 22px;
    }

    .faq-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 22px;
    }

    .faq-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: #ff5a2d;
        color: #fff;
        padding: 10px 18px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        z-index: 2;
    }
}

/*================ FOOTER ================*/

.footer {
    background: #000;
    padding: 70px 0 40px;
    margin: 120px 12px 12px;
    color: #fff;
    border-radius: 24px;
}

.footer h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.footer p {
    color: #aaa;
}

.footer h5 {
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer li {
    margin-bottom: 14px;
    color: #bdbdbd;
    cursor: pointer;
    transition: .3s;
}

.footer li:hover {
    color: #fff;
    padding-left: 5px;
}

.footer li a,
.footer h6 a {
    color: inherit;
    text-decoration: none;
}

.footer h6 {
    color: #fff;
    font-weight: 500;
}

.footer-logo {
    margin-top: 70px;
    text-align: center;
}

.footer-logo img {
    max-width: 100%;
    width: 100%;
}

.footer-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.footer-reveal--in {
    opacity: 1;
    transform: translateY(0);
}

/*================ INSIGHTS (Home) ================*/

.insights-section {
    padding: 60px 32px 120px;
}

.insights-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.insights-header h2 {
    font-family: spfont;
    font-weight: 600;
    font-size: 36px;
}

.insights-header p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #000;
    width: 100%;
}

.insights-header .read-more-btn {
    background: #000;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    text-decoration: none;
    white-space: nowrap;
}

.insights-header .read-more-btn i {
    font-size: 11px;
}

.insights-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 20px;
}

.blog-card {
    display: block;
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 20px;
    text-decoration: none;
}

.blog-card--large {
    grid-row: span 2;
    height: 100%;
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .72), transparent 65%);
}

.blog-card .card-info {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
}

.blog-card .tags-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.blog-card .category-tag {
    background: #ff5a2d;
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.blog-card .date-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    color: #111;
}

.blog-card .dot {
    width: 8px;
    height: 8px;
    background: #ff6232;
    border-radius: 50%;
}

.blog-card .card-info h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.15;
}

@media (max-width: 991px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .blog-card--large {
        grid-row: auto;
        height: 280px;
    }

    .insights-header h2 {
        font-size: 36px;
    }
}

/*================ RESPONSIVE ================*/

@media(max-width:991px) {

    /* Top padding only — no bottom padding, since that was stacking
       with the footer's own margin-top and doubling the gap between
       this section and the footer on tablet/mobile. */
    .faq-section {
        padding: 70px 0 0;
    }

    .faq-title {
        font-size: 38px;
    }

    .faq-image {
        margin-top: 20px;
        height: 500px;
    }

    /* Footer sits closer on tablet/mobile than the 120px desktop gap,
       matching the more compact spacing used throughout the rest of
       the page at these sizes. */
    .footer {
        text-align: center;
        padding: 50px 20px;
        margin-top: 70px;
    }

    .footer h2 {
        font-size: 28px;
    }

    .footer-logo {
        margin-top: 50px;
    }

    .footer-logo img {
        width: 100%;
    }

}

@media(max-width:768px) {

    .faq-title {
        font-size: 32px;
    }

    .faq-subtitle {
        font-size: 16px;
    }

    .custom-accordion .accordion-button {
        font-size: 16px;
        padding: 18px;
    }

    .faq-image {
        height: 350px;
    }

}
