/* ===== Reset-ish ===== */
html { scroll-behavior: smooth; }

:root{
    --ink: #111111;
    --muted: rgba(0,0,0,0.70);
    --muted-2: rgba(0,0,0,0.55);
    --hairline: rgba(0,0,0,0.12);
}

*{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body{
    font-family:
            -apple-system,
            BlinkMacSystemFont,
            "SF Pro Display",
            "Segoe UI",
            Inter,
            "Helvetica Neue",
            Arial,
            sans-serif !important;

    color: var(--ink);
    letter-spacing: -0.01em;
    font-weight: 400;
}

/* ===== Custom button ===== */
.btn.btn-dark{
    background: #ffffff !important;
    color: #111111 !important;
    border: 1px solid #111111 !important;
    border-radius: 2px !important;
    padding: 10px 100px;
    font-weight: 100 !important;
    letter-spacing: -0.01em;

    transition:
            background-color 0.35s cubic-bezier(.4,0,.2,1),
            color 0.35s cubic-bezier(.4,0,.2,1),
            border-color 0.35s cubic-bezier(.4,0,.2,1);
}

.btn.btn-dark:hover{
    background-color: #111111 !important;
    color: #ffffff !important;
    border-color: #111111 !important;
}

.btn.btn-dark:active{
    transform: translateY(1px);
}

/* Make disabled links really disabled */
a[aria-disabled="true"]{
    opacity: .55;
    pointer-events: none;
}

/* ===== Sections ===== */
.section{
    position: relative;
}

.section-white{
    background: #ffffff;
}

.section-grey{
    background: #efefef;
}

/* ===== Cards ===== */
.clean-card{
    border: 1px solid rgba(0,0,0,0.08) !important;
    border-radius: 18px !important;
    background: #ffffff !important;
}

.clean-card .text-muted{
    color: rgba(0,0,0,0.65) !important;
}

.clean-card ul{
    padding-left: 18px;
}

/* Mini-cards in contact */
.mini-card{
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: 14px;
    padding: 14px;
    background: #ffffff;
    height: 100%;
}
.mini-label{
    font-size: 12px;
    letter-spacing: .9px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.60);
    margin-bottom: 6px;
}
.mini-value{
    color: #111111;
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* HR lighter */
hr{
    border-color: rgba(0,0,0,0.10) !important;
}

/* ===== Floating navbar ===== */
.nav-float-wrap{
    position: fixed; top: 22px; left: 0; right: 0; z-index: 1000; pointer-events: none; } .nav-float{ pointer-events: auto; width: min(1080px, calc(100% - 28px)); margin: 0 auto; padding: 10px 14px; border-radius: 10px; background: hsla(0, 0%, 67%, .1); backdrop-filter: blur(1.5px); -webkit-backdrop-filter: blur(12px); } .navbar-brand{ letter-spacing: .4px; } .navbar .nav-link{ color: #111111; opacity: .8; } .navbar .nav-link:hover{ opacity: 1; } /* Ensure burger icon visible on white */ .navbar-toggler{ border: 1px solid rgba(0,0,0,0.15); } .navbar-toggler-icon{ filter: invert(1) grayscale(1); } /* ===== Navbar logo ===== */ .navbar-logo{ height: 50px; width: auto; object-fit: contain; } .navbar-logo:hover{ opacity: 0.85; }

/* ===== HERO IMAGE ===== */
.hero-image{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
}

.hero-bg-image{
    position: absolute;
    inset: 0;
    background-image: url("img/bg-qaventra_data2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content-min{
    position: relative;
}

.hero-title-min{
    font-size: clamp(36px, 6vw, 72px);
    line-height: 0.95;
    margin: 0;
    max-width: 20ch;
}

.hero-bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content{
    position: relative;
    padding-top: 92px;
    padding-bottom: 56px;
}

.hero-title{
    font-size: clamp(36px, 5vw, 68px);
    line-height: 0.95;
    margin: 0 0 12px;
}

.hero-sub{
    max-width: 70ch;
    opacity: .9;
    font-size: 18px;
    margin: 0 0 10px;
}

.hero-meta{
    opacity: .85;
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.hero-meta .sep{ opacity: .7; }

/* ===== Minimal follow section ===== */
.hero-follow-min{
    padding-top: 140px;
    padding-bottom: 40px;
}

.hero-paragraph{
    font-size: clamp(28px, 4.4vw, 58px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: #111111;
}

.hero-paragraph .soft{
    color: rgba(0,0,0,0.35);
}

/* ===== TITLE ===== */
.title {
    font-size: 46px;
}

/* ===== SERVICES ===== */
.services-v2{
    background: #ffffff;
    padding-top: 80px;
    padding-bottom: 65px;
}

.service-title{
    margin: 30px 0 76px;
}

.services-intro{
    font-size: 18px;
    line-height: 1.4;
    color: rgba(0,0,0,0.7);
}

/* Rows */
.service-row{
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 80px 0;
    transition: background 0.3s ease;
}

.service-row:hover{
    background: #efefef;
}

/* Layout */
.service-inner{
    display: grid;
    grid-template-columns: 80px 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Number */
.service-number{
    font-size: 14px;
    letter-spacing: 1.5px;
    color: rgba(0,0,0,0.4);
    margin-top: 8px;
}

/* Main */
.service-main h3{
    font-size: 26px;
    margin-bottom: 14px;
    transition: transform 0.25s ease;
    transform-origin: left;
}

.service-row:hover .service-main h3{
    transform: scale(1.05);
}

.service-main p{
    font-size: 18px;
    line-height: 1.35;
    color: rgba(0,0,0,0.75);
    margin: 0;
}

/* Meta */
.service-meta{
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(0,0,0,0.65);
}

/* Responsive */
@media (max-width: 992px){
    .service-inner{
        grid-template-columns: 1fr;
    }

    .service-number{
        margin-bottom: 10px;
    }
}

@media (max-width: 768px){
    .services-v2{
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .service-row{
        padding: 50px 0;
    }
}

/* ===== LETS BUILD ===== */
.split-showcase{
    padding-top: 20px;
    padding-bottom: 20px;
}

.split-media{
    width: 100%;
    max-height: 420px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #ddd;
}

.split-media img{
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.split-panel{
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.split-panel-inner{
    text-align: center;
}

.split-title{
    font-size: clamp(26px, 3vw, 30px);
    line-height: 1.05;
    margin: 0 0 14px;
}

.split-subtitle{
    font-size: 16px;
    line-height: 1.35;
    margin: 0 0 22px;
    color: rgba(0,0,0,0.65);
}

.split-cta{
    letter-spacing: 0.8px;
    font-size: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-width: 1px;
}

@media (max-width: 576px){
    .split-showcase{
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .split-panel{
        padding: 28px;
    }
}

/* Mobile */
@media (max-width: 768px){
    .service-block{
        padding: 45px 0;
    }
}

/* Mobile */
@media (max-width: 768px){
    .services-section{
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .service-block{
        padding: 40px 0;
    }
}

/* ===== OUR WORK ===== */
.work-pro{
    padding-bottom: 140px;
}
.work-pro .work-title{
    margin: 62px 0 42px;
}

.work-pro .work-sub{
    max-width: 720px;
    line-height: 1.5;
    opacity: 0.9;
}


/* Wrapper for carousel */
.work-pro .work-carousel{
    position: relative;
    width: 100%;
}


/* Horizontal scroll container */
.work-pro .work-strip{
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;

    --edge: clamp(16px, 5vw, 56px);
    padding: 18px var(--edge) 22px;

    scroll-behavior: smooth;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.work-pro .work-strip::-webkit-scrollbar{
    display: none;
}


/* Track */
.work-pro .work-track{
    display: flex;
    gap: clamp(16px, 3vw, 50px);
}


/* Card base */
.work-pro .work-card-pro{
    position: relative;
    flex: 0 0 auto;

    width: 83vw;
    aspect-ratio: 2.2 / 1;

    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: #ffffff;

    scroll-snap-align: start;
    transition: transform 0.35s ease;
}

.work-pro .work-card-pro:hover{
    transform: translateY(-2px);
}


/* Background image */
.work-pro .work-bg{
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 0.6s ease;
    z-index: 0;
}

.work-pro .work-card-pro:hover .work-bg{
    transform: scale(1.06);
}


/* Overlay gradient */
.work-pro .work-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.65) 0%,
            rgba(0,0,0,0.28) 55%,
            rgba(0,0,0,0.55) 100%
    );
    z-index: 1;
}


/* Top-left title panel */
.work-pro .work-top-left{
    position: absolute;
    top: 26px;
    left: 26px;
    z-index: 2;

    max-width: 62%;

    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    padding: 14px 16px;
    border-radius: 12px;
}

.work-pro .work-kicker{
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    opacity: 0.9;
    margin: 0 0 6px;
}

.work-pro .work-card-pro h3{
    font-size: clamp(20px, 2.2vw, 34px);
    line-height: 1.05;
    margin: 0;
}


/* Bottom-left description panel */
.work-pro .work-bottom-left-desc{
    position: absolute;
    left: 26px;
    bottom: 22px;
    z-index: 2;
    max-width: min(65%, 720px);
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 22px;
    line-height: 1.4;
    color: rgba(255,255,255,0.92);
    margin-right: 140px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* Bottom-right tag */
.work-pro .work-bottom-right{
    position: absolute;
    bottom: 22px;
    right: 22px;
    z-index: 2;
    background: #ffffff;
    color: #111111;
    padding: 10px 16px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 999px;
    white-space: nowrap;
}


/* Wrapper for nav buttons */
.work-pro .work-card-nav{
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
}


/* Nav arrow buttons */
.work-pro .work-card-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
    width: 54px;
    height: 44px;
    border: 0;
    cursor: pointer;
    border-radius: 10px;
    background: rgba(0,0,0,0.22);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    opacity: 0;
    transition: opacity 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.work-pro .work-card-arrow .arrow-ico{
    font-size: 26px;
    line-height: 1;
    transform: translateY(-1px);
}

.work-pro .work-card-arrow--prev{ left: 14px; }
.work-pro .work-card-arrow--next{ right: 14px; }


/* Show arrows only on desktop hover */
@media (hover: hover) and (pointer: fine){
    .work-pro .work-card-pro:hover .work-card-arrow,
    .work-pro .work-card-pro:focus-within .work-card-arrow{
        opacity: 1;
    }

    .work-pro .work-card-arrow:hover{
        background: rgba(0,0,0,0.34);
        transform: translateY(-50%) scale(1.03);
    }
}


/* Hide arrows completely on mobile */
@media (hover: none), (pointer: coarse){
    .work-pro .work-card-nav{
        display: none !important;
    }
}


/* Mobile layout */
@media (max-width: 768px){

    .work-pro .work-track{
        gap: 14px;
    }

    .work-pro .work-card-pro{
        width: calc(100vw - 32px);
        aspect-ratio: 1 / 1;
        border-radius: 16px;
    }

    .work-pro .work-top-left{
        top: 16px;
        left: 16px;
        max-width: 86%;
        padding: 12px 14px;
    }

    .work-pro .work-bottom-left-desc{
        display: none;
    }

    .work-pro .work-bottom-right{
        right: 16px;
        bottom: 16px;
        padding: 8px 12px;
        font-size: 11px;
    }
}

/* ===== Security modules ===== */
.security-modules-title{
    margin: 60px 0 70px;
}

.security-modules{
    padding-bottom: 140px;
}

/* Left list */
.security-modules-list{
    border-top: 1px solid rgba(0,0,0,0.12);
}

.security-module{
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;

    padding: 40px 0;
    border: 0;
    border-bottom: 1px solid rgba(0,0,0,0.12);
    background: transparent;

    text-align: left;
    cursor: pointer;

    color: #111111;
    opacity: 0.55;
    transition: opacity .18s ease, transform .18s ease;
}

.security-module:hover{
    opacity: 0.85;
    transform: translateX(2px);
}

.security-module.is-active{
    opacity: 1;
}

.security-module-name{
    font-size: 18px;
    line-height: 1.25;
}

.security-module-num{
    font-size: 12px;
    letter-spacing: 1.2px;
    color: rgba(0,0,0,0.55);
}

/* Right panel */
.security-panel{
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .22s ease, transform .22s ease;
}

.security-panel.is-active{
    opacity: 1;
    transform: translateY(0);
}

.security-panel-kicker{
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.55);
    margin-bottom: 10px;
}

.security-panel-title{
    font-size: clamp(24px, 2.6vw, 40px);
    line-height: 1.05;
    margin: 0 0 18px;
    max-width: 27ch;
}

.security-panel-block{
    margin-top: 18px;
}

.security-panel-block-title{
    font-weight: 600;
    color: rgba(0,0,0,0.80);
    margin-bottom: 6px;
}

.security-panel-block-text{
    color: rgba(0,0,0,0.65);
    line-height: 1.55;
    max-width: 70ch;
}

/* Footnote */
.security-panel-footnote{
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.10);
    color: rgba(0,0,0,0.55);
    font-size: 13px;
    line-height: 1.55;
}

/* Mobile tuning */
@media (max-width: 991.98px){
    .security-modules-title{ margin-bottom: 25px; }
    .security-panel-wrap{ padding-top: 25px; }
    .security-panel-title{ max-width: 34ch; }
}

@media (min-width: 992px){
    .security-modules .security-right-col{
        padding-left: 140px;
    }
}

/* ===== PROCESS CLEAN ===== */

.process-title{
    margin: 75px 0 70px;
}

/* item spacing */
.process-item{
    margin-bottom:10px;
}

/* content width */
.process-content{
    max-width:520px;
}

/* align right version */
.process-item.right .process-content{
    margin-left:auto;
}

/* horizontal line */
.process-line{
    width:100%;
    height:1px;
    background:rgba(0,0,0,0.18);
    margin-bottom:20px;
}

/* title */
.process-content h2{
    font-size:2rem;
    margin-bottom:10px;
}

/* number */
.process-number{
    text-align:right;
    font-size: 14px;
    letter-spacing: 1.5px;
    color: rgba(0,0,0,0.4);
    margin-top: 8px;
}

/* text */
.process-content h3{
    font-size:16px;
    line-height:1.55;
    color:rgba(0,0,0,0.65);
    margin:0;
}

/* MOBILE */
@media (max-width:991.98px){

    .process-content{
        max-width:100%;
    }

    .process-item{
        margin-bottom:60px;
    }
}

/* ===== CONTACT ===== */

.contact-clean{
    --hairline: rgba(0,0,0,0.12);
    --muted: rgba(0,0,0,0.70);
    --muted-2: rgba(0,0,0,0.55);
}

.contact-title{
    font-size: 36px;
    margin: 64px 0 14px;
    letter-spacing: -0.02em;
}

.contact-lede{
    font-size: 18px;
    line-height: 1.5;
    color: var(--muted);
    max-width: 60ch;
    margin: 0 0 26px;
}

/* meta */
.contact-meta{
    border-top: 1px solid var(--hairline);
    padding-top: 18px;
    display: grid;
    gap: 16px;
}

.contact-meta-row{
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 14px;
    align-items: baseline;
}

.contact-meta-label{
    font-size: 12px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--muted-2);
}

.contact-meta-value{
    color: rgba(0,0,0,0.80);
    font-size: 16px;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: anywhere;
}

a.contact-meta-value:hover{
    text-decoration: underline;
}

/* form */
.contact-form{
    border-top: 1px solid var(--hairline);
    padding-top: 18px;
}

.contact-form-row{
    margin-bottom: 16px;
}

.contact-label{
    display: block;
    font-size: 12px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 8px;
}

.contact-input,
.contact-textarea{
    width: 100%;
    border: 1px solid rgba(0,0,0,0.14);
    background: transparent;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 16px;
    line-height: 1.4;
    color: rgba(0,0,0,0.85);
    outline: none;
    transition: border-color .15s ease, background .15s ease;
}

.contact-textarea{
    padding: 12px 14px;
    resize: vertical;
    min-height: 160px;
}

.contact-input:focus,
.contact-textarea:focus{
    border-color: rgba(0,0,0,0.28);
    background: rgba(255,255,255,0.35);
}

.contact-actions{
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.contact-hint{
    font-size: 13px;
    color: var(--muted-2);
}

/* mobile */
@media (max-width: 575.98px){
    .contact-meta-row{
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

/* ===== FOOTER ===== */
.footer-clean{
    padding: 90px 0 40px;
    border-top: 1px solid rgba(0,0,0,0.08);
    background: #ffffff;
}

.footer-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;
    margin-bottom:60px;
    flex-wrap:wrap;
}

.footer-name{
    font-size:18px;
    font-weight:500;
    letter-spacing:-0.01em;
    margin-bottom:8px;
}

.footer-tagline{
    color:rgba(0,0,0,0.65);
    max-width:36ch;
    line-height:1.5;
    font-size:15px;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:10px;
    font-size:15px;
}

.footer-links a{
    color:#111111;
    opacity:0.8;
    transition:opacity .15s ease;
}

.footer-links a:hover{
    opacity:1;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
    padding-top:30px;
    border-top:1px solid rgba(0,0,0,0.08);
}

.footer-legal{
    font-size:13px;
    color:rgba(0,0,0,0.55);
}

.footer-meta{
    display:flex;
    gap:20px;
    font-size:13px;
}

.footer-meta a{
    color:rgba(0,0,0,0.55);
    text-decoration:none;
}

.footer-meta a:hover{
    color:#111;
}

/* Mobile */
@media (max-width:768px){

    .footer-clean{
        padding:60px 0 30px;
    }

    .footer-top{
        margin-bottom:40px;
    }

    .footer-links{
        flex-direction:row;
        gap:20px;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
    }
}