/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: clamp(420px, 60vw, 720px);
    color: #fff;
    overflow: hidden;
}

.hero__thin {
    max-height: 300px;
    min-height: 300px;
}

.hero__bg {
    position: absolute;
    inset: 0 auto 0 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero__bg__blur__left {
    position: absolute;
    top: 0;
    left: -25%;
    height: 100%;
    width: 1600px;
    max-width: none;
    object-fit: cover;
    object-position: center;
    z-index: 0;

    clip-path: inset(0 960px 0 0);
    /* transform: scaleX(-1); */

    filter: blur(18px) saturate(1.05);
    opacity: .75;
    scale: 1;
}

.hero__bg__blur__right {
    position: absolute;
    top: 0;
    left: 40%;
    height: 100%;
    width: 1600px;
    max-width: none;
    object-fit: cover;
    object-position: center;
    z-index: 0;

    clip-path: inset(0 0 0 960px);

    filter: blur(18px) saturate(1.05);
    opacity: .75;
    scale: 1;
    /* transform: scaleX(-1); */
}

/* gradient przyciemniający lewą stronę */
/* .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .75) 0%,
            rgba(0, 0, 0, .55) 10%,
            rgba(0, 0, 0, .25) 20%,
            rgba(0, 0, 0, 0) 40%);
    z-index: 1;
} */

.hero__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(72px, 12vw, 150px) 24px clamp(24px, 6vw, 60px);
    font-family: Inter, system-ui, -apple-system;
}

.hero__title {
    font-family: Montserrat, system-ui, -apple-system;
    font-weight: 600;
    font-size: clamp(28px, 7.2vw, 64px);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
}

.hero__title.shadow {
    filter: drop-shadow(6px 6px 5px black);
}

.hero__footnote {
    margin: 0 0 12px;
    font-size: clamp(10px, 1.2vw, 12px);
    max-width: 100%;
}

.hero__footnote .dot {
    margin: 0 .5ch;
    opacity: .7;
}

.hero__footnote.centered {
    text-align: center;
}

.hero__footnote.bolded {
    font-weight: 700;
}

.hero__lead {
    margin: 24px 0 24px;
    font-size: clamp(12px, 1.4vw, 16px);
    line-height: 1.45;
    max-width: 60ch;
}

@media (min-width: 400px) {
    .hero__container {
        padding-top: clamp(84px, 14vw, 160px);
    }

    .hero__lead {
        max-width: 62ch;
    }
}

@media (min-width: 560px) {
    .hero__title {
        font-size: clamp(36px, 6.5vw, 64px);
    }

    .hero__footnote {
        max-width: 80%;
    }

    .hero__lead {
        max-width: 65ch;
    }
}

@media (min-width: 880px) {
    .hero__footnote {
        max-width: 55%;
    }

    .hero__lead {
        max-width: min(52ch, 55%);
    }

    .hero__container {
        padding-top: clamp(110px, 12vw, 170px);
    }
}

@media (min-width: 1050px) {
    .hero__title {
        font-size: 64px;
    }

    .hero__footnote {
        font-size: 12px;
    }

    .hero__container {
        padding-top: 150px;
        padding-bottom: 60px;
    }
}


/* ===== SEEK THE BEST ===== */
.seekthebest {
    position: relative;
    background: #fff;
    padding: 90px 0 15px;
    font-family: Inter, system-ui, -apple-system;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 6vw, 56px);
    align-items: center;
}

.grid-2-col-slogan {
    font-family: Inter, system-ui, -apple-system;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: start;
}

.grid-2-col.slogan h3 {
    margin-left: 30px;
    font-size: 23px;
}

.grid-2-col.slogan p {
    margin-right: 10px;
    font-size: 12px;
}

.grid-2-col-img img {
    width: 100%;
    display: block;
}

.grid-2-col-text h2 {
    margin: 0 0 45px;
    font-weight: 800;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.grid-2-col-text h2 .accent {
    color: #8f8f8f;
}

.grid-2-col-text p {
    margin: 0 0 22px;
    font-size: 12px;
    line-height: 1.7;
    color: #222;
}

.img-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.img-row img {
    height: 100px;
    width: auto;
}

@media (max-width: 880px) {
    .seekthebest .grid-2-col {
        gap: 5px;
    }

    .seekthebest .grid-2-col-img {
        order: -1;
    }

    .seekthebest .grid-2-col-text h2 {
        text-align: center;
        font-size: 22px;
        margin-bottom: 28px;
    }

    .seekthebest .grid-2-col-text p {
        text-align: center;
    }

    .seekthebest .img-row {
        justify-content: center;
        gap: 32px;
    }

    .seekthebest .cta.space-bottom .btn {
        margin-top: 8px;
    }
}

@media (max-width: 720px) {
    .seekthebest .grid-2-col {
        grid-template-columns: 1fr;
    }

    .seekthebest .grid-2-col-img img {
        margin: 0 auto;
        width: 60%;
        margin-bottom: 40px;
    }
}

@media (max-width: 560px) {
    .seekthebest .grid-2-col {
        grid-template-columns: 1fr;
    }

    .seekthebest .grid-2-col-text h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .seekthebest .grid-2-col-text p {
        font-size: 11px;
        line-height: 1.6;
    }

    .seekthebest .img-row {
        gap: 22px;
    }
}

@media (max-width: 400px) {
    .seekthebest {
        padding: 40px 0 16px;
    }

    .seekthebest .grid-2-col-text h2 {
        font-size: 17px;
    }

    .seekthebest .grid-2-col-img img {
        width: 40%;
    }
}

/* ===== PARAMETERS ===== */
.parameters {
    width: 100%;
    background: #ebebeb;
    color: #0a0a0a;
}

.parameters__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 50px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(24px, 6vw, 50px);
    text-align: center;
    font-family: Inter, system-ui, -apple-system;
}

.parameter h3 {
    margin: 0 0 8px;
    font-weight: 800;
    font-size: 45px;
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.parameter p {
    margin: 0;
    font-weight: 500;
    font-size: 11px;
    line-height: 1.4;
}

@media (max-width: 880px) {
    .parameters__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .parameters__inner .parameter {
        padding-bottom: 20px;
    }
}

/* ===== EXPERTISE ===== */
.expertise {
    background: #fff;
    padding: 48px 0 3px;
    font-family: Inter, system-ui, -apple-system;
}

.expertise__title {
    font-size: 26px;
    font-weight: 800;
    margin: 80px 0 80px;
    letter-spacing: -0.01em;
    color: #111;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.expert-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.expert-card__media img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 22px;
}

.expert-card__body {
    position: relative;
    background: #efefef;
    border-radius: 22px;
    padding: 67px 22px 34px 22px;
    min-height: 280px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset;
    display: flex;
    flex-direction: column;
}

.exp-bottom {
    margin-top: auto;
    align-self: flex-end;
}

.expert-card__body__small {
    min-height: 200px;
}

.expert-card__icon {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 35px;
    height: 35px;
    object-fit: contain;
    opacity: .9;
}

.expert-card__body h3 {
    margin: 0 0 30px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.expert-card__body p {
    margin-bottom: 10px;
    font-size: 11px;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 880px) {
    .expertise .grid-3-col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .expertise .expert-card__media img {
        height: 160px;
    }

    .expertise .expert-card__body {
        min-height: 260px;
        padding: 56px 18px 26px;
    }
}

@media (max-width: 720px) {
    .expertise .expertise__title {
        font-size: 22px;
        margin: 50px 0 36px;
    }

    .expertise .expert-card__body h3 {
        font-size: 15px;
        margin: 0 0 18px;
    }

    .expertise .expert-card__body p {
        font-size: 11px;
        line-height: 1.55;
    }

    .expertise .exp-bottom {
        margin-right: 6px;
        margin-bottom: 6px;
    }
}

@media (max-width: 560px) {
    .expertise .grid-3-col {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .expertise .expert-card__media img {
        height: 180px;
        border-radius: 18px;
        margin-top: 40px;
    }

    .expertise .expert-card__body {
        min-height: 0;
        padding: 52px 16px 18px;
        border-radius: 18px;
    }

    .expertise .expert-card__icon {
        left: 16px;
        top: 16px;
    }
}

@media (max-width: 400px) {
    .expertise .expertise__title {
        font-size: 20px;
        margin: 40px 0 26px;
    }

    .expertise .expert-card__body h3 {
        font-size: 14px;
    }

    .expertise .expert-card__media img {
        height: 170px;
        border-radius: 16px;
    }

    .expertise .expert-card__body {
        border-radius: 16px;
    }
}

/* ===== MEDIA ===== */
.media {
    background: #fff;
    padding: 48px 0 3px;
    font-family: Inter, system-ui, -apple-system;
}

.media__title {
    margin: 0 0 6px;
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -0.01em;
    color: #111;
}

.media__intro {
    margin: 0 0 18px;
    font-size: 11px;
    color: #4b5563;
}

.media__slider {
    position: relative;
    margin: 50px 0 22px;
    padding: 0 56px;
}

.media__viewport {
    overflow: hidden;
    border-radius: 28px;
}

.media__track {
    display: flex;
    width: 100%;
    transform: translateX(0%);
    transition: transform .45s ease;
}

.media__slide {
    flex: 0 0 100%;
    height: 260px;
    position: relative;
}

.media__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 28px;
}

/* strzałki */
.media__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 250px;
    background: none;
    border: none;
    display: grid;
    place-items: center;
    font-size: 35px;
    line-height: 1;
    color: #919191;
    cursor: pointer;
    z-index: 2;
}

.media__nav--prev {
    left: 8px;
}

.media__nav--next {
    right: 8px;
}

.media__nav:hover {
    transform: translateY(-50%) translateY(-1px);
}

.media__nav--prev:active {
    transform: translateY(-50%) translateY(-1px) translateX(-3px);
}

.media__nav--next:active {
    transform: translateY(-50%) translateY(-1px) translateX(3px);
}

.media__more {
    position: absolute;
    right: 60px;
    bottom: -30px;
    font-size: 9px;
    color: #000;
    text-decoration: none;
}

.media__logos {
    margin-top: 80px;
}

.media__logos-title {
    text-align: center;
    font-size: 12px;
    margin: 10px 0 14px;
}

.media__logos-row {
    justify-content: center;
    gap: 36px;
}

.media__logos-row img {
    height: 60px;
    width: auto;
    filter: none;
}

@media (max-width: 880px) {
    .media__title {
        font-size: 24px;
    }

    .media__slider {
        padding: 0 32px;
    }

    .media__slide {
        height: 220px;
    }

    .media__nav {
        width: 44px;
        height: 220px;
        font-size: 30px;
    }

    .media__logos-row img {
        height: 44px;
    }
}

@media (max-width: 720px) {
    .media__viewport {
        border-radius: 22px;
    }

    .media__slide img {
        border-radius: 22px;
    }

    .media__slider {
        padding: 0 26px;
    }

    .media__slide {
        height: 200px;
    }

    .media__nav {
        width: 42px;
        height: 200px;
        font-size: 28px;
    }

    .media__more {
        right: 28px;
        bottom: -24px;
    }

    .media__logos {
        margin-top: 56px;
    }

    .media__logos-row {
        gap: 22px;
    }

    .media__logos-row img {
        height: 38px;
    }
}

@media (max-width: 560px) {
    .media__title {
        font-size: 22px;
    }

    .media__intro {
        font-size: 10.5px;
    }

    .media__slider {
        padding: 0 20px;
        margin: 36px 0 18px;
    }

    .media__slide {
        height: 180px;
    }

    .media__viewport {
        border-radius: 18px;
    }

    .media__slide img {
        border-radius: 18px;
    }

    .media__more {
        right: 20px;
        bottom: -22px;
        font-size: 9px;
    }

    .media__logos-row {
        gap: 18px;
        flex-wrap: wrap;
    }

    .media__logos-row img {
        height: 30px;
    }
}

@media (max-width: 400px) {
    .media__title {
        font-size: 20px;
    }

    .media__slide {
        height: 160px;
    }

    .media__slider {
        padding: 0 16px;
    }

    .media__logos-row img {
        height: 26px;
    }
}

/* ===== REFERENCES ===== */
.references {
    background: #fff;
    padding: 110px 0 3px;
    font-family: Inter, system-ui, -apple-system;
}

.references .title h2 {
    margin: 0 0 6px;
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -0.01em;
}

.references>.container>p:first-of-type {
    margin: 0 0 68px;
    font-size: 11px;
    color: #6b7280;
}

.slider-tile {
    max-width: 500px;
    margin: 0 auto;
    background: #efefef;
    border-radius: 22px;
    padding: 26px 26px 18px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset;
    color: #111;
}

.slider-tile img {
    width: 32px;
    height: 32px;
    display: block;
    margin: 0 auto 20px;
}

.slider-tile>p:not(.quotation-mark) {
    margin: 0 0 18px;
    font-size: 12.7px;
    line-height: 1.5;
    color: #222;
}

.line-gray {
    height: 1px;
    background: rgba(0, 0, 0, .12);
    margin: 12px 0 14px;
}

.references .grid-3-col {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) 110px;
    align-items: center;
    gap: 12px 18px;
}

.profile-image {
    justify-self: end;
}

.profile-image img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.profile-name {
    text-align: center;
}

.profile-name h3 {
    margin: 0 0 4px;
    font-size: 16.3px;
    font-weight: 700;
    color: #111;
}

.profile-name p {
    margin: 0;
    font-size: 10px;
    color: #6b7280;
}

.profile-company {
    justify-self: start;
}

.profile-company img {
    max-width: 100px;
    max-height: 24px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.media__slider {
    position: relative;
    padding: 0 56px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .08);
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    display: grid;
    place-items: center;
    font-size: 22px;
    line-height: 1;
    color: #111;
    cursor: pointer;
    z-index: 2;
}

.slider-nav--prev {
    left: 8px;
}

.slider-nav--next {
    right: 8px;
}

.slider-nav:hover {
    transform: translateY(-50%) translateY(-1px);
}

.slider-tiles::before,
.slider-tiles::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 140px;
    height: 100%;
    min-height: 140px;
    background: #efefef;
    border-radius: 22px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset;
    z-index: 0;
}

.slider-tiles::before {
    left: -24px;
}

.slider-tiles::after {
    right: -24px;
}

.references__slider {
    position: relative;
    margin: 22px 0;
    padding: 0 56px;
}

.references__viewport {
    overflow: hidden;
    touch-action: pan-y;
}

.references__track {
    display: flex;
    transition: transform .45s ease;
    align-items: center;
}

.references__slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.references__nav--prev {
    left: 8px;
}

.references__nav--next {
    right: 8px;
}

.slider-tiles::before,
.slider-tiles::after {
    content: none !important;
}

/* strzałki */
.references__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 250px;
    /* background: none; */
    border: none;
    border-radius: 20px;
    display: grid;
    place-items: center;
    font-size: 35px;
    line-height: 1;
    color: #919191;
    cursor: pointer;
    z-index: 2;
}

.references__nav--prev {
    left: 8px;
}

.references__nav--next {
    right: 8px;
}

.references__nav--prev:hover {
    transform: translateY(-50%) translateX(1px);
}

.references__nav--next:hover {
    transform: translateY(-50%) translateX(-1px);
}

.references__nav--prev:active {
    transform: translateY(-50%) translateX(-3px);
}

.references__nav--next:active {
    transform: translateY(-50%) translateX(3px);
}

@media (max-width: 880px) {
    .references {
        padding: 90px 0 8px;
    }

    .references>.container>p:first-of-type {
        margin-bottom: 44px;
    }

    .references__slider {
        padding: 0 40px;
    }

    .references__nav {
        width: 80px;
        height: 230px;
        font-size: 32px;
    }

    .slider-tile {
        max-width: 520px;
    }
}

@media (max-width: 720px) {
    .references {
        padding: 70px 0 8px;
    }

    .references__slider {
        padding: 0 28px;
    }

    .references__nav {
        width: 64px;
        height: 210px;
        font-size: 30px;
    }

    .slider-tile {
        padding: 22px 18px 16px;
        border-radius: 20px;
    }

    .slider-tile img {
        margin-bottom: 16px;
    }

    .slider-tile>p {
        font-size: 12px;
    }

    .references__nav {
        display: none;
    }

    .references .grid-3-col {
        grid-template-columns: 90px minmax(0, 1fr) 90px;
        gap: 10px 14px;
    }

    .profile-image img {
        width: 44px;
        height: 44px;
    }

    .profile-company img {
        max-height: 22px;
        max-width: 90px;
    }
}

@media (max-width: 560px) {
    .references {
        padding: 56px 0 4px;
    }

    .references .title h2 {
        font-size: 24px;
    }

    .references>.container>p:first-of-type {
        margin-bottom: 28px;
        font-size: 10.5px;
    }

    .references__slider {
        padding: 0 18px;
        margin: 16px 0;
    }

    .references__nav {
        display: none;
    }

    .slider-tile {
        max-width: 100%;
        padding: 18px 14px 14px;
        border-radius: 18px;
    }

    .slider-tile>p {
        font-size: 11.5px;
        line-height: 1.5;
    }

    .references .grid-3-col {
        grid-template-columns: 70px minmax(0, 1fr) 70px;
        gap: 8px 12px;
    }

    .profile-image img {
        width: 40px;
        height: 40px;
    }

    .profile-name h3 {
        font-size: 15px;
    }

    .profile-name p {
        font-size: 9.5px;
    }

    .profile-company img {
        max-height: 20px;
        max-width: 80px;
    }
}

@media (max-width: 400px) {
    .references .title h2 {
        font-size: 22px;
    }

    .references>.container>p:first-of-type {
        margin-bottom: 20px;
    }

    .slider-tile {
        padding: 16px 12px 12px;
        border-radius: 16px;
    }

    .slider-tile img {
        width: 28px;
        height: 28px;
        margin-bottom: 12px;
    }

    .references .grid-3-col {
        grid-template-columns: 60px minmax(0, 1fr) 60px;
        gap: 8px 10px;
    }

    .profile-image img {
        width: 36px;
        height: 36px;
    }

    .profile-company img {
        max-height: 18px;
        max-width: 72px;
    }
}


/* ===== GALLERY ===== */
.gallery {
    background: #fff;
    padding: 48px 0 36px;
    font-family: Inter, system-ui, -apple-system;
}

.gallery__title {
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -0.01em;
    color: #111;
}

.gallery__lead {
    margin: 0 0 50px;
    font-size: 11px;
    color: #000000;
}

.gallery__lead.bold {
    font-weight: 800;
    margin: 20px;
}

.gallery__grid {
    gap: 26px;
}

.gallery__grid__background {
    background: #f1f1f1;
    border-radius: 30px;
    padding: 40px;
    margin-bottom: -80px;
}

.gallery__grid img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.gallery__more {
    display: flex;
    justify-content: flex-end;
    margin: 30px 10px 0 0;
}

.gallery__more a {
    font-size: 11px;
    color: #111;
    text-decoration: none;
}

.gallery__more a:hover {
    opacity: 1;
}

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

@media (max-width: 560px) {
    .gallery__grid {
        grid-template-columns: 1fr;
        width: 75%;
        margin: 0 auto;
    }
}

/* ===== BANNER ===== */
.banner {
    padding: 26px 0;
    font-family: Inter, system-ui, -apple-system;
}

.banner .container {
    position: relative;
    overflow: hidden;
    min-height: clamp(220px, 28vw, 360px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    padding: 28px;
}

.banner__bg {
    border-radius: 100px;
    overflow: hidden;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% center;
    z-index: 0;
}

.banner h2,
.banner p,
.banner .cta {
    align-self: center;
    position: relative;
    z-index: 2;
}

.banner h2 {
    font-family: Montserrat, system-ui, -apple-system;
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -0.01em;
    margin: 0 0 30px;
}

.banner p {
    font-family: Garet, system-ui, -apple-system;
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 700;
}

.banner .cta {
    display: block;
    margin: 16px 0 4px;
}

.banner .btn.btn-white {
    text-transform: uppercase;
    letter-spacing: .02em;
}

@media (max-width: 880px) {
    .banner .container {
        min-height: clamp(220px, 32vw, 340px);
        padding: 24px;
    }

    .banner h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .banner p {
        font-size: 11px;
    }

    .banner__bg {
        object-position: 55% center;
    }
}

@media (max-width: 720px) {
    .banner .container {
        align-items: center;
        text-align: center;
        padding: 22px;
    }

    .banner h2 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .banner p {
        font-size: 11px;
        line-height: 1.5;
    }

    .banner .cta {
        margin: 14px 0 2px;
    }

    .banner .btn.btn-white {
        margin-top: 6px;
        padding: 10px 18px;
        font-size: 12px;
    }
}

@media (max-width: 560px) {
    .banner .container {
        min-height: 210px;
        border-radius: 22px;
        padding: 18px;
    }

    .banner h2 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .banner p {
        font-size: 10.5px;
    }

    .banner .btn.btn-white {
        margin-top: 1px;
        padding: 10px 18px;
        font-size: 12px;
    }

    .banner__bg {
        object-fit: scale-down;
        border-radius: 50px;
    }
}

@media (max-width: 400px) {
    .banner .container {
        min-height: 190px;
        border-radius: 18px;
        padding: 14px;
    }

    .banner h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .banner p {
        font-size: 10px;
    }

    .banner .btn.btn-white {
        padding: 10px 16px;
        font-size: 11px;
    }
}

/* ===== WHITE BANNER ===== */
.white-banner {
    margin: 0 auto;
    padding: 6px 24px 14px;
    background: #fff;
    padding: 50px 0 0px;
    font-family: Inter, system-ui, -apple-system;
}

.white-banner p {
    margin: 0;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .01em;
    color: #111;
}

@media (max-width: 600px) {
    .contact-me .white-banner p {
        font-size: 11px;
    }

    .contact-me .white-banner::after {
        margin: 12px 16px 0;
    }
}

@media (max-width: 720px) {
    .banner .container {
        align-items: center;
        text-align: center;
        padding: 22px;
    }

    .banner__bg {
        object-position: 60% center;
    }
}

.join-next-edition {
    padding: 90px 0 10px;
    font-family: Inter, system-ui, -apple-system;
}

.join-next-edition .white-banner.background {
    max-width: 750px;
    margin: 0 auto;
    background: #f3f3f4;
    border-radius: 24px;
    padding: 18px 24px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

.join-next-edition .white-banner.background>p {
    margin: 4px 0 12px;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .01em;
    color: #111;
}

.join-next-edition .white-banner.background .content {
    max-width: 980px;
    margin: 0 auto;
}

.join-next-edition .white-banner.background .content p {
    margin: 0 0 10px;
    text-align: left;
    font-size: 11px;
    line-height: 1.55;
    font-weight: 500;
    color: #222;
}

.join-next-edition .white-banner.background::after {
    content: none;
}

@media (max-width: 560px) {
    .join-next-edition .white-banner.background {
        border-radius: 18px;
        padding: 14px 16px;
    }

    .join-next-edition .white-banner.background>p {
        font-size: 11px;
    }

    .join-next-edition .white-banner.background .content p {
        font-size: 10.8px;
    }
}

.learn-from-anywhere {
    padding: 40px 0 10px;
    font-family: Inter, system-ui, -apple-system;
}

.learn-from-anywhere .white-banner::after {
    display: none;
}

.learn-from-anywhere .white-banner>p {
    margin: 4px 20px 12px;
    text-align: left;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: .01em;
    color: #111;
}

.learn-from-anywhere .white-banner .content>p {
    margin: 4px 20px 12px;
    text-align: left;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .01em;
    color: #5f5f5f;
}


/* ===== CONTACT CHANNELS ===== */
.contact-channels {
    background: #fff;
    padding: 18px 0 10px;
    font-family: Inter, system-ui, -apple-system;
}

.contact-channels .white-banner {
    max-width: 800px;
    margin: 0 auto;
    padding: 6px 24px 14px;
}

.contact-channels .grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 40px;
    align-items: center;
    justify-items: center;
    text-align: center;
}

.contact-channels .grid-2-col>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.contact-channels .grid-2-col img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.contact-channels .grid-2-col p {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .01em;
    color: #111;
}

.draw-line {
    content: "";
    display: block;
    height: 2px;
    background: rgba(0, 0, 0, .12);
    margin: 30px 5px;
    border-radius: 1px;
}

@media (max-width: 880px) {
    .contact-channels .white-banner {
        padding: 10px 18px 12px;
    }

    .contact-channels .grid-2-col {
        gap: 10px 24px;
    }

    .contact-channels .grid-2-col img {
        width: 44px;
        height: 44px;
    }

    .contact-channels .grid-2-col p {
        font-size: 14px;
    }

    .contact-channels .white-banner::after {
        margin: 12px 12px 0;
    }
}

@media (max-width: 720px) {
    .contact-channels .grid-2-col {
        gap: 12px 18px;
    }

    .contact-channels .grid-2-col img {
        width: 36px;
        height: 36px;
    }

    .contact-channels .grid-2-col p {
        font-size: 13px;
    }
}

@media (max-width: 560px) {
    .contact-channels {
        padding: 12px 0 8px;
    }

    .contact-channels .white-banner {
        padding: 6px 16px 12px;
    }

    .contact-channels .grid-2-col {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-channels .grid-2-col img {
        width: 28px;
        height: 28px;
        padding: 0;
    }

    .contact-channels .grid-2-col p {
        font-size: 12.5px;
    }

    .contact-channels .white-banner::after {
        margin: 10px 10px 0;
    }
}

@media (max-width: 400px) {
    .contact-channels .grid-2-col img {
        width: 24px;
        height: 24px;
    }

    .contact-channels .grid-2-col p {
        font-size: 12px;
    }

    .contact-channels .white-banner {
        padding: 4px 12px 10px;
    }
}


/* ===== CONTACT FORM ===== */
.contact-form {
    background: #fff;
    padding: 48px 0 32px;
    font-family: Inter, system-ui, -apple-system;
}

.contact-form__wrap {
    max-width: 600px;
}

.contact-form__title {
    margin: 0 0 70px;
    text-align: center;
    font-weight: 700;
    font-size: 25px;
    letter-spacing: -0.01em;
    color: #111;
}

.form-row {
    margin-bottom: 16px;
}

.form-row--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 22px;
}

.form-field label {
    display: block;
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    color: #111;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 0;
    outline: none;
    background: #f2f2f3;
    color: #111;
    padding: 14px 18px;
    border-radius: 999px;
    font-size: 14px;
}

.form-field textarea {
    padding: 18px 22px;
    min-height: 140px;
    border-radius: 36px;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .06);
}

.form__status {
    margin: 0 auto;
    padding: 0 14px;
    max-width: 480px;
    max-height: 0;
    overflow: hidden;

    text-align: center;
    font-size: 13px;
    line-height: 1.4;
    color: var(--color-gray);

    background: #f5f6f8;
    border: 1px solid #eceef2;
    border-radius: 999px;
    box-shadow:
        inset 0 -2px 0 rgba(0, 0, 0, .04),
        inset 0 1px 0 rgba(255, 255, 255, .7);

    opacity: 0;
    transform: translateY(4px);
    transition:
        opacity .25s ease,
        transform .25s ease,
        max-height .25s ease,
        padding-top .25s ease,
        padding-bottom .25s ease,
        margin-top .25s ease;
}

.form__status--visible {
    opacity: 1;
    transform: none;
    max-height: 200px;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-top: 16px;
}

.form__status--success {
    background: #ecfdf3;
    border-color: #bbf7d0;
    color: #166534;
}

.form__status--error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #b91c1c;
}

@media (max-width: 720px) {
    .form-row--2col {
        grid-template-columns: 1fr;
    }
}

/* ===== LEFT LINE ===== */
.leftline {
    background: #fff;
    padding: 20px 0 28px;
    font-family: Inter, system-ui, -apple-system;
}

.leftline-section h3 {
    margin: 0 0 18px;
    font-weight: 800;
    font-size: 23px;
    letter-spacing: -0.01em;
    color: #111;
}

.leftline-section h3 .accent {
    font-weight: 600;
    color: #6b7280;
}

.txt-leftline {
    position: relative;
    max-width: 880px;
    margin-left: 6px;
    padding-left: 20px;
    border-left: 2px solid #111;
    font-size: 14px;
    line-height: 1.7;
    color: #111;
    margin-top: 40px;
}

/* ===== MEDIA PRESENCE ===== */
.media-presence {
    background: #fff;
    padding: 50px 0;
    font-weight: 600;
    font-family: Inter, system-ui, -apple-system;
}

img.gallery__grid__resize {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.3);
    transform-origin: center;
}

.gallery__grid__crop {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 1;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.media-gallery {
    background: #fff;
    padding: 48px 0 180px;
    font-family: Inter, system-ui, -apple-system;
}

@media (max-width:880px) {
    .media-gallery {
        padding: 40px 0 120px;
    }

    .media-gallery .gallery__grid__background {
        padding: 28px;
        border-radius: 24px;
        margin-bottom: -60px;
    }

    .media-gallery .grid-3-col {
        gap: 18px;
    }
}

@media (max-width:720px) {
    .media-gallery .grid-3-col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .media-gallery .gallery__lead {
        margin: 0 0 24px;
        text-align: center;
    }
}

@media (max-width:560px) {
    .media-gallery .gallery__grid__background {
        padding: 18px;
        border-radius: 18px;
        margin-bottom: -44px;
    }

    .media-gallery .grid-3-col {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .media-gallery .gallery__grid__background>img.gallery__grid__crop {
        margin-top: 16px;
        border-radius: 14px;
    }
}

@media (max-width:400px) {
    .media-gallery {
        padding-bottom: 80px;
    }

    .media-gallery .grid-3-col {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .media-gallery .gallery__grid__background {
        padding: 14px;
        margin-bottom: -30px;
    }
}


/* ===== SKILL SECTION ===== */
.speaker {
    background: #fff;
    padding: 100px 0 40px;
    font-family: Inter, system-ui, -apple-system;
}

.speaker .skill-section h3 {
    margin: 0 0 60px;
    text-align: center;
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -0.01em;
}

.speaker .skill-section>p {
    margin: 0 auto 20px;
    max-width: 1000px;
    font-size: 12px;
    line-height: 1.65;
    color: #1a1a1a;
}

.speaker .grid-2-col {
    margin: 100px 0 100px;
    gap: 24px;
    align-items: center;
}

.speaker .grid-2-col-img img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border-radius: 28px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .65) inset;
}

.speaker .tabbed-row {
    gap: 42px;
    max-width: 1000px;
    margin: 40px auto 10px;
}

.speaker .tabbed-row>div {
    position: relative;
    padding-top: 24px;
}

/* cienka linia */
.speaker .tabbed-row>div::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: rgba(0, 0, 0, .12);
}

/* gruby odcinek */
.speaker .tabbed-row>div::after {
    content: "";
    position: absolute;
    top: -2px;
    height: 4px;
    width: 64px;
    background: #0f0f0f;
    border-radius: 999px;
}

.speaker .tabbed-row-left {
    text-align: left;
}

.speaker .tabbed-row-left::after {
    left: 0;
}

.speaker .tabbed-row-middle {
    text-align: center;
}

.speaker .tabbed-row-middle::after {
    left: 50%;
    transform: translateX(-50%);
}

.speaker .tabbed-row-right {
    text-align: right;
}

.speaker .tabbed-row-right::after {
    right: 0;
}

.speaker .tabbed-row p {
    margin: 10px 0 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.6;
    color: #111;
}

@media (max-width: 900px) {
    .speaker .grid-2-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .speaker .tabbed-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .speaker .tabbed-row-left,
    .speaker .tabbed-row-middle,
    .speaker .tabbed-row-right {
        text-align: left;
    }

    .speaker .tabbed-row-middle::after,
    .speaker .tabbed-row-right::after {
        left: 0;
        right: auto;
        transform: none;
    }
}

/* ===== SUMMIT ===== */
.summit {
    background: #fff;
    padding: 70px 0 36px;
    font-family: Inter, system-ui, -apple-system;
}

.summit .container {
    align-items: center;
    gap: 34px 56px;
}

.summit .grid-2-col-img img {
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .65) inset;
}

.summit .grid-2-col-text h3 {
    margin: 0 0 16px;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.01em;
    color: #111;
}

.summit .grid-2-col-text p {
    margin: 0 0 14px;
    font-size: 12px;
    line-height: 1.6;
    color: #1a1a1a;
}

.summit .grid-2-col-text .grid-2-col {
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
    margin-top: 16px;
    align-items: stretch;
}

.summit .blob {
    display: block;
    align-items: start;
    gap: 14px;
    padding: 10px 14px;
    background: #f3f3f4;
    border-radius: 200px;
    padding-left: 30px;
}

.summit .blob h3 {
    margin: 0;
    padding: 5px 0;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.summit .blob p {
    margin: 0;
    font-size: 11px;
    line-height: 1.25;
    color: #000000;
    font-weight: 600;
}

.summit .cta {
    margin-top: 50px;
}

@media (max-width:880px) {
    .summit .container.grid-2-col {
        gap: 0px;
    }
}

@media (max-width:720px) {
    .summit .container.grid-2-col {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .summit .grid-2-col-img {
        order: -1;
    }

    .summit .grid-2-col-img img {
        width: 75%;
        margin: 0 auto;
    }

    .summit .grid-2-col-text .grid-2-col {
        gap: 12px;
    }

    .summit .blob {
        text-align: center;
        padding: 12px 16px;
    }
}

@media (max-width:560px) {
    .summit {
        padding: 44px 0 24px;
    }

    .summit .grid-2-col-text h3 {
        font-size: 18px;
    }

    .summit .grid-2-col-text p {
        font-size: 11px;
        line-height: 1.55;
    }

    .summit .blob {
        border-radius: 16px;
        padding: 10px 14px;
    }

    .summit .blob h3 {
        font-size: 20px;
    }

    .summit .blob p {
        font-size: 11px;
    }

    .summit .cta {
        margin-top: 30px;
    }
}

@media (max-width:400px) {
    .summit .grid-2-col-text .grid-2-col {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .summit .grid-2-col-img img {
        border-radius: 18px;
    }

    .summit .blob {
        padding: 8px 12px;
    }

    .summit .blob h3 {
        font-size: 18px;
    }

    .summit .grid-2-col-text p {
        font-size: 10.5px;
    }
}


/* ===== CUTOFF GALLERY ===== */
.cutoff-gallery {
    background: #fff;
    padding: 50px 0 28px;
    font-family: Inter, system-ui, -apple-system;
}

.cutoff-gallery__wrap {
    overflow: hidden;
    width: 100%;
    border-radius: 8px;
}

.cutoff-gallery__track {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-left: -200;
}

.cutoff-gallery__img {
    flex: 0 0 auto;
    width: 37%;
    object-fit: cover;
    display: block;
    user-select: none;
}

@media (max-width:640px) {
    .cutoff-gallery__img {
        border-radius: 20px;
    }
}

/* ===== WHAT MVP MEANS ===== */
.whatmvpmeans {
    background: #fff;
    padding: 70px 0 40px;
    font-family: Inter, system-ui, -apple-system;
}

.whatmvpmeans h2 {
    margin: 0 0 26px;
    font-weight: 800;
    font-size: 25px;
    letter-spacing: -0.01em;
    color: #111;
}

.grid-row-separated {
    position: relative;
    padding: 12px 0 28px;
    margin: 0 0 10px;
}

.grid-row-separated h4 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .01em;
    color: #111;
}

.grid-row-separated p {
    margin: 0;
    font-size: 10px;
    line-height: 1.65;
    color: #1a1a1a;
}

.grid-row-separated:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(0, 0, 0, .14);
}

.whatmvpmeans .grid-2-col-img img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .6) inset;
}

@media (max-width:880px) {
    .whatmvpmeans .grid-2-col {
        gap: 24px 36px;
        align-items: center;
    }

    .whatmvpmeans h2 {
        font-size: 23px;
    }

    .whatmvpmeans .grid-row-separated h4 {
        font-size: 15px;
    }

    .whatmvpmeans .grid-row-separated p {
        font-size: 11.5px;
        line-height: 1.7;
    }

    .whatmvpmeans .grid-2-col-img img {
        max-width: 420px;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width:720px) {
    .whatmvpmeans .grid-2-col {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .whatmvpmeans h2 {
        font-size: 22px;
    }

    .whatmvpmeans .grid-row-separated {
        padding: 10px 0 22px;
    }

    .whatmvpmeans .grid-2-col-img img {
        width: clamp(240px, 70%, 420px);
        border-radius: 24px;
    }
}

@media (max-width:560px) {
    .whatmvpmeans h2 {
        font-size: 20px;
    }

    .whatmvpmeans .grid-row-separated h4 {
        font-size: 14px;
    }

    .whatmvpmeans .grid-row-separated p {
        font-size: 11px;
    }

    .whatmvpmeans .grid-row-separated {
        padding-bottom: 18px;
    }

    .whatmvpmeans .grid-2-col-img img {
        width: 82%;
        border-radius: 20px;
    }
}

@media (max-width:400px) {
    .whatmvpmeans h2 {
        font-size: 18px;
    }

    .whatmvpmeans .grid-row-separated h4 {
        font-size: 13px;
    }

    .whatmvpmeans .grid-row-separated p {
        font-size: 10.5px;
    }

    .whatmvpmeans .grid-2-col-img img {
        width: 78%;
    }
}

/* ===== LOGO BANNER CUT ===== */
.smlogo {
    background: #fff;
    padding: 60px 0 0;
}

.logo-banner {
    position: relative;
    display: grid;
    place-items: center;
    padding: 5px 0;
}

.logo-banner::before {
    top: 0;
}

.logo-banner::after {
    bottom: 0;
}

.logo-crop {
    width: clamp(180px, 22vw, 280px);
    aspect-ratio: 10 / 3;
    overflow: hidden;
}

.logo-crop img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* ===== GRID LIST ===== */
.grid-list {
    background: #fff;
    padding: 58px 0 40px;
    font-family: Inter, system-ui, -apple-system;
}

.grid-list h2 {
    margin: 0 0 28px;
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -0.01em;
    color: #111;
}

.accent-blue {
    color: #2563eb;
}

.grid-list .grid-3-col {
    gap: 22px;
}

.grid-list-col {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
}

.grid-list-tile {
    background: #f5f6f8;
    border: 1px solid #eceef2;
    border-radius: 60px;
    padding: 25px 18px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.grid-list-tile.small {
    min-height: 110px;
    margin: 0 30px;
}

.grid-list-tile:hover {
    transform: translateY(-2px);
    background: #f7f8fa;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
}

.grid-list-tile img {
    margin-left: 10px;
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
    opacity: .95;
}

.grid-list-tile-title {
    margin: 2px 0 4px;
    font-size: 13px;
    font-weight: 800;
    color: #1557d6;
}

.grid-list-tile-content {
    margin: 0;
    font-size: 11.5px;
    line-height: 1.45;
    color: #4b5563;
}

@media (max-width: 880px) {
    .grid-list .grid-3-col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .grid-list .grid-3-col {
        grid-template-columns: 1fr;
    }

    .grid-list-col {
        grid-template-rows: auto;
    }
}

/* ===== TEXT BANNER ===== */
.banner-text {
    background: #fff;
    padding: 70px 0 40px;
    font-family: Inter, system-ui, -apple-system;
}

.title-content-style .grid-2-col {
    grid-template-columns: 1.35fr 1fr;
    gap: 46px;
    align-items: start;
}

.title-content-style h3 {
    margin: 0;
    font-weight: 800;
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: #111;
    max-width: 18ch;
    padding-left: 40px;
}

.title-content-style h3 .accent {
    font-weight: 600;
    color: #8f8f8f;
}

.title-content-style p {
    margin: 2px 0 0;
    font-size: 12px;
    line-height: 1.65;
    color: #1a1a1a;
    max-width: 54ch;
    padding-right: 40px;
}

@media (max-width: 880px) {
    .title-content-style .grid-2-col {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .title-content-style h3 {
        max-width: none;
        text-align: center;
    }

    .title-content-style p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .banner-text .cta {
        margin-top: 26px;
    }
}

@media (max-width: 720px) {
    .banner-text .title-content-style h3 {
        font-size: 20px;
        align-self: center;
    }

    .banner-text .title-content-style p {
        font-size: 12px;
    }
}

@media (max-width: 560px) {
    .banner-text .grid-2-col-slogan {
        grid-template-columns: 1fr;
    }

    .banner-text .title-content-style h3 {
        font-size: 18px;
        padding-left: 0;
    }

    .banner-text .title-content-style p {
        font-size: 10px;
        padding-right: 0;
    }
}

/* ===== TEXT FOCUS GRID ===== */
.text-focus {
    background: #fff;
    padding: 70px 0 40px;
    font-family: Inter, system-ui, -apple-system;
}

.text-focus-title {
    margin: 0 0 22px;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.01em;
    color: #111;
}

.text-focus-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
    gap: 32px 40px;
    align-items: start;
}

.text-focus .grid-col-text p {
    margin: 0 0 14px;
    font-size: 12px;
    line-height: 1.7;
    color: #1a1a1a;
    text-align: justify;
}

.grid-col-img-v {
    display: grid;
    gap: 30px;
    align-content: start;
}

.grid-col-img-v img {
    display: block;
    width: 100%;
    object-fit: cover;
}

/* RWD */
@media (max-width: 880px) {
    .text-focus-grid {
        grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
        gap: 26px;
    }
}

@media (max-width: 720px) {
    .text-focus-title {
        text-align: center;
    }

    .text-focus-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .grid-col-img-v {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

/* ===== COURSES ===== */
.courses-page-section {
    padding-bottom: 50px;
    ;
}

/* ===== PRODUCT ===== */
.product-info-section {
    background: #fff;
    padding: 100px 0 36px;
    font-family: Inter, system-ui, -apple-system;
}

.product-info h3 {
    margin: 0 0 24px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -.01em;
    font-weight: 900;
    font-size: 20px;
    color: #0545a1;
}

.product-details {
    margin: 0 auto 22px;
}

.product-details h4 {
    margin: 18px 0 30px;
    font-size: 15px;
    font-weight: 800;
}

.product-details p {
    margin: 0 0 60px;
    font-size: 13px;
    line-height: 1.65;
    color: #1a1a1a;
}

.product-bullet-points h4 {
    margin: 0 0 30px;
    font-size: 15px;
    font-weight: 800;
}

.product-bullet-points ul {
    margin: 0;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.3;
}

.product-split-row {
    display: grid;
    grid-template-columns: 1.2fr minmax(400px, .8fr);
    gap: 24px;
    align-items: stretch;
}

.product-images {
    height: 100%;
    min-width: 0;
}

.product-images--single {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    gap: 0;
}

.product-images--single img {
    height: 200px;
    width: auto;
    display: block;
}

.product-images--double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.product-img-crop {
    height: 100%;
    overflow: hidden;
}

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

@media (max-width:720px) {
    .product-split-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-images {
        justify-content: flex-start;
        gap: 14px;
    }

    .product-img-crop {
        flex: 0 1 clamp(160px, 42vw, 220px);
        border-radius: 12px;
    }

    .product-images--single img {
        height: 300px;
    }
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
    background: #fff;
    padding: 48px 0 12px;
    font-family: Inter, system-ui, -apple-system;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-container img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transform: translateZ(0) scale(1);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    cursor: zoom-in;
    will-change: transform;
}

.gallery-container img:hover {
    transform: scale(1.02);
}

.gallery-container img:focus-visible {
    outline: 2px solid #111;
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .gallery-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(2px);
    z-index: 1000;
}

.lightbox.is-open {
    display: grid;
}

.lightbox__img {
    max-width: min(92vw, 1400px);
    max-height: 86vh;
}

.lightbox__close {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .95);
    color: #111;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .02em;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
    cursor: pointer;
}

.lightbox__close:hover {
    transform: translateX(-50%) translateY(-1px);
}

.lightbox__close:active {
    transform: translateX(-50%) translateY(0);
}

/* ===== MVP ===== */
.whatismsmvp {
    margin-top: 70px;
    font-family: Inter, system-ui, -apple-system;
}

.whatismsmvp h2 {
    font-size: 25px;
}

.whatismsmvp p {
    font-size: 12px;
}

@media (max-width:880px) {
    .whatismsmvp .grid-2-col {
        gap: 24px 36px;
        align-items: center;
    }

    .whatismsmvp h2 {
        font-size: 23px;
    }

    .whatismsmvp p {
        font-size: 12px;
        line-height: 1.65;
    }

    .whatismsmvp .grid-2-col-img img {
        display: block;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width:720px) {
    .whatismsmvp .grid-2-col {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .whatismsmvp .grid-2-col-img {
        order: -1;
    }

    .whatismsmvp .grid-2-col-img img {
        width: clamp(240px, 60%, 360px);
    }

    .whatismsmvp h2 {
        font-size: 22px;
    }
}

@media (max-width:560px) {
    .whatismsmvp h2 {
        font-size: 20px;
    }

    .whatismsmvp p {
        font-size: 11.5px;
    }

    .whatismsmvp .img-row {
        gap: 20px;
    }

    .whatismsmvp .img-row img {
        height: 70px;
    }
}

@media (max-width:400px) {
    .whatismsmvp h2 {
        font-size: 18px;
    }

    .whatismsmvp p {
        font-size: 11px;
    }

    .whatismsmvp .grid-2-col-img img {
        width: 78%;
    }
}

/* ===== BULLET POINTS ===== */
.bulletpts {
    margin-bottom: 50px;
    margin-top: 50px;
}

@media (max-width:880px) {
    .bulletpts .grid-2-col {
        gap: 28px 10px;
        align-items: center;
    }

    .bulletpts .grid-2-col-img img {
        max-width: 520px;
        margin: 0 auto;
        display: block;
    }

    .bulletpts .grid-list-tile.small .grid-list-tile-title {
        font-size: 16px;
    }

    .bulletpts .grid-list-tile.small .grid-list-tile-content {
        font-size: 12px;
        line-height: 1.6;
    }
}

@media (max-width:720px) {
    .bulletpts .grid-2-col {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bulletpts .grid-2-col-img img {
        width: clamp(240px, 70%, 420px);
        border-radius: 22px;
    }

    .bulletpts .grid-list-col {
        max-width: 720px;
        margin: 0 auto;
    }
}

@media (max-width:560px) {
    .bulletpts {
        margin: 36px 0;
    }

    .bulletpts .grid-list-tile.small .grid-list-tile-title {
        font-size: 15px;
    }

    .bulletpts .grid-list-tile.small .grid-list-tile-content {
        font-size: 11.5px;
    }
}

@media (max-width:400px) {
    .bulletpts .grid-2-col {
        gap: 16px;
    }

    .bulletpts .grid-list-tile.small .grid-list-tile-title {
        font-size: 14px;
    }

    .bulletpts .grid-list-tile.small .grid-list-tile-content {
        font-size: 11px;
    }
}

/* ===== Rules ===== */
.rules {
    background: linear-gradient(180deg, #fafafa 0%, #fafafa 90%);
    color: #111;
    padding: 20px 0 80px;
    max-width: 900px;
    margin: 50px auto;
    padding: 24px 24px;
    background: #f6f6f6;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.rules .rules-normal {
    margin: 0 0 14px;
    line-height: 1.85;
    font-size: clamp(15px, 1.6vw, 17px);
    color: #1c1c1c;
    text-wrap: pretty;
    hyphens: auto;
}

.rules .rules-normal b {
    font-weight: 700;
    color: #1c1c1c;
}

.rules a {
    color: #6175a3;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .15s ease, text-decoration-color .15s ease;
}

.rules a:hover {
    color: #2c447a;
    text-decoration-color: #2c447a;
}

.rules a[href^="mailto"], .rules a[href^="tel"] {
    font-weight: 600;
}

.rules h1, .rules h2, .rules h3 {
    margin: 22px 0 10px;
    line-height: 1.3;
    letter-spacing: .02em;
    color: #2c2c2c;
    font-family: "Montserrat", "Open Sans", system-ui, -apple-system, sans-serif;
}

.rules h1 {
    font-size: clamp(22px, 3.4vw, 30px);
}

.rules h2 {
    font-size: clamp(18px, 2.6vw, 24px);
}

.rules h3 {
    font-size: clamp(16px, 2.2vw, 20px);
}

.rules .container>div {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    padding: clamp(16px, 3.5vw, 28px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.rules .rules-normal+.rules-normal {
    margin-top: 6px;
}

@media print {
    .rules {
        background: #fff;
        color: #111827;
    }

    .rules .rules-normal {
        color: #111827;
    }

    .rules .container>div {
        background: #fff;
        border: 1px solid #ddd;
        box-shadow: none;
    }

    .rules a {
        color: #0645ad;
        text-decoration: underline;
    }
}

/* ===== Under Construction ===== */
.under-construction {
    background: linear-gradient(180deg, #fff 0%, #fff 90%);
    padding: 50px 0 100px;
    text-align: center;
    color: #111;
}

e .under-construction .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 36px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.under-construction__title {
    font-family: Roboto Mono, Garet, sans-serif;
    font-size: clamp(26px, 4vw, 40px);
    margin: 0 0 24px;
    font-weight: 700;
    letter-spacing: -.02em;
    color: #0b0d12;
}

.under-construction__text {
    font-size: 16px;
    line-height: 1.6;
    color: #222;
    margin: 0 0 50px;
}