@font-face {
    font-family: 'Druk LCG';
    src: url('/fonts/DrukLCG-Bold.woff2') format('woff2'),
        url('/fonts/DrukLCG-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Druk Wide LCG';
    src: url('/fonts/DrukWideLCG-Bold.woff2') format('woff2'),
        url('/fonts/DrukWideLCG-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Druk Wide LCG Super';
    src: url('/fonts/DrukWideLCG-Super.woff2') format('woff2'),
        url('/fonts/DrukWideLCG-Super.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Druk Wide Bold';
    src: url('/fonts/DrukTextWideLCG-Bold.woff2') format('woff2'),
        url('/fonts/DrukTextWideLCG-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Druk Text Wide LCG';
    src: url('/fonts/DrukTextWideLCG-Heavy.woff2') format('woff2'),
        url('/fonts/DrukTextWideLCG-Heavy.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Druk Cond LCG Super';
    src: url('/fonts/DrukCondLCG-Super.woff2') format('woff2'),
        url('/fonts/DrukCondLCG-Super.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Druk Text LCG Super';
    src: url('/fonts/DrukTextLCG-Super.woff2') format('woff2'),
        url('/fonts/DrukTextLCG-Super.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Biro Script';
    src: url('/fonts/BiroScriptreduced.woff2') format('woff2'),
        url('/fonts/BiroScriptreduced.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-secondary: rgb(246, 244, 229);
    --color-primary: rgb(0, 0, 0);
    --body-sm: 1.4rem;
    --body: clamp(1.5rem, 1vw, 2rem);
    --body-lg: clamp(1.5rem, 1.25vw, 2rem);
}

html {
    font-size: 57.5%;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

.desktop-only {
    @media (max-width: 991px) {
        display: none;
    }
}

.mobile-only {
    display: none;

    @media (max-width: 991px) {
        display: block;
    }
}

.arrow {
    position: fixed;
    top: 50%;
    z-index: 999999;
    font-weight:400;
    font-family: 'Druk LCG';
    color:rgba(246, 244, 229, 1);
    font-size:4rem;
    text-transform:capitalize;
    transform: translateY(-50%);
    animation-name: animationbounce;
    animation-duration: 0.5s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-fill-mode: none;
}

.arrow-left {
    left: 5px;
}

.arrow-right {
    right: 5px;
}

.navigation {
    opacity: 0;
}

@keyframes animationbounce {
    0% {
        margin-top: 0;
        animation-timing-function: ease-in-out;
    }
    100% {
        margin-top: 17.5px;
    }
}

.noise {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('/uploads/noise.gif');
  background-repeat: repeat;
  background-size: auto;
  opacity: 0.06;
  pointer-events: none;
  z-index: 9999;
}

section[id] {
    scroll-margin-top: 84px;
}

.card-section {
    width: 90%;
    margin: 0 auto;

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

.card-section .card {
    background-color: rgb(246, 244, 229);
    color: black;
}

.card-section .card-title {
    color: rgb(246, 244, 229);
    margin: 0 0 2.4rem;
    font-family: 'Druk Wide LCG', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: clamp(3rem, 3vw, 4.5rem);

    @media (max-width: 991px) {
        margin-left: 2.8rem;
        text-transform: none;
        font-size: 2rem;
    }
}

/* Full Width Card */
.fwc {
    padding: 6.4rem 0;

    @media (max-width: 991px) {
        padding-bottom: 6rem;
        width: calc(100% - 5.6rem);
        padding-inline: 2.8rem;

        .card-title {
            margin-left: 0;
        }
    }
}

.fwc__card {
    border-radius: 4.8rem;
    padding: 4rem 3rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;

    @media (max-width: 991px) {
        grid-template-columns: 1fr 33%;
        width: calc(100% - 5.6rem);
        grid-template-columns: 1fr 33%;
        padding: 2.8rem;
        gap: 0;
    }
}

.fwc__icons {
    display: flex;
    gap: 2.2rem;
    align-items: center;

    @media (max-width: 991px) {
        grid-column: 2;
        grid-row: 1 / 3;

        .fwc__icon:nth-child(2) {
            display: none;
        }
    }
}

.fwc__icon {
    width: 18rem;
    height: auto;
    display: block;

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

@media (max-width: 991px) {}

.fwc__headlineText {
    margin: 0;
    text-transform: uppercase;
    margin: 0 0 2.4rem;
    font-family: 'Druk Wide LCG', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: clamp(3rem, 3vw, 4.5rem);
    line-height: 1;
    white-space: pre-line;

    @media (max-width: 991px) {
        margin-bottom: 0;
        font-size: 2.4rem;
        font-family: 'Druk Text LCG Super';
    }
}

.fwc__body {
    padding-left: 7rem;

    @media (max-width: 991px) {
        padding-left: 0;
    }
}

.fwc__bodyText {
    margin: 1.6rem 0 0;
    font-size: var(--body);
    line-height: 1.4;
    max-width: 38ch;
    font-family: "obviously", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Three Column Card */

.tcc {
    padding: 6.4rem 0;

    @media (max-width: 991px) {
        padding: 0;
    }
}

.scroller {
    @media (max-width: 991px) {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6rem;
    }
}

.tcc__card {
    border-radius: 4.8rem;
    padding: 4rem 3.6rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 3rem;

    @media (max-width: 991px) {
        width: 240%;
        margin-top: 0;
        margin-left: 2.8rem;
        margin-right: 2.8rem;
        padding: 3rem 0;
    }
}

.tcc__col {
    padding: 0 2rem 0 0;
    display: flex;
    flex-direction: column;
    min-height: 34rem;
    padding-inline: 3rem;
    position: relative;


    @media (max-width: 991px) {
        display: grid;
        grid-template-columns: 1fr 33%;
        grid-template-rows: min-content;
        min-height: auto;
    }
}

.tcc__col:first-child {
    padding-right: 6rem;
}

.tcc__col:nth-child(2) {
    padding-inline: 6rem;
}

.tcc__col:last-child {
    padding-left: 6rem;
}

.tcc__col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 97.5%;
    background: url("/images/separator.png") center / cover no-repeat;
    pointer-events: none;
}

.tcc__colTitle {
    font-family: 'Druk LCG';
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 4.3rem;

    @media (max-width: 991px) {
        grid-column: 1;
        font-size: 2.4rem;
        font-family: 'Druk Text LCG Super';
        letter-spacing: 0;
        line-height: 1;
    }
}

.tcc__body {
    margin: 1.6rem 0 0;
    font-size: var(--body);
    line-height: 1.4;
    max-width: 38ch;
    font-family: "obviously", sans-serif;
    font-weight: 400;
    font-style: normal;

    @media (max-width: 991px) {
        grid-column: 1;
    }
}

.tcc__iconWrap {
    margin-top: auto;
    padding-top: 2.4rem;
    align-self: center;
    display: flex;
    justify-content: center;

    @media (max-width: 991px) {
        padding-top: 0;
        margin-top: 0;
    }
}

.tcc__icon {
    width: 20rem;
    height: auto;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .tcc__body {
        font-size: 1.6rem;
    }
}

/* Packages Section */

.pk {
    padding: 14rem 0 5rem;
    background-color: var(--color-secondary);
    color: var(--color-primary);

    @media (max-width: 991px) {
        padding: 9.2rem 0 2rem;
    }
}

.pk__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3rem;
    max-width: 90%;
    margin: 10rem auto;

    @media (max-width: 991px) {
        grid-template-columns: 1fr;
        padding-inline: 2.8rem;
        gap: 3rem;
        max-width: 100%;
        margin: 7rem auto;
    }
}

.pk__header {
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    @media (max-width: 991px) {
        padding-inline: 2.8rem;
    }

    h2 {
        margin: 0;
        text-transform: uppercase;
        font-family: 'Druk Cond LCG Super', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
        text-transform: uppercase;
        letter-spacing: -0.01em;
        font-size: clamp(15rem, 10vw, 18rem);
        line-height: 1;

        @media (max-width: 991px) {
            text-align: left;
            line-height: 0.82;
            letter-spacing: 0.01em;
        }
    }

    .pk__subtitle {
        font-family: 'Druk Wide LCG', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
        font-weight: bold;
        font-size: clamp(2.75rem, 1.85vw, 3.4rem);
        letter-spacing: 0;

        @media (max-width: 991px) {
            font-size: 2.2rem;
            text-align: left;
        }
    }
}

.pk__line {
    width: 39vw;
    margin-top: -4rem;
    margin-bottom: -3rem;

    @media (max-width: 991px) {
        width: 80vw;
        margin-top: -2rem;
        margin-bottom: -3rem;
        margin-left: -5rem;
    }
}

.pk__toggleRow {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;

    span {
        font-size: var(--body);
        line-height: 1.4;
        max-width: 38ch;
        font-family: "obviously", sans-serif;
        font-weight: 700;
    }

    @media (max-width: 991px) {
        margin-top: 5rem;
    }
}

.pk__toggleLabel {
  transition: opacity 0.2s ease;
}

.pk__toggleLabel--dim {
  opacity: 0.5;
}

.pk__discountInfo {
    margin-top: 3rem;
    font-size: var(--body);
    line-height: 1.4;
    max-width: 50ch;
    font-family: "obviously", sans-serif;
    font-weight: 400;
    font-style: normal;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .25s ease, transform .25s ease;

    @media (max-width: 500px) {
        text-align: left;
    }
}

.pk[data-mode="discount"] .pk__discountInfo {
    opacity: 0.5;
    transform: translateY(0);
}


.pk__card {
    position: relative;
    height: fit-content;
    border-radius: 4rem;
    padding: 11rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    overflow: hidden;
    box-shadow: 0px 20px 25px -5px hsla(0, 0%, 0%, 0.2);
}

.pk__card:hover {
    outline: 2px solid var(--color-primary);
    outline-offset: 5px;
}

.pk__card>* {
    position: relative;
    z-index: 2;
}

.pk__discountBadge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;

    background: rgb(190, 228, 56);
    color: #000;

    font-size: 1.25rem;
    font-family: obviously, sans-serif;
    font-weight: 900;
    text-transform: uppercase;

    padding: 5px 12px;
    border-radius: 999px;

    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .25s ease, transform .25s ease;
}

.pk[data-mode="discount"] .pk__discountBadge {
    opacity: 1;
    transform: translateY(0);
}

.pk__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 21rem;
    overflow: hidden;
    border-radius: 0 !important;
}

.pk__media::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0) 50%);
    z-index: 1;
}

.pk__img {
    width: 100%;
    height: auto;
    display: block;
}

.pk__col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 3rem;
}

.pk__icon {
    width: min(18rem, 100%);
    height: auto;
    display: block;
}

.pk__name,
.pk__desc {
    margin: 0;
}

.pk__name {
    font-size: 2.75rem;
    font-family: 'Druk Wide Bold';
    margin-top: 12rem;
}

.pk__desc,
.pk__requirements {
    font-size: var(--body);
    line-height: 1.4;
    max-width: 38ch;
    font-family: "obviously", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.pk__requirements {
    font-size: var(--body);
}

.pk__price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-block: 1rem 3rem;
}

.pk__priceNow {
    font-family: 'Druk LCG';
    font-size: 6.5rem;
    letter-spacing: 0.02em;
}

.pk__priceWas {
    font-size: 3rem;
    opacity: 0.5;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    font-family: 'Druk LCG';
    display: none;
}

.pk__cta {
    background-color: rgb(0, 0, 0);
    border-radius: 999px;
    border: 2px solid var(--color-secondary);
    padding-block: 1.3rem 1.8rem;
    margin: 0 auto;
    width: 90%;
    appearance: none;
    font-family: obviously, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    font-style: normal;
    color: rgb(246, 244, 229);
    letter-spacing: 0px;
    line-height: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pk__cta:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

.pk__block:not(:first-child) {
    padding-top: 2rem;
    border-top: 1px solid #4c4c4c;

    .pk__blockTitle {
        margin-top: 0;
    }
}

.pk__blockTitle {
    color: rgba(135, 135, 135, 1);
    font-size: 1.5rem;
    margin-top: 2rem;
}

.pk__block ul {
    list-style: none;
    padding: 0;
    margin: 1.6rem 0 0;
    gap: 1.75rem;
    display: flex;
    flex-direction: column;

    li {
        display: flex;
        align-items: center;
        gap: 1rem;

        span {
            font-family: obviously, sans-serif;
            font-size: 1.5rem;
        }
    }
}

.pk__writing {
    margin-top: 1rem;
    border-top: 1px solid #4c4c4c;
    padding-bottom: 1rem;
}

.pk__stepper {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
}

.pk__stepperBtn {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    border: 2px solid var(--color-secondary);
    background: transparent;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: var(--color-secondary);
    transition: all 0.2s ease;
}

.pk__stepperBtn:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

.pk__stepperValue {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-left: 1.5rem;
}

.pk__writingDays {
    font-family: obviously, sans-serif;
    font-size: 1.5rem;
}

.pk__writingUnit {
    font-family: obviously, sans-serif;
    font-size: 1.5rem;
}

.pk__badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-family: obviously, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    background-color: var(--color-primary);
    padding: 7px 15px 8px;
    border-radius: 999px;
}

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

/* Upgrade Section */
.up {
    padding: 90px 0;

    @media (max-width: 991px) {
        padding-inline: 2.8rem;
    }
}

.up__title {
    margin: 0 auto 34px;
    color: var(--color-secondary);
    max-width: 120rem;
    text-align: center;
    font-weight: 900;
    line-height: 1.05;
    font-family: 'Druk Wide Bold';
    font-size: 4rem;
    letter-spacing: -0.05em;

    @media (max-width: 991px) {
        font-size: 2.2rem;
        text-align: left;
        line-height: normal;
    }
}

.up__arrow {
    display: block;
    transform: rotate(-22deg);
    margin-left: 48%;
    height: 15rem;
    margin-block: 5rem;
}

.up__card {
    position: relative;
    border-radius: 36px;
    max-width: 130rem;
    margin: 5rem auto 0;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    border: 1px dashed rgba(255, 255, 255, 0.55);
    display: grid;
    grid-template-columns: 1.75fr 1fr 1fr 1fr;
    gap: 22px;
    overflow: hidden;
    align-items: stretch;
}

.up__media {
    position: relative;
    overflow: hidden;
    min-height: 34rem;
}

.up__media::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0) 660%);
    z-index: 1;
}

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

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

.up__main {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.up__badge {
    align-self: flex-start;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.35);
    opacity: 0.9;
}

.up__name {
    margin: 0;
    font-size: 2.75rem;
    font-family: 'Druk Wide Bold';
}

.up__desc {
    font-family: obviously, sans-serif;
    font-size: var(--body-sm);
}

.up__price {
    margin-top: auto;
    font-family: 'Druk Text LCG Super';
    font-size: 4rem;
    letter-spacing: 0.02em;
}

.up__cta {
    background-color: rgb(0, 0, 0);
    border-radius: 999px;
    border: 2px solid var(--color-secondary);
    padding-block: 1.3rem 1.8rem;
    margin: 1rem auto 0;
    width: 100%;
    appearance: none;
    font-family: obviously, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    font-style: normal;
    color: rgb(246, 244, 229);
    letter-spacing: 0px;
    line-height: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.up__cta:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

.up__block {
    margin-bottom: 3rem;
}

.up__blockTitle {
    color: rgba(135, 135, 135, 1);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.up__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.up__item {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
}

.up__icon {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
    opacity: 0.95;
}

.up__text {
    font-size: var(--body-sm);
    line-height: 1.35;
    opacity: 0.92;
}

.up__req {
    margin: 0;
    font-size: var(--body-sm);
    line-height: 1.35;
    opacity: 0.92;
}

.up__empty {
    margin: 0;
    opacity: 0.45;
}

.up__features,
.up__side {
    position: relative;
    padding: 2rem;
}

.up__features::before,
.up__side::before {
    content: "";
    position: absolute;
    left: -11px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: rgba(255, 255, 255, 0.14);
}

.up__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    .pk__cta {
        width: fit-content;
        padding-inline: 2rem;
        text-decoration: none;
    }
}

.up__footertext {
    font-size: 2rem;
    max-width: 30ch;
    margin: 8rem auto;
    width: 100%;
    font-family: 'Druk Wide Bold';
    letter-spacing: -0.04em;
    color: var(--color-secondary);

    @media (max-width: 991px) {
        font-size: 2.2rem;
        text-align: left;
        line-height: normal;
        margin-block: 6rem 1rem;
    }
}

@media (max-width: 991px) {
    .up__card {
        grid-template-columns: 1fr;
        padding: 18px;
        border-radius: 28px;
    }

    .up__features::before,
    .up__side::before {
        display: none;
    }

    .up__media {
        min-height: 220px;
    }

    .up__price {
        font-size: 28px;
    }
}

/* SERVICES SECTION */

.srv {
    padding: 90px 0;
    background-color: var(--color-secondary);
    color: var(--color-primary);

    @media (max-width: 991px) {
        padding-inline: 2.8rem;
    }
}

.srv__header {
    text-align: center;
    margin-bottom: 7rem;
}

.srv__title {
    margin: 0;
    font-family: 'Druk Cond LCG Super', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    text-transform: uppercase;
    font-size: clamp(15rem, 10vw, 18rem);
    line-height: 1;

    @media (max-width: 991px) {
        text-align: left;
        line-height: 0.82;
        letter-spacing: 0.01em;
    }
}

.srv__subtitle {
    font-family: 'Druk Wide LCG', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-weight: bold;
    font-size: clamp(2.75rem, 1.85vw, 3.4rem);
    letter-spacing: 0;
    max-width: 25ch;
    margin: 2rem auto;

    @media (max-width: 991px) {
        font-size: 2.2rem;
        text-align: left;
        line-height: normal;
        margin-block: 1rem;
    }
}

.srv__card {
    max-width: 90%;
    background: var(--color-secondary);
    padding: 46px 46px 20px;

    @media (max-width: 991px) {
        padding: 0;
        margin-top: 6rem;
    }
}

.srv__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.srv__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3.8rem 0;
    position: relative;

    @media (max-width: 991px) {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.srv__row::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 2.5%;
    width: 95%;
    height: 2px;
    background: url("/images/service-line-horizontal.webp") center / cover no-repeat;
    pointer-events: none;
}

.srv__row:first-child::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2.5%;
    width: 95%;
    height: 2px;
    background: url("/images/service-line-horizontal.webp") center / cover no-repeat;
    pointer-events: none;
}

.srv__left {
    padding-left: 5rem;

    @media (max-width: 991px) {
        padding-left: 0;
    }
}

.srv__right {
    padding-right: 5rem;

    @media (max-width: 991px) {
        padding-right: 0;
    }
}

.srv__name {
    font-family: 'Druk LCG';
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 4.3rem;

    @media (max-width: 991px) {
        grid-column: 1;
        font-size: 2.4rem;
        font-family: 'Druk Text LCG Super';
        letter-spacing: 0;
        line-height: 1;
    }
}

.srv__price {
    font-family: 'Druk Wide Bold';
    margin-top: 7px;
    font-size: 1.8rem;

    @media (max-width: 991px) {
        margin-top: 1rem;
    }
}

.srv__desc {
    margin: 0;
    font-size: var(--body-lg);
    line-height: 1.4;
    font-family: "obviously", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Separator: por defecto línea; si pasas imagen, la usamos 
.srv__sep {
    grid-column: 1 / -1;
    height: 1px;
    margin-top: 34px;
    background: rgba(0, 0, 0, 0.35);
}

.srv__card[style*="--srv-sep"] .srv__sep {
    height: 14px;
    background: none;
    background-image: var(--srv-sep);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    opacity: 0.7;
}*/

.srv__sep {
    display: none;
}

/* PLATOFRM */

.plt {
    padding: 12rem 0 5rem;
    color: var(--color-secondary);

    @media (max-width: 991px) {
        padding-inline: 2.8rem;
    }
}

.plt__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 10rem;
}

.plt__title {
    font-family: 'Druk Cond LCG Super', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    text-transform: uppercase;
    font-size: clamp(15rem, 10vw, 18rem);
    line-height: 0.9;
    text-align: right;
    margin: 0;

    @media (max-width: 991px) {
        text-align: left;
        line-height: 0.82;
        letter-spacing: 0.01em;
    }
}

.plt__copy {
    max-width: 82ch;
}

.plt__p {
    margin: 0 0 2rem;
    font-size: var(--body-lg);
    line-height: 1.4;
    font-family: "obviously", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.plt__em {
    margin: 22px 0 0;
    font-size: 2.5rem;
    line-height: 1.25;
    font-weight: 900;

    @media (max-width: 991px) {
        font-size: var(--body-lg);
    }
}

.plt__videos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 90%;
    margin: 3rem auto 0;
    align-items: start;

    @media (max-width: 991px) {
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 5rem;
    }
}

.plt__videoLabel {
    text-align: center;
    font-family: 'Druk Wide LCG', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-weight: bold;
    font-size: clamp(2.75rem, 1.85vw, 3.4rem);
    letter-spacing: 0;
}

.plt__videoFrame {
    padding-top: 3rem;
    margin-top: 4rem;
    overflow: hidden;
    min-height: 49rem;

    @media (max-width: 991px) {
        border-radius: 3rem !important;
        min-height: 0;
        aspect-ratio: 1.6;
    }
}

.plt__videoCol:first-of-type {
    .plt__videoFrame {
        border-right: 1px dashed;
        padding-right: 3rem;
    }
}

.plt__videoCol:last-of-type {
    .plt__videoFrame {
        padding-left: 3rem;
    }
}

.plt__videoCol:first-of-type .plt__video {}

.plt__videoCol:last-of-type .plt__video {}

.plt__video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 5rem;
}

.plt__videoPlaceholder {
    padding: 24px;
    opacity: 0.7;
    font-size: 14px;
}

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

    .plt__videos {
        grid-template-columns: 1fr;
    }

    .plt__videoLabel {
        font-size: 26px;
    }
}

/* TESTIMONIALS */

.tst {
    position: relative;
    background: var(--color-secondary);
    overflow: hidden;
    color: var(--color-primary);
    margin: 90px 0 0;
}

.tst__inner {
    position: relative;
    min-height: 100dvh;
}

.tst__header {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    pointer-events: none;
    z-index: 1;
}

.tst__title {
    margin: 0;
    text-transform: uppercase;
    font-family: 'Druk Cond LCG Super', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    text-transform: uppercase;
    font-size: clamp(13rem, 10vw, 18rem);
    line-height: 0.85;
    max-width: 15ch;

    @media (max-width: 991px) {
        text-align: left;
        margin-left: 2.8rem;
    }
}

.tst__underline {
    margin-top: -1rem;
    margin-left: 16rem;
    width: min(43rem, 55vw);
    opacity: 1;
}

.tst__stage {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    z-index: 10;
}

.tst__card {
    position: absolute;
    width: min(66rem, 78vw);
    background-image: url(./images/testimonials-bg.jpg);
    border-radius: 2px;
    padding: 3rem;
    transform-origin: center;
    box-shadow: 0px 10px 10px -7px hsla(0, 0%, 0%, 0.2);

    @media (max-width: 991px) {
        padding: 1.5rem;
        width: 70vw;
    }
}

.tst__quote {
    margin: 0;
    font-size: 2rem;
    line-height: 1.5;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    letter-spacing: 0.01em;
    text-align: center;

    @media (max-width: 991px) {
        font-size: 1.2rem;
    }
}

.tst__sig {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: baseline;
}

.tst__author {
    font-family: 'Biro Script', cursive;
    font-size: 2.5rem;
}

@media (max-width: 980px) {
    .tst__inner {
        padding: 52px 18px;
        min-height: 100dvh;
    }

    .tst__stage {
        min-height: 100dvh;
    }
}

/* CONTACT */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ct {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ct__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    width: 100%;
    padding: 2.8rem;
    max-width: 80%;
    margin: 0 auto;

    @media (max-width: 991px) {
        width: calc(100% - 5.6rem);
        max-width: none;
    }
}

.ct__left {
    padding-left: 6vw;
    position: relative;

    @media (max-width: 991px) {
        padding-left: 0;
    }
}

.ct__right {
    padding-left: 7vw;

    @media (max-width: 991px) {
        padding-left: 0;
    }
}

.ct__left::after {
    position: absolute;
    top: 50%;
    right: 0;
    content: "OR";
    font-size: 4vw;
    transform: translate(50%, -50%);
    font-family: 'Druk LCG';
    font-weight: 900;
    text-transform: uppercase;

    @media (max-width: 991px) {
        display: none;
    }
}

.ct__title {
    margin: 0 0 18px;
    text-transform: uppercase;
    font-family: 'Druk Cond LCG Super', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    text-transform: uppercase;
    font-size: clamp(15rem, 10vw, 18rem);
    line-height: 0.9;
}

.ct__line {
    margin: 0 0 34px;
    font-size: var(--body-lg);
    line-height: 1.4;
    font-family: "obviously", sans-serif;
    font-weight: 400;
}

.ct__mail {
    text-decoration: none;
    font-size: var(--body-lg);
    line-height: 1.4;
    font-family: "obviously", sans-serif;
    font-weight: 900;
    color: inherit;
}

.ct__mail:hover {
    text-decoration: underline;
}

.ct__addrLabel {
    margin-bottom: 6px;
    font-size: var(--body-lg);
    line-height: 1.4;
    font-family: "obviously", sans-serif;
    font-weight: 900;
}

.ct__addrText {
    font-size: var(--body-lg);
    line-height: 1.4;
    font-family: "obviously", sans-serif;
    font-weight: 400;
}

.ct__form {
    display: grid;
    gap: 2rem;
    max-width: 50rem;
}

.ct__hp {
    display: none;
}

.ct__input,
.ct__textarea {
    width: calc(100% - 6rem);
    border: none;
    outline: none;
    border-radius: 5rem;
    background: var(--color-secondary);
    color: var(--color-primary);
    padding: 2.25rem 3rem 2.5rem;
    font-family: "obviously", sans-serif;
    font-size: var(--body-lg);
}

.ct__textarea {
    resize: none;
    min-height: 0;
}

.ct__input::placeholder,
.ct__textarea::placeholder {
    color: rgba(11, 11, 12, 0.55);
}

.ct__btn {
    height: 64px;
    border-radius: 999px;
    background: transparent;
    color: #efe8d6;
    border: 2px solid var(--color-secondary);
    font-family: 'Druk Wide LCG', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-weight: bold;
    font-size: clamp(2.5rem, 1.5vw, 3rem);
    letter-spacing: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ct__btn:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
}

@media (max-width: 980px) {
    .ct__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .ct__btn {
        font-size: 24px;
    }
}

/* NAV */

/* Prevent background scroll when menu open */
html.nav-open,
body.nav-open {
    overflow: hidden;
}

.nav {
    position: relative;
    z-index: 999;
}

.nav__logo {
    z-index: 9999;
    position: fixed;
    top: 7px;
    left: 7px;
    width: 4.3rem;
}

.nav__bar {
    position: fixed;
    z-index: 998;
    left: 0;
    right: 0;
    height: 4rem;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.nav__bar--top {
    top: 0;
}

.nav__bar--bottom {
    bottom: 0;
}

.nav__inner {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    pointer-events: auto;
}

.nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    background: var(--color-primary);
}

.nav__item {
    display: flex;
    justify-content: center;
}

.nav__link {
    display: block;
    text-align: center;
    text-transform: uppercase;
    padding: 12px 12px;
    width: fit-content;
    font-family: 'Druk Wide Bold';
    font-size: 1.35rem;
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Mobile */
.nav__bar-mobile {
    position: fixed;
    inset: 0;
    z-index: 9;
    width: 100%;
    height: 6.5rem;
    background-color: var(--color-primary);
    display: none;

    @media (max-width: 991px) {
        display: block;
    }
}

.nav__hamburger {
    position: absolute;
    top: 7px;
    right: 1.5rem;
    width: 52px;
    height: 52px;
    /* backdrop-filter: blur(10px); */
    color: var(--color-secondary);
    background: transparent;
    border: 0;
    display: none;
    cursor: pointer;
    z-index: 20;
}

.nav__burgerLines {
    display: block;
    width: 3rem;
    height: 3px;
    background: var(--color-secondary);
    margin: 0 auto;
    position: relative;
    border-radius: 5px;
}

.nav__burgerLines::before,
.nav__burgerLines::after {
    content: "";
    position: absolute;
    left: 0;
    width: 3rem;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 5px;
}

.nav__burgerLines::before {
    top: -7px;
}

.nav__burgerLines::after {
    top: 7px;
}

.nav__panel {
    position: fixed;
    inset: 0;
    z-index: 1000;
}

.nav__panelInner {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    border-radius: 0;
    padding: 0;
    background: rgb(0 0 0 / 50%);
    border: 0;
    backdrop-filter: blur(12px);
}

.nav__close {
    appearance: none;
    border: none;
    background: transparent;
    color: var(--color-secondary);
    font-size: 4rem;
    line-height: 1;
    cursor: pointer;
    display: block;
    margin-left: auto;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
    z-index: 999;
}

.nav__panelList {
    list-style: none;
    margin: 6rem 0 0;
    padding: 0;
    display: grid;
    padding-bottom: 2rem;
}

.nav__panelLink {
    display: block;
    padding: 1rem;
    border-radius: 0;
    color: var(--color-secondary);
    font-family: 'Druk Wide Bold';
    font-size: 2rem;
    text-decoration: none;
    font-weight: 800;
    text-align: center;
    background: none;
    border: 0;
    text-transform: uppercase;
}

.nav__backdrop {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 0%);
}

/* Breakpoint */
@media (max-width: 991px) {
    .nav__bar {
        display: none;
    }

    .nav__hamburger {
        display: grid;
        place-items: center;
    }
}

/* WHAT'S NEW */

.wn {
    position: relative;
    padding: 7vw 0;
    overflow: hidden;
    /* ← Cambiado de visible a hidden */
}

.wn__inner {
    display: grid;
    gap: 1vw;
}

.wn__row {
    width: 100%;
    overflow: hidden;
    /* ← CRÍTICO: Cambiado de visible a hidden */
}

.wn__track {
    display: flex;
    gap: 1vw;
    padding: 0 1vw;
    will-change: transform;
    width: max-content;
    /* ← AGREGADO: permite que se extienda */
}

.wn__card {
    flex: 0 0 auto;
    width: 23.7vw;
    aspect-ratio: 16 / 9;
    border-radius: 5rem;
    overflow: hidden;
    background: #000;
    margin: 0;
}

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

/* Centro */
.wn__center {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
    z-index: 5;
}

.wn__centerMedia {
    width: min(46rem, 70vw);
    aspect-ratio: 16 / 9;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
    position: relative;
    background: #111;
    opacity: 0;
}

.wn__centerOverlay {
    position: absolute;
    width: min(46rem, 70vw);
    aspect-ratio: 16 / 9;
    border-radius: 26px;
    background: #000;
    opacity: 0;
}

.wn__centerTitle {
    position: absolute;
    width: min(46rem, 70vw);
    aspect-ratio: 16 / 9;
    display: grid;
    align-content: center;
    justify-items: flex-start;
    text-align: left;
    gap: 10px;
    opacity: 0;
    color: var(--color-secondary);
    font-family: 'Druk Cond LCG Super', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 12rem;
    margin-left: 5rem;
    text-align: left;
    line-height: 0.75;
    padding: 0;
}

@media (max-width: 991px) {
    .wn {
        padding: 0;
        height: 100dvh;
    }

    .wn__row,
    .wn__centerMedia,
    .wn__centerOverlay {
        display: none !important;
    }

    .wn__inner {
        gap: 0;
        min-height: 100dvh;
        display: flex;
        padding-left: 2.8rem;
        align-items: flex-start;
        padding-top: 7vh;
        position: relative;
        overflow: hidden;
    }

    .wn__inner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, var(--color-primary) 0%, transparent 100%);
        z-index: 1;
    }

    .wn__bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
    }

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

    .wn__center {
        position: relative;
        inset: auto;
        place-items: center;
        z-index: 2;
    }

    .wn__centerTitle {
        position: relative;
        width: auto;
        aspect-ratio: auto;
        opacity: 1 !important;
        transform: none !important;
        font-size: 30vw;
        padding: 0;
        margin-left: 0;
        line-height: 0.82;
    }
}

/* MODAL */

.pkModal[hidden] {
    display: none;
}

.pkModal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
}

.pkModal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(10px);
}

.pkModal__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(720px, calc(100vw - 32px));
    margin: auto;
    background: var(--color-secondary);
    border-radius: 3rem;
    padding: 5rem;

    form {
        max-width: 50rem;
    }
}

.pkModal__title {
    font-family: 'Druk Wide LCG', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-weight: bold;
    font-size: clamp(2.8rem, 1.8vw, 3.75rem);
    letter-spacing: 0;
    text-align: center; 
    margin-block: 1rem;
    max-width: 90%;
}

.pkModal__subtitle {
    margin-bottom: 3rem;
    font-size: var(--body);
    line-height: 1.4;
    max-width: 38ch;
    font-family: "obviously", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.pkModal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 6rem;
    height: 6rem;
    border: 0;
    background: transparent;
    font-size: 6rem;
    line-height: 1;
    cursor: pointer;
}

.pkModal__input {
    width: calc(100% - 6rem);
    border: 3px solid var(--color-primary);
    border-radius: 999px;
    padding: 3rem;
    font-size: 2rem;
    margin-top: 2rem;
    background: transparent;
    font-family: "obviously", sans-serif;
    font-size: var(--body-lg);
}

.pkModal__textarea {
    min-height: 0;
    resize: vertical;
    font-family: "obviously", sans-serif;
    font-size: var(--body-lg);
}

.pkModal__input:focus-visible,
.pkModal__textarea:focus-visible {
    outline: none;
}

.pkModal__submit {
    width: 100%;
    margin-top: 22px;
    border-radius: 999px;
    padding: 16px 20px;
    border: 3px solid var(--color-primary);
    background: var(--color-primary);
    color: var(--color-secondary);
    font-family: "Druk Wide LCG", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-weight: bold;
    font-size: clamp(2.8rem, 1.9vw, 3.8rem);
    letter-spacing: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pkModal__submit:hover {
    background: transparent;
    color: var(--color-primary);
}