


.tr-connector{
  position:absolute;
  left: var(--crossX);
  top:  var(--crossY);
  width: var(--conn);
  height: var(--conn);
  transform: translate(-50%, -50%);
  background: var(--orange);
  z-index:10;
  pointer-events:none;
}

/* КРУГИ ВЫРЕЗАЮТ (цвет фона секции) */
.tr-cut{
  position:absolute;
  width: var(--conn);
  height: var(--conn);
  border-radius:999px;
  background: var(--bg);
}
.tr-cut--top{
  left:50%;
  top:-50%;
  transform:translateX(-50%);
}
.tr-cut--left{
  left:-50%;
  top:50%;
  transform:translateY(-50%);
}

:root{
        --bg:#050505;
        --panel:#0d0d0d;
        --orange: rgb(255,151,0);
        --r:18px;
        --shadow: 0 30px 70px rgba(0,0,0,.55);

        --conn: 80px;   /* размер квадрата */
    }

    /* SECTION */
    .trx{
        background: linear-gradient(90deg, rgb(23 3 44) 0%, rgb(0, 0, 15) 25%, rgb(5 1 56) 100%);
        color:#fff;
        padding:48px 24px 70px;
        font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
        overflow:hidden;
    }
.trx__wrap {
    max-width: 1320px;
    margin: 0 auto;
}

    /* 2?2 GRID - БЕЗ ЗАЗОРОВ */
    .trg{
        position:relative;
        display:grid;
        grid-template-columns: 1fr 2fr;  /* можно менять, JS всё равно поставит квадрат правильно */
        grid-template-rows: auto auto;
        gap:0;
        align-items:stretch;
    }

    /* COMMON */
    .tr-tile{
        overflow:hidden;
        box-shadow: var(--shadow);
    }

    /* TL logo */
    .tr-tile--logo{
        position:relative;
        aspect-ratio:16/9;
        background:var(--orange);
        border-top-left-radius: 18px;
        border-top-right-radius: 18px;;
        border-bottom-left-radius: 18px;;
        border-bottom-right-radius: 18px;;
    }
    .tr-logo{
        position:absolute;
        inset:0;
        width:100%;
        height:100%;
        object-fit:cover;
        transform:scale(1.01);
    }

    /* TR title */
.tr-tile--title {
    box-shadow: none;
    overflow: visible;
    border-radius: 0;
    display: flex;
    align-items: baseline;
    padding: 0 0 12px 32px;
}
    .tr-title{
        margin:0;
        font-size:56px;
        line-height:1.05;
        font-weight:900;
        letter-spacing:-1px;
    }

    /* BL panel */
    .tr-tile--panel{
        background:#070115;
        padding: 56px 32px 28px;
        border-top-left-radius:0;
        border-top-right-radius:0;
        border-bottom-left-radius: var(--r);
        border-bottom-right-radius:0;
    }

    .tr-stats{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:26px;
        margin-bottom:14px;
    }
    .tr-num{ font-size:56px; font-weight:700; line-height:1; }
    .tr-sub{ margin-top:6px; font-size:16px; font-weight:800; color:rgba(255,255,255,.65); }
    .tr-text{ margin:0 0 18px; font-size:16px; line-height:1.55; color:rgba(255,255,255,.75); }

    .tr-btn{
        display:flex;
        align-items:center;
        justify-content:center;
        height:46px;
        border-radius:999px;
        text-decoration:none;
        color:#fff;
        font-weight:800;
        font-size:16px;
        margin-top:12px;
        background:rgba(255,255,255,.08);
        border:1px solid rgba(255,255,255,.08);
        transition:.2s ease;
    }
    .tr-btn:hover{ background:rgba(255,255,255,.12); transform:translateY(-1px);color: #fff;}
    .tr-btn{color: #fff;}
    /* BR media */
    .tr-tile--media{
        position:relative;
        display:block;
        aspect-ratio:16/9;
        background:#111;
        text-decoration:none;
        border-top-left-radius:0;
        border-top-right-radius: var(--r);
        border-bottom-left-radius: var(--r);
        border-bottom-right-radius: var(--r);
    }
    .tr-video{
        position:absolute;
        inset:0;
        width:100%;
        height:100%;
        object-fit:cover;
    }

    /* gradients (как в рефе по направлению) */
    .tr-grad{
        position:absolute;
        inset:0;
        pointer-events:none;
    }
    .tr-grad--logo{
        background: linear-gradient(to right bottom, transparent 70%, var(--orange) 90%);
        opacity:.95;
    }
    .tr-grad--media{
        background: linear-gradient(to left top, transparent 70%, var(--orange) 90%);
        opacity:1;
        z-index:2;
    }

    /* watch pill */
    .tr-watch{
        position:absolute;
        left:50%;
        top:50%;
        transform:translate(-50%,-50%);
        display:flex;
        align-items:center;
        gap:10px;
        padding:10px 14px;
        border-radius:999px;
        background:rgba(255,255,255,.12);
        border:1px solid rgba(255,255,255,.18);
        backdrop-filter: blur(8px);
        z-index:3;
    }
    .tr-play{ width:18px; height:18px; position:relative; }
    .tr-play::before{
        content:"";
        position:absolute;
        left:6px;
        top:3px;
        width:0;height:0;
        border-left:10px solid #fff;
        border-top:6px solid transparent;
        border-bottom:6px solid transparent;
    }
    .tr-watchtxt{ font-size:12px; font-weight:900; color:#fff; }

    /* CONNECTOR */
    .tr-connector{
    position:absolute;
    width: var(--conn);
    height: var(--conn);
    transform: translate(-50%, -50%);
    z-index: 9999;
    pointer-events:none;
    background:
        radial-gradient(120% 120% at 0% 0%, rgba(255,151,0,.0) 0%, rgba(255,151,0,.85) 55%, rgba(255,151,0,1) 100%),
        linear-gradient(135deg, rgba(255,151,0,1) 0%, rgba(255,151,0,.9) 55%, rgba(255,151,0,.75) 100%);
    border: none !important;
    outline: none !important;
}

    .tr-cut{
        position:absolute;
        width: var(--conn);
        height: var(--conn);
        border-radius: 999px;
        background: #070115;
    }
    .tr-cut--top{
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    }
    .tr-cut--left{
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    }

    /* responsive */
    @media (max-width:1100px){
        .tr-title{ font-size:44px; }
    }
    @media (max-width:768px){
        .trg{ grid-template-columns: 1fr; }
        .tr-connector{ display:none; }
        .tr-tile--title{ padding-left:0; }
        .tr-tile--logo,
        .tr-tile--panel,
        .tr-tile--media{
            border-radius: var(--r);
        }
    }

span.logo-sink-title {
    display: block;
    text-align: center;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
}
span.logo-bold-title {
    display: block;
    text-align: center;
    color: #000;
    font-size: 52px;
    font-weight: 500;
}
div#trLogo {
    padding-top: 60px;
}

.site-header {
    padding: 15px 0;
    background: #ebe7dc;
}
.site-header .menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-header .menu > ul > li {
    position: relative;
    display: inline-block;
}
* {
    font-family: Montserrat;
}
.site-header .menu a {
    text-decoration: none;
    padding: 5px 15px 5px 0px;
    display: block;
    color: #000;
    font-weight: 700;
}
.site-header .menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-header .menu ul ul {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.site-header .menu ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
}
.site-header .menu ul li:hover > ul {
    display: block;
}













.tr-premier-slide {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 430px;
    padding: 0;
    margin: 80px 0px;
}

.tr-premier-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    transform:scale(1.02);
}

.tr-premier-overlay{
    position:absolute;
    inset:0;
    background:
        radial-gradient(1200px 500px at 20% 60%, rgba(0,0,0,.35), rgba(0,0,0,0) 60%),
        linear-gradient(90deg, rgba(0,90,255,.35) 0%, rgba(0,180,255,.22) 40%, rgba(0,0,0,.25) 100%),
        linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.35) 100%);
}

.tr-premier-inner {
    position: relative;
    z-index: 2;
    padding: 56px 56px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    min-height: 760px;
}

.tr-premier-left{
    max-width:620px;
}

.tr-premier-title{
    margin:0 0 18px 0;
    color:#fff;
    font-weight:800;
    line-height:0.95;
    letter-spacing:-.02em;
    font-size:64px;
}

.tr-premier-subtitle{
    margin:0 0 28px 0;
    color:rgba(255,255,255,.88);
    font-size:18px;
    line-height:1.4;
}

.tr-premier-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:48px;
    padding:0 26px;
    border-radius:999px;
    background:#fff;
    color:#111;
    text-decoration:none;
    font-weight:700;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    transition:transform .2s ease, box-shadow .2s ease;
}
.tr-premier-btn:hover{
    transform:translateY(-1px);
    box-shadow:0 14px 34px rgba(0,0,0,.30);
}

.tr-premier-right{
    width:420px;
    max-width:45%;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
}

.tr-premier-next{
    color:rgba(255,255,255,.75);
    font-size:12px;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.tr-premier-card{
    position:relative;
    width:100%;
    border-radius:16px;
    overflow:hidden;
    text-decoration:none;
    min-height:210px;
    box-shadow:0 18px 50px rgba(0,0,0,.35);
}

.tr-premier-card-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    filter:saturate(1.05) contrast(1.05);
}

.tr-premier-card-gradient{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.10) 70%);
}

.tr-premier-card-content{
    position:relative;
    z-index:2;
    padding:18px 18px;
    height:100%;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:16px;
}

.tr-premier-card-text{
    color:#fff;
    font-weight:900;
    line-height:1.0;
}

.tr-premier-card-top{
    font-size:11px;
    letter-spacing:.18em;
    opacity:.9;
    margin-bottom:8px;
}

.tr-premier-card-big{
    font-size:32px;
    letter-spacing:-.02em;
}

.tr-premier-card-mid{
    font-size:18px;
    opacity:.95;
    margin:4px 0;
}

.tr-premier-watch{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color:#fff;
    font-weight:700;
    border:1px solid rgba(255,255,255,.18);
}

.tr-premier-play{
    width:30px;
    height:30px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:rgba(255,255,255,.22);
    font-size:14px;
}

/* Responsive */
@media (max-width: 1199px){
    .tr-premier-title{ font-size:54px; }
    .tr-premier-right{ width:380px; }
}

@media (max-width: 991px){
    .tr-premier-inner{
        padding:34px 22px;
        flex-direction:column;
        align-items:flex-start;
        justify-content:flex-end;
        min-height:520px;
    }
    .tr-premier-right{
        max-width:100%;
        width:100%;
    }
    .tr-premier-title{ font-size:44px; }
}
.tr-video-card{
    position:relative;
    width:100%;
    min-height:210px;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 18px 50px rgba(0,0,0,.35);
    background:#000;
}

.tr-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.01);
}

.tr-video-gradient{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.12) 70%);
}

.tr-video-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 42px 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.tr-video-text{
    color:#fff;
    font-weight:900;
    line-height:1.0;
    text-transform:uppercase;
}

.tr-video-top{
    font-size:11px;
    letter-spacing:.18em;
    opacity:.9;
    margin-bottom:10px;
}

.tr-video-big{ font-size:28px; letter-spacing:-.02em; }
.tr-video-mid{ font-size:18px; opacity:.95; margin:6px 0; }

.tr-video-watch{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color:#fff;
    font-weight:700;
    border:1px solid rgba(255,255,255,.18);
    cursor:pointer;
}

.tr-video-play{
    width:30px;
    height:30px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:rgba(255,255,255,.22);
    font-size:14px;
}
section.bg-banner {
    background: linear-gradient(90deg, rgb(23 3 44) 0%, rgb(0, 0, 15) 45%, rgb(5 1 56) 100%);
}


/* Section spacing */
.rob-results{
    background:#FBF9F4;
}

/* Title */
.rob-results__title{
    font-weight:800;
    letter-spacing:-0.03em;
    line-height:0.95;
    font-size:clamp(40px, 4.2vw, 72px);
    color:#111;
}

/* Right text */
.rob-results__text{
    max-width:520px;
    color:#111;
    font-size:16px;
    line-height:1.6;
}

/* Stats */
.rob-results__stat{
    max-width:260px;
}

.rob-results__num{
    font-weight:900;
    letter-spacing:-0.03em;
    line-height:1;
    font-size:clamp(34px, 3.2vw, 54px);
    color:#111;
    margin-bottom:6px;
}

.rob-results__label{
    color:#111;
    font-size:16px;
    line-height:1.3;
}

/* optional: make right column feel like screenshot (content sits a bit upper) */
@media (min-width: 992px){
    .rob-results .col-lg-6:last-child{
        padding-top:6px;
    }
}
section.rob-results {
    padding: 120px 0px;
}


.shop-explore{ background:#fff; }

.shop-explore__kicker{
    font-size:16px;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:#111;
    opacity:.75;
    margin-bottom:10px;
}

.shop-explore__title{
    font-weight:900;
    letter-spacing:-0.03em;
    line-height:0.95;
    font-size:clamp(34px, 5.2vw, 64px);
    color:#111;
}

.shop-explore__subtitle{
    max-width:720px;
    font-size:16px;
    line-height:1.6;
    color:#111;
    opacity:.8;
}

/* chips */
.shop-explore__tabs{ display:flex; flex-wrap:wrap; gap:10px; }
.shop-chip{
    border:1px solid rgba(0,0,0,.08);
    background:#fff;
    color:#111;
    font-size:16px;
    line-height:1;
    padding:9px 12px;
    border-radius:999px;
    cursor:pointer;
    transition:background .2s ease, border-color .2s ease, transform .2s ease;
}
.shop-chip:hover{ transform:translateY(-1px); border-color:rgba(0,0,0,.14); }
.shop-chip.is-active{
    background:#f3f3f3;
    border-color:#f3f3f3;
    font-weight:700;
}

.shop-explore__all{
    font-size:16px;
    color:#111;
    text-decoration:none;
    opacity:.8;
    display:inline-flex;
    align-items:center;
    gap:8px;
}
.shop-explore__all:hover{ opacity:1; }

/* card */
.shop-card{
    display:block;
    height:100%;
    text-decoration:none;
    color:#111;
    background:#f6f6f6;
    border-radius:18px;
    overflow:hidden;
    padding:18px 18px 16px;
    transition:transform .2s ease, box-shadow .2s ease;
}
.shop-card:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 40px rgba(0,0,0,.10);
}

.shop-card__media{
    background:#fff;
    border-radius:14px;
    height:280px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}
.shop-card__media img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:18px;
}

.shop-card__body{
    position:relative;
    padding-top:14px;
    padding-right:54px;
    min-height:86px;
}

.shop-card__meta{
    font-size:10px;
    letter-spacing:.18em;
    text-transform:uppercase;
    opacity:.6;
    margin-bottom:6px;
}

.shop-card__name{
    font-weight:800;
    letter-spacing:-.01em;
    line-height:1.2;
    font-size:14px;
    margin-bottom:6px;
}
.shop-card__reg{ font-weight:800; font-size:12px; vertical-align:top; margin-left:2px; }

.shop-card__price{
    font-size:16px;
    opacity:.85;
}

.shop-card__cta{
    position:absolute;
    right:0;
    bottom:0;
    width:38px;
    height:38px;
    border-radius:999px;
    background:#111;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    line-height:1;
}











.tr-testimonials{
    font-family:"Montserrat", sans-serif;
    position:relative;
    padding:64px 0;
    background:transparent; /* ВАЖНО: никакого синего фона */
    overflow:hidden;
    height: 650px;
}

/* FULLWIDTH BACKGROUND */
.tr-testimonials__bg-full{
    position:absolute;
    inset:0;
    z-index:0;
}

.tr-testimonials__bg-full .tr-testimonials__bg-layer{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transform:scale(1.02);
    transition:opacity .75s ease, transform .95s ease;
}

.tr-testimonials__bg-full .tr-testimonials__bg-layer.is-active{
    opacity:1;
    transform:scale(1);
}

/* overlay over full bg (for contrast) */
.tr-testimonials__bg-overlay{
    position:absolute;
    inset:0;
    /*background:
        linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.25) 60%, rgba(0,0,0,.35) 100%),
        radial-gradient(1200px 600px at 55% 35%, rgba(0,0,0,.05), rgba(0,0,0,.38));*/
    pointer-events:none;
}

/* CENTER CARD */
.tr-testimonials__card{
    position:relative;
    z-index:2;
    border-radius:18px;
    overflow:hidden;
    min-height:520px;
    max-width:1100px;   /* как на скрине: не на всю ширину */
    margin:0 auto;
    /*background:rgba(8, 25, 44, .65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow:0 25px 70px rgba(0,0,0,.35);*/
}

/* subtle internal gradient like screenshot */
.tr-testimonials__card::after{
    content:"";
    position:absolute;
    inset:0;
    /*background:linear-gradient(90deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.28) 55%, rgba(0,0,0,.20) 100%); */
    pointer-events:none;
    z-index:1;
}

.tr-testimonials__content{
    position:relative;
    z-index:2;
    min-height:520px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:56px 56px 40px;
    color:#fff;
}

.tr-quote{ margin:0 0 36px 0; max-width:760px; margin-left:auto; }
.tr-quote__text{
    font-weight:700;
    letter-spacing:-.02em;
    line-height:1.05;
    font-size:clamp(20px, 3vw, 36px);
    text-shadow:0 10px 30px rgba(0,0,0,.22);
    will-change:transform, opacity;
}
.tr-quote__text.is-out{ animation: trTextOut .45s ease forwards; }
.tr-quote__text.is-in{ animation: trTextIn .55s ease forwards; }
@keyframes trTextOut{ to{ opacity:0; transform:translateY(26px);} }
@keyframes trTextIn{ from{ opacity:0; transform:translateY(26px);} to{opacity:1; transform:translateY(0);} }

/* People row */
.tr-people{
    display:flex;
    gap:38px;
    justify-content:center;
    align-items:flex-start;
    flex-wrap:wrap;
    padding-top:10px;
}
.tr-person{
    border:0;
    background:transparent;
    color:rgba(255,255,255,.55);
    text-align:center;
    width:190px;
    cursor:pointer;
    transition:transform .2s ease, color .2s ease, opacity .2s ease;
    opacity:.85;
}
.tr-person:hover{ transform:translateY(-2px); opacity:1; }
.tr-person__avatar{
    width:54px; height:54px; border-radius:999px; overflow:hidden;
    display:inline-block;
    border:2px solid rgba(255,255,255,.18);
    margin-bottom:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}
.tr-person__avatar img{ width:100%; height:100%; object-fit:cover; }
.tr-person__name{ display:block; font-weight:800; font-size:13px; margin-bottom:6px; }
.tr-person__desc{ display:block; font-size:11px; line-height:1.35; opacity:.85; }

.tr-person.is-active{ color:#fff; opacity:1; }
.tr-person.is-active .tr-person__avatar{ border-color:rgba(255,255,255,.95); }

@media (max-width: 991px){
    .tr-testimonials{ padding:40px 0; }
    .tr-testimonials__content{ padding:34px 20px 26px; }
    .tr-quote{ margin-left:0; max-width:100%; }
    .tr-people{ gap:18px; }
    .tr-person{ width:160px; }
}
.tr-testimonials__bg-layer{
    height: 860px;
}
span.tr-video-watch-text {
    font-size: 12px;
}


.contact-light{
    font-family:"Montserrat", sans-serif;
    background:#fbfbfc;
}

.contact-light__kicker{
    font-size:12px;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:#111;
    opacity:.65;
    margin-bottom:10px;
}

.contact-light__title{
    font-weight:900;
    letter-spacing:-0.03em;
    line-height:1.02;
    font-size:clamp(34px, 4.2vw, 56px);
    color:#111;
}

.contact-light__text{
    color:#111;
    opacity:.75;
    line-height:1.6;
    max-width:420px;
}

.contact-light__items{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.contact-light__item{
    display:flex;
    gap:12px;
    align-items:flex-start;
    text-decoration:none;
    color:#111;
    padding:14px 14px;
    border-radius:14px;
    background:#fff;
    border:1px solid rgba(0,0,0,.06);
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.contact-light__item:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 40px rgba(0,0,0,.08);
    border-color:rgba(0,0,0,.10);
}

.contact-light__icon{
    width:38px;
    height:38px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,.05);
    font-size:16px;
    flex:0 0 38px;
}

.contact-light__item strong{
    display:block;
    font-weight:800;
    font-size:13px;
    margin-bottom:2px;
}
.contact-light__item small{
    display:block;
    font-size:12px;
    opacity:.7;
    line-height:1.35;
}

.contact-light__note{
    font-size:12px;
    opacity:.6;
}

.contact-light__card{
    height:100%;
    background:#fff;
    border:1px solid rgba(0,0,0,.06);
    border-radius:18px;
    box-shadow:0 22px 60px rgba(0,0,0,.08);
    overflow:hidden;
}

.contact-light__card-head{
    padding:22px 22px 0;
}

.contact-light__card-title{
    font-weight:900;
    letter-spacing:-.02em;
    font-size:20px;
    color:#111;
}

.contact-light__card-sub{
    font-size:12px;
    opacity:.7;
    color:#111;
}

.contact-light__form{
    padding:18px 22px 22px;
}

.contact-light__label{
    display:block;
    font-size:12px;
    font-weight:700;
    color:#111;
    opacity:.75;
    margin:0 0 6px;
}

.contact-light__input,
.contact-light__textarea{
    width:100%;
    border-radius:14px;
    border:1px solid rgba(0,0,0,.08);
    background:#fff;
    padding:12px 14px;
    font-size:14px;
    color:#111;
    outline:none;
    transition:border-color .2s ease, box-shadow .2s ease;
}

.contact-light__textarea{ resize:vertical; min-height:140px; }

.contact-light__input:focus,
.contact-light__textarea:focus{
    border-color:rgba(0,0,0,.22);
    box-shadow:0 0 0 4px rgba(0,0,0,.06);
}

.contact-light__privacy{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:12px;
    opacity:.75;
    color:#111;
}
.contact-light__privacy input{ width:16px; height:16px; }

.contact-light__btn{
    border:0;
    border-radius:999px;
    padding:12px 18px;
    font-weight:800;
    font-size:13px;
    color:#fff;
    background:#111;
    transition:transform .2s ease, box-shadow .2s ease;
}
.contact-light__btn:hover{
    transform:translateY(-1px);
    box-shadow:0 16px 40px rgba(0,0,0,.16);
}

@media (max-width: 991px){
    .contact-light__text{ max-width:100%; }
}



.prog-area{
    background:#fff; /* белый фон */
    font-family:"Montserrat", sans-serif;
}

.prog-area__title{
    font-weight:900;
    letter-spacing:-0.03em;
    line-height:1;
    font-size:clamp(34px, 4.5vw, 64px);
    color:#111;
}

.prog-item{
    padding:10px 6px;
}

.prog-item__icon{
    width:44px;
    height:44px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f3f4f5;
    color:#111;
    margin-bottom:14px;
}

.prog-item__title{
    font-size:16px;
    font-weight:800;
    letter-spacing:-0.01em;
    margin:0 0 8px 0;
    color:#111;
}

.prog-item__text{
    margin:0;
    font-size:14px;
    line-height:1.55;
    color:rgba(17,17,17,.78);
    max-width:320px;
}

/* чтобы выглядело воздушно как на скрине */
@media (min-width: 992px){
    .prog-item{ padding:14px 12px; }
    .prog-item__text{ max-width:340px; }
}
