﻿/* =========================================
   IT HOUSE BD Landing (NO gradients)
   Theme: #0b0b0f + white + red accents
   Responsive from 320px
   ========================================= */

:root {
    --it-bg: #0b0b0f;
    --it-text: rgba(255,255,255,.92);
    --it-muted: rgba(255,255,255,.70);
    --it-muted2: rgba(255,255,255,.58);
    --it-border: rgba(255,255,255,.12);
    --it-border2: rgba(255,255,255,.18);
    --it-card: rgba(255,255,255,.04);
    --it-card2: rgba(0,0,0,.20);
    --it-red: #ff2a2a;
    --it-red2: #ff4b4b;
    --it-radius: 18px;
    --it-shadow: 0 18px 55px rgba(0,0,0,.55);
    --it-shadow2: 0 12px 34px rgba(0,0,0,.45);
    --it-ease: cubic-bezier(.2,.8,.2,1);
    --it-ease-fast: cubic-bezier(.2,.9,.2,1);
}

/* ✅ While autoscroll running, disable CSS smooth scroll to avoid conflict */
html.it-autoscroll {
    scroll-behavior: auto !important;
}

* {
    box-sizing: border-box
}

.it {
    position: relative;
    background: var(--it-bg);
    color: var(--it-text);
    overflow: hidden;
}

.it-container {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

/* ----------------------------
   Topbar
---------------------------- */
.it-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11,11,15,.78);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.it-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
}

.it-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    text-decoration: none;
    color: rgba(255,255,255,.88);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--it-shadow2);
    transition: transform 180ms var(--it-ease-fast), border-color 180ms var(--it-ease-fast), background-color 180ms var(--it-ease-fast);
}

    .it-back:hover {
        transform: translateY(-1px);
        border-color: rgba(255,255,255,.18);
        background: rgba(255,255,255,.06);
    }

.it-back__icon {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(255,42,42,.12);
    border: 1px solid rgba(255,42,42,.35);
    color: rgba(255,255,255,.92);
    font-weight: 950;
}

.it-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.it-nav__link {
    text-decoration: none;
    color: rgba(255,255,255,.78);
    font-weight: 900;
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.03);
    transition: transform 180ms var(--it-ease-fast), border-color 180ms var(--it-ease-fast), background-color 180ms var(--it-ease-fast);
}

    .it-nav__link:hover {
        transform: translateY(-1px);
        border-color: rgba(255,255,255,.18);
        background: rgba(255,255,255,.06);
    }

/* ----------------------------
   Hero
---------------------------- */
.it-hero {
    position: relative;
    padding: clamp(34px, 6vw, 70px) 0 clamp(44px, 6vw, 72px);
}

.it-hero__inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(16px, 4vw, 34px);
    align-items: center;
}

/* ✅ Brandline (logo + tag) */
.it-brandline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.it-brandlogo {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: rgba(255,42,42,.10);
    border: 1px solid rgba(255,42,42,.28);
    box-shadow: 0 14px 28px rgba(0,0,0,.45);
    display: grid;
    place-items: center;
    overflow: hidden;
    flex: 0 0 auto;
}

    .it-brandlogo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .it-brandlogo.is-fallback {
        background: rgba(0,0,0,.22);
        border-color: rgba(255,255,255,.14);
    }

.it-brandlogo__txt {
    font-weight: 950;
    letter-spacing: .2px;
    color: rgba(255,255,255,.92);
    font-size: 14px;
    text-transform: uppercase;
}

.it-brandtag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 950;
    font-size: 12.5px;
    letter-spacing: .2px;
    color: rgba(255,255,255,.84);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 12px 34px rgba(0,0,0,.35);
    transition: transform 180ms var(--it-ease-fast), border-color 180ms var(--it-ease-fast);
}

    .it-brandtag::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 99px;
        background: var(--it-red);
        box-shadow: 0 0 0 4px rgba(255,42,42,.14);
        margin-right: 10px;
    }

    .it-brandtag:hover {
        transform: translateY(-1px);
        border-color: rgba(255,255,255,.18);
    }

.it-hero__title {
    margin: 16px 0 10px;
    font-size: clamp(34px, 4.8vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.it-hero__subtitle {
    margin: 0 0 16px;
    max-width: 62ch;
    color: var(--it-muted);
    font-size: clamp(14px, 1.7vw, 17.5px);
    line-height: 1.65;
}

.it-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

/* pill */
.it .pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    transition: transform 180ms var(--it-ease-fast), border-color 180ms var(--it-ease-fast);
}

    .it .pill:hover {
        transform: translateY(-1px);
        border-color: rgba(255,255,255,.18);
    }

/* pill icon via masks (NO gradients) */
.it .pill__icon {
    --pill-icon: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M3%2012h13'%20stroke='%23000'%20stroke-width='2'%20stroke-linecap='round'/%3E%3Cpath%20d='M13%205l7%207-7%207'%20stroke='%23000'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(255,42,42,.12);
    border: 1px solid rgba(255,42,42,.38);
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    transition: transform 180ms var(--it-ease-fast), border-color 180ms var(--it-ease-fast), background-color 180ms var(--it-ease-fast);
}

.it .pill:hover .pill__icon {
    transform: scale(1.06);
    background: rgba(255,42,42,.16);
    border-color: rgba(255,42,42,.52);
}

.it .pill__icon::before {
    content: "";
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,.92);
    -webkit-mask: var(--pill-icon) center / contain no-repeat;
    mask: var(--pill-icon) center / contain no-repeat;
}

.it .pill__icon--speed {
    --pill-icon: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M3%2012h13'%20stroke='%23000'%20stroke-width='2'%20stroke-linecap='round'/%3E%3Cpath%20d='M13%205l7%207-7%207'%20stroke='%23000'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
}

.it .pill__icon--shield {
    --pill-icon: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M12%202l8%204v6c0%205-3.4%209.5-8%2010-4.6-.5-8-5-8-10V6z'%20stroke='%23000'%20stroke-width='2'%20fill='none'/%3E%3Cpath%20d='M8%2012l2.3%202.3L16%208.6'%20stroke='%23000'%20stroke-width='2'%20fill='none'/%3E%3C/svg%3E");
}

.it .pill__text {
    font-size: 13px;
    font-weight: 850;
    color: rgba(255,255,255,.86);
}

.it-hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 14px;
}

.it-hero__note {
    margin-top: 10px;
    color: var(--it-muted2);
    font-weight: 800;
    font-size: 13px;
}

/* Buttons (NO gradients) */
.it .btnx {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 950;
    letter-spacing: .25px;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    user-select: none;
    transition: transform 180ms var(--it-ease-fast), box-shadow 180ms var(--it-ease-fast), background-color 180ms var(--it-ease-fast), border-color 180ms var(--it-ease-fast), color 180ms var(--it-ease-fast);
    will-change: transform;
}

    .it .btnx:focus-visible {
        outline: none;
        box-shadow: 0 0 0 4px rgba(255,42,42,.20);
    }

    .it .btnx.is-pressed {
        transform: translateY(0) scale(.98);
    }

.it .btnx--primary {
    color: #0b0b0f;
    background: var(--it-red);
    border-color: rgba(255,42,42,.55);
    box-shadow: 0 16px 32px rgba(255,42,42,.16), 0 14px 28px rgba(0,0,0,.45);
}

    .it .btnx--primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 22px 50px rgba(255,42,42,.22), 0 16px 30px rgba(0,0,0,.55);
    }

.it .btnx--ghost {
    color: rgba(255,255,255,.92);
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.14);
}

    .it .btnx--ghost:hover {
        transform: translateY(-1px);
        background: rgba(255,255,255,.07);
        border-color: rgba(255,255,255,.20);
        box-shadow: 0 14px 38px rgba(0,0,0,.50);
    }

.it .btnx--wa {
    color: rgba(255,255,255,.92);
    background: rgba(0,0,0,.18);
    border-color: rgba(255,42,42,.28);
}

    .it .btnx--wa:hover {
        transform: translateY(-1px);
        background: rgba(255,255,255,.05);
        border-color: rgba(255,42,42,.45);
        box-shadow: 0 14px 38px rgba(0,0,0,.50);
    }

/* Right visual card */
.it-hero__visual {
    display: grid;
    place-items: center;
    min-height: 330px;
}

.glass-card {
    width: min(470px, 100%);
    border-radius: 22px;
    padding: 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--it-shadow);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 220ms var(--it-ease-fast), border-color 220ms var(--it-ease-fast);
}

    .glass-card:hover {
        transform: translateY(-2px);
        border-color: rgba(255,255,255,.18);
    }

.glass-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,.10);
    font-weight: 950;
    font-size: 12.5px;
    letter-spacing: .2px;
}

.signal {
    display: inline-flex;
    align-items: flex-end;
    gap: 4px;
    height: 16px;
}

.signal__bar {
    width: 4px;
    border-radius: 99px;
    background: rgba(255,42,42,.92);
    opacity: .9;
}

    .signal__bar:nth-child(1) {
        height: 8px
    }

    .signal__bar:nth-child(2) {
        height: 12px
    }

    .signal__bar:nth-child(3) {
        height: 16px
    }

.snap-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.snap {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.10);
    transition: transform 180ms var(--it-ease-fast), border-color 180ms var(--it-ease-fast);
    min-width: 0; /* ✅ FIX: allow shrink inside grid */
}

    .snap:hover {
        transform: translateY(-1px);
        border-color: rgba(255,255,255,.18);
    }

.snap__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255,42,42,.10);
    border: 1px solid rgba(255,42,42,.28);
    box-shadow: 0 10px 22px rgba(0,0,0,.35);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.snap__svg {
    width: 22px;
    height: 22px;
}

    .snap__svg * {
        fill: none;
        stroke: rgba(255,255,255,.90);
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.snap__txt {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.snap__t,
.snap__s {
    overflow-wrap: anywhere; /* ✅ FIX: prevent overflow */
    word-break: break-word;
}

.snap__t {
    font-weight: 950;
    font-size: 13.5px;
    letter-spacing: -0.01em;
}

.snap__s {
    color: var(--it-muted2);
    font-weight: 800;
    font-size: 12.5px;
    line-height: 1.2;
}

.glass-card__line {
    height: 1px;
    margin: 12px 0;
    background: rgba(255,255,255,.10);
}

.mini-stats {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.stat__num {
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -0.02em;
    color: var(--it-red);
    text-shadow: 0 10px 24px rgba(255,42,42,.18);
}

.stat__txt {
    color: rgba(255,255,255,.74);
    font-weight: 850;
    font-size: 13px;
}

.card-foot {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.10);
    display: flex;
    justify-content: flex-end;
}

.card-link {
    text-decoration: none;
    font-weight: 950;
    font-size: 13px;
    color: rgba(255,255,255,.84);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    transition: transform 180ms var(--it-ease-fast), background-color 180ms var(--it-ease-fast), border-color 180ms var(--it-ease-fast);
}

    .card-link:hover {
        transform: translateY(-1px);
        background: rgba(255,255,255,.07);
        border-color: rgba(255,255,255,.18);
    }

.card-link__arr {
    color: var(--it-red);
    font-weight: 950;
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.70);
    font-weight: 850;
    font-size: 12.5px;
    opacity: .9;
    cursor: pointer;
    transition: transform 220ms var(--it-ease-fast), color 220ms var(--it-ease-fast);
    /* ✅ button reset (because now it's <button>) */
    background: transparent;
    border: 0;
    padding: 0;
    font: inherit;
    appearance: none;
    -webkit-appearance: none;
}

    .scroll-hint:hover {
        color: rgba(255,255,255,.90);
        transform: translateX(-50%) translateY(-1px);
    }

.scroll-hint__mouse {
    width: 18px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.22);
    position: relative;
}

    .scroll-hint__mouse::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 6px;
        transform: translateX(-50%);
        width: 2px;
        height: 6px;
        border-radius: 999px;
        background: var(--it-red);
        animation: itWheel 1.25s var(--it-ease) infinite;
    }

@keyframes itWheel {
    0% {
        transform: translate(-50%,0);
        opacity: 1;
    }

    70% {
        transform: translate(-50%,9px);
        opacity: .25;
    }

    100% {
        transform: translate(-50%,0);
        opacity: 1;
    }
}

/* ----------------------------
   Sections
---------------------------- */
.section {
    padding: clamp(44px, 6vw, 74px) 0;
}

.section__head {
    max-width: 860px;
    margin: 0 auto 26px;
    text-align: center;
}

.section__title {
    margin: 0 0 10px;
    font-size: clamp(24px, 3.2vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section__subtitle {
    margin: 0;
    color: var(--it-muted);
    font-size: clamp(14px, 1.6vw, 17px);
    line-height: 1.65;
}

/* ----------------------------
   Services grid + cards
---------------------------- */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: clamp(12px, 2.6vw, 18px);
}

.svc-card {
    border-radius: var(--it-radius);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--it-shadow2);
    overflow: hidden;
    transform: translateZ(0);
    transition: transform 200ms var(--it-ease-fast), border-color 200ms var(--it-ease-fast), background-color 200ms var(--it-ease-fast), box-shadow 200ms var(--it-ease-fast);
}

    .svc-card:hover {
        transform: translateY(-3px);
        background: rgba(255,255,255,.06);
        border-color: rgba(255,255,255,.20);
        box-shadow: 0 24px 70px rgba(0,0,0,.62);
    }

.svc-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 12px;
    padding: 16px;
    background: rgba(0,0,0,.12);
}

.svc-ic {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 14px 28px rgba(0,0,0,.45);
    transition: transform 200ms var(--it-ease-fast), border-color 200ms var(--it-ease-fast);
}

.svc-card:hover .svc-ic {
    transform: translateY(-1px);
    border-color: rgba(255,42,42,.45);
}

.svc-svg {
    width: 26px;
    height: 26px;
}

    .svc-svg * {
        fill: none;
        stroke: rgba(255,255,255,.88);
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.svc-meta {
    min-width: 0;
}

.svc-k {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.svc-title {
    margin: 0;
    font-size: 15.5px;
    font-weight: 950;
    letter-spacing: -0.01em;
}

.svc-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    background: rgba(255,42,42,.12);
    border: 1px solid rgba(255,42,42,.32);
    color: rgba(255,255,255,.92);
}

.svc-sub {
    margin: 6px 0 0;
    color: var(--it-muted);
    font-size: 13.5px;
    line-height: 1.45;
}

/* Accordion toggle */
.svc-toggle {
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.18);
    color: rgba(255,255,255,.92);
    border-radius: 14px;
    padding: 9px 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 950;
    font-size: 13px;
    transition: transform 180ms var(--it-ease-fast), background-color 180ms var(--it-ease-fast), border-color 180ms var(--it-ease-fast);
}

    .svc-toggle:hover {
        transform: translateY(-1px);
        background: rgba(255,255,255,.05);
        border-color: rgba(255,255,255,.18);
    }

    .svc-toggle:focus-visible {
        outline: none;
        box-shadow: 0 0 0 4px rgba(255,42,42,.18);
    }

.svc-toggle__ic {
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255,255,255,.82);
    border-bottom: 2px solid rgba(255,255,255,.82);
    transform: rotate(45deg);
    transition: transform 220ms var(--it-ease);
}

.svc-card.is-open .svc-toggle__ic {
    transform: rotate(-135deg);
}

/* Accordion body */
.svc-body {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 420ms var(--it-ease);
    will-change: max-height;
}

.svc-list {
    margin: 0;
    padding: 0 16px 12px 34px;
    color: rgba(255,255,255,.78);
    font-weight: 800;
    font-size: 13.5px;
    line-height: 1.7;
}

.svc-actions {
    padding: 0 16px 16px;
    display: flex;
    justify-content: flex-end;
}

/* mini button */
.mini-btn {
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.92);
    font-weight: 950;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 160ms var(--it-ease-fast), background-color 160ms var(--it-ease-fast), border-color 160ms var(--it-ease-fast);
}

    .mini-btn:hover,
    .mini-btn:focus-visible {
        outline: none;
        transform: translateY(-1px);
        background: rgba(255,255,255,.09);
        border-color: rgba(255,255,255,.18);
    }

/* ----------------------------
   Process
---------------------------- */
.section--process {
    padding-top: 10px;
}

.proc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: clamp(12px, 2.6vw, 18px);
}

.proc {
    border-radius: var(--it-radius);
    padding: 18px 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--it-shadow2);
    transition: transform 200ms var(--it-ease-fast), border-color 200ms var(--it-ease-fast), background-color 200ms var(--it-ease-fast), box-shadow 200ms var(--it-ease-fast);
}

    .proc:hover {
        transform: translateY(-3px);
        background: rgba(255,255,255,.06);
        border-color: rgba(255,255,255,.20);
        box-shadow: 0 24px 70px rgba(0,0,0,.62);
    }

.proc__ic {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(255,42,42,.12);
    border: 1px solid rgba(255,42,42,.35);
    font-weight: 950;
    letter-spacing: .2px;
    margin-bottom: 10px;
}

.proc__t {
    margin: 0 0 6px;
    font-size: 15.5px;
    font-weight: 950;
    letter-spacing: -0.01em;
}

.proc__s {
    margin: 0;
    color: var(--it-muted);
    font-size: 13.5px;
    line-height: 1.65;
    font-weight: 800;
}

/* ----------------------------
   Contact
---------------------------- */
.section--contact {
    padding-bottom: clamp(60px, 7vw, 90px);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(14px, 3vw, 22px);
    align-items: stretch;
}

.contact-left,
.contact-right {
    border-radius: var(--it-radius);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--it-shadow2);
    padding: clamp(16px, 2.4vw, 22px);
}

.contact-title {
    margin: 0 0 10px;
    font-size: clamp(22px, 3.2vw, 34px);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    margin: 0 0 14px;
    color: var(--it-muted);
    line-height: 1.65;
    font-weight: 800;
}

.contact-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.contact-note {
    margin-top: 12px;
    color: rgba(255,255,255,.70);
    font-size: 13px;
    font-weight: 850;
}

.contact-card {
    display: grid;
    gap: 12px;
}

.contact-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.10);
    transition: border-color 180ms var(--it-ease-fast), transform 180ms var(--it-ease-fast);
}

    .contact-row:hover {
        border-color: rgba(255,255,255,.18);
        transform: translateY(-1px);
    }

.contact-k {
    font-weight: 950;
    color: rgba(255,255,255,.86);
}

.contact-v {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}

.contact-val {
    color: rgba(255,255,255,.78);
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-link {
    color: rgba(255,255,255,.90);
    text-decoration: none;
    font-weight: 950;
}

    .contact-link:hover {
        text-decoration: underline;
    }

.contact-mini {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.10);
}

.contact-mini__dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: var(--it-red);
    box-shadow: 0 0 0 4px rgba(255,42,42,.14);
}

.contact-mini__txt {
    color: rgba(255,255,255,.78);
    font-weight: 850;
    font-size: 13px;
}

/* ----------------------------
   Reveal
---------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 520ms var(--it-ease), transform 520ms var(--it-ease);
}

    .reveal.is-in {
        opacity: 1;
        transform: translateY(0);
    }

/* Toast */
.it-toast {
    position: fixed;
    right: 18px;
    bottom: 76px;
    z-index: 1300;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,.78);
    border: 1px solid rgba(255,255,255,.18);
    border-left: 3px solid var(--it-red);
    color: rgba(255,255,255,.95);
    padding: 12px 14px;
    border-radius: 14px;
    max-width: min(380px, calc(100vw - 36px));
    box-shadow: var(--it-shadow2);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 180ms var(--it-ease-fast), transform 180ms var(--it-ease-fast);
}

    .it-toast.is-show {
        opacity: 1;
        transform: translateY(0);
    }

/* ----------------------------
   Responsive
---------------------------- */
@media (max-width: 1100px) {
    .svc-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 900px) {
    .it-hero__inner {
        grid-template-columns: 1fr;
    }

    .it-hero__visual {
        order: -1;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .it-nav {
        display: none;
    }
}

@media (max-width: 620px) {
    .proc-grid {
        grid-template-columns: 1fr;
    }

    /* ✅ FIX #1: Snapshot text overflow on small widths */
    .snap-grid {
        grid-template-columns: 1fr;
    }

    .snap {
        align-items: flex-start;
    }

    /* ✅ FIX #2: Services card layout on small widths */
    .svc-top {
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "ic meta"
            "btn btn";
        row-gap: 10px;
    }

    .svc-ic {
        grid-area: ic;
    }

    .svc-meta {
        grid-area: meta;
    }

    .svc-toggle {
        grid-area: btn;
        justify-self: flex-end;
    }
}

@media (max-width: 520px) {
    .svc-grid {
        grid-template-columns: 1fr;
    }

    .contact-row {
        grid-template-columns: 80px 1fr;
    }

    /* ✅ তোমার changed sizes (unchanged) */
    .it .btnx {
        height: 32px;
        padding: 0 10px;
        font-size: 11px;
    }

    .it-hero__meta {
        gap: 10px;
    }

    .it .pill {
        gap: 6px;
        padding: 7px 10px;
    }

    .it .pill__text {
        font-size: 10px;
        font-weight: 650;
    }

    .it-toast {
        right: 14px;
        bottom: 72px;
    }

    .it-brandlogo {
        width: 44px;
        height: 44px;
        border-radius: 15px;
    }

    .it-brandtag {
        font-size: 12px;
        padding: 8px 11px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .it .btnx,
    .svc-card,
    .svc-body,
    .scroll-hint__mouse::after,
    .it-toast {
        transition: none !important;
        animation: none !important;
    }
}
