/*
|--------------------------------------------------------------------------
| Home V2 - Cost + Licence Flow
|--------------------------------------------------------------------------
*/

.home-v2-license {
    position: relative;
    overflow: visible;
    padding-top: 105px;
    padding-bottom: 0;
    background:
        radial-gradient(
            circle at 84% 13%,
            rgba(79, 146, 152, 0.08),
            transparent 27%
        ),
        linear-gradient(
            180deg,
            #fffdfb 0%,
            #f8f4ef 54%,
            #f5f0e9 100%
        );
}

.home-v2-license-heading {
    margin-bottom: 48px;
}

.home-v2-license-panel-label {
    display: block;
    margin-bottom: 14px;
    color: var(--home-accent);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .14em;
}


/* ========================================================================
   CALCULATOR
======================================================================== */

.home-v2-license-calculator {
    display: grid;
    grid-template-columns:
        330px
        255px
        minmax(0, 1fr);
    width: min(1320px, 100%);
    min-height: 500px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(214, 202, 191, .75);
    border-radius: 22px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 48px rgba(52, 61, 67, .075);
}


/* ------------------------------------------------------------------------
   Categories
------------------------------------------------------------------------ */

.home-v2-license-categories {
    padding: 20px 17px;
    color: var(--home-text);
    background:
        linear-gradient(
            150deg,
            #eef3f2 0%,
            #e8efee 55%,
            #f2f3ef 100%
        );
}

.home-v2-license-categories
.home-v2-license-panel-label {
    margin-bottom: 10px;
    color: var(--home-accent);
}

.home-v2-license-category-list {
    display: grid;
    gap: 5px;
    max-height: none;
    padding-right: 0;
    overflow: visible;
}

.home-v2-license-category {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    padding: 0 16px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(184, 197, 195, .52);
    border-radius: 12px;
    color: #403a36;
    background: #f8f7f4;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        background-color .25s ease;
}

.home-v2-license-category::before {
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    width: 72%;
    content: "";
    background:
        linear-gradient(
            90deg,
            #f8f7f4 0%,
            rgba(248, 247, 244, .98) 42%,
            rgba(248, 247, 244, .72) 62%,
            rgba(248, 247, 244, .22) 82%,
            transparent 100%
        );
    pointer-events: none;
}

.home-v2-license-category-text {
    position: relative;
    z-index: 3;
    display: block;
    width: 58%;
    min-width: 0;
    line-height: 1.08;
}

.home-v2-license-category-image {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    width: 62%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .55;
    transform: scale(1.04);
    transition:
        opacity .3s ease,
        transform .5s cubic-bezier(.22, 1, .36, 1);
    -webkit-mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(0, 0, 0, .18) 10%,
            rgba(0, 0, 0, .62) 27%,
            #000 44%,
            #000 100%
        );
    mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(0, 0, 0, .18) 10%,
            rgba(0, 0, 0, .62) 27%,
            #000 44%,
            #000 100%
        );
    pointer-events: none;
}

.home-v2-license-category:hover {
    transform: translateX(3px);
    border-color: rgba(79, 146, 152, .30);
    box-shadow: 0 7px 17px rgba(54, 76, 78, .07);
}

.home-v2-license-category:hover
.home-v2-license-category-image {
    opacity: .72;
    transform: scale(1.09);
}

.home-v2-license-category.is-active {
    border-color: rgba(79, 146, 152, .42);
    color: #284e52;
    background: #edf5f4;
    box-shadow: 0 8px 20px rgba(62, 103, 108, .10);
}

.home-v2-license-category.is-active::before {
    background:
        linear-gradient(
            90deg,
            rgba(227, 240, 239, 1) 0%,
            rgba(227, 240, 239, .96) 39%,
            rgba(227, 240, 239, .61) 60%,
            transparent 92%
        );
}

.home-v2-license-category.is-active
.home-v2-license-category-image {
    opacity: .78;
    transform: scale(1.08);
}

.home-v2-license-loading {
    color: #8b8179;
    font-size: 12px;
}


/* ------------------------------------------------------------------------
   Price
------------------------------------------------------------------------ */

.home-v2-license-price-card {
    position: relative;
    display: flex;
    min-height: 430px;
    flex-direction: column;
    justify-content: center;
    padding: 30px 27px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(207, 233, 230, .26),
            transparent 40%
        ),
        linear-gradient(
            155deg,
            #708e9e 0%,
            #617f8e 52%,
            #567581 100%
        );
}

.home-v2-license-price-card::after {
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 205px;
    height: 205px;
    border: 30px solid rgba(255, 255, 255, .035);
    border-radius: 50%;
    content: "";
}

.home-v2-license-price-category,
.home-v2-license-price-prefix,
.home-v2-license-price,
.home-v2-license-price-period,
.home-v2-license-price-card p {
    position: relative;
    z-index: 2;
}

.home-v2-license-price-category {
    color: #d8eeee;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .15em;
}

.home-v2-license-price-prefix {
    margin-top: 40px;
    color: rgba(255, 255, 255, .72);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 700;
}

.home-v2-license-price {
    margin-top: 2px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(57px, 4vw, 70px);
    line-height: .96;
    letter-spacing: -.05em;
}

.home-v2-license-price-period {
    margin-top: 6px;
    color: rgba(255, 255, 255, .64);
    font-size: 12px;
    font-weight: 700;
}

.home-v2-license-price-card p {
    max-width: 195px;
    margin: 40px 0 0;
    color: rgba(255, 255, 255, .83);
    font-size: 12px;
    line-height: 1.5;
}


/* ------------------------------------------------------------------------
   Business picker
------------------------------------------------------------------------ */

.home-v2-license-picker {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 25px 26px 21px;
    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(79, 146, 152, .07),
            transparent 26%
        ),
        #fff;
}

.home-v2-license-picker-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.home-v2-license-picker-head h3 {
    margin: 0;
    color: var(--home-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: -.03em;
}

.home-v2-license-business-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    max-height: none;
    margin-top: 17px;
    padding-right: 0;
    overflow: visible;
}

.home-v2-license-business {
    display: flex;
    min-height: 37px;
    align-items: center;
    gap: 7px;
    padding: 5px 9px;
    border: 1px solid #e3e4e5;
    border-radius: 9px;
    color: #38312d;
    background: #fcfbfa;
    text-align: left;
    cursor: pointer;
    transition:
        transform .2s ease,
        border-color .2s ease,
        background-color .2s ease;
}

.home-v2-license-business > span {
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #c6d4d6;
}

.home-v2-license-business strong {
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
}

.home-v2-license-business:hover {
    transform: translateY(-2px);
    border-color: rgba(79, 146, 152, .34);
}

.home-v2-license-business.is-active {
    border-color: rgba(79, 146, 152, .54);
    background: var(--home-turquoise-soft);
}

.home-v2-license-business.is-active > span {
    background: var(--home-turquoise);
    box-shadow: 0 0 0 4px rgba(79, 146, 152, .10);
}


/* ------------------------------------------------------------------------
   Options
------------------------------------------------------------------------ */

.home-v2-license-options {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #eee5de;
}

.home-v2-license-options[hidden],
.home-v2-license-field[hidden] {
    display: none;
}

.home-v2-license-field {
    min-width: 0;
}

.home-v2-license-options
.home-v2-license-field:nth-child(1) {
    flex: 1.3 1 150px;
}

.home-v2-license-options
.home-v2-license-field:nth-child(2) {
    flex: .82 1 105px;
}

.home-v2-license-options
.home-v2-license-field:nth-child(3) {
    flex: .68 1 90px;
}

.home-v2-license-options
.home-v2-license-field:nth-child(4) {
    flex: 1 1 145px;
}

.home-v2-license-field label,
.home-v2-license-field-label {
    display: block;
    margin-bottom: 5px;
    color: #655b54;
    font-size: 11px;
    font-weight: 800;
}

.home-v2-license-field select {
    width: 100%;
    min-height: 34px;
    padding: 0 27px 0 10px;
    border: 1px solid #dfd5cd;
    border-radius: 8px;
    color: #3c342f;
    background: #fff;
    font: inherit;
    font-size: 13px;
}

.home-v2-license-toggle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding: 3px;
    border: 1px solid #dfd7d1;
    border-radius: 8px;
    background: #f6f2ee;
}

.home-v2-license-toggle button {
    min-height: 28px;
    padding: 0 7px;
    border: 0;
    border-radius: 6px;
    color: #71675f;
    background: transparent;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.home-v2-license-toggle button.is-active {
    color: #fff;
    background: var(--home-turquoise-dark);
    box-shadow: 0 4px 10px rgba(57, 119, 125, .15);
}

.home-v2-license-picker-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
    padding-top: 15px;
}

.home-v2-license-picker-footer p {
    max-width: 290px;
    margin: 0;
    color: #8a7f77;
    font-size: 12px;
    line-height: 1.5;
}

.home-v2-license-error {
    width: min(1280px, 100%);
    margin: 14px auto 0;
    color: #9d4d42;
    font-size: 12px;
    text-align: center;
}


/* ========================================================================
   LICENCE FLOW
======================================================================== */

.home-v2-license-flow-stage {
    --license-open-x: 0%;
    --license-cover-angle: 0deg;
    --license-paper-lift-y: 0%;
    --license-licence-fan-x: 0%;
    --license-licence-fan-rotate: 0deg;
    --license-invoice-fan-x: 0%;
    --license-invoice-fan-rotate: 0deg;
    --license-sticker-progress: 0;
    --license-sticker-x: 62%;
    --license-sticker-y: 18px;
    --license-sticker-rotate: 4deg;

    position: relative;
    height: auto;
    margin-top: 90px;
    padding: 20px 0 95px;
}

.home-v2-license-flow-sticky {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(610px, 1.12fr)
        minmax(430px, .88fr);
    align-items: start;
    gap: 64px;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
}

.home-v2-license-flow-copy {
    position: relative;
    z-index: 20;
    max-width: none;
    margin: 0;
    text-align: left;
}


/* ------------------------------------------------------------------------
   Intro
------------------------------------------------------------------------ */

.home-v2-license-flow-intro {
    margin-bottom: 38px;
}

.home-v2-license-flow-intro
.home-v2-eyebrow {
    margin-bottom: 14px;
}

.home-v2-license-flow-main-title {
    margin: 0;
    color: var(--home-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 3.7vw, 61px);
    line-height: .96;
    letter-spacing: -.045em;
}

.home-v2-license-title-line {
    display: block;
    white-space: nowrap;
}

.home-v2-license-title-accent {
    margin-top: 3px;
    color: var(--home-turquoise);
}

.home-v2-license-flow-brandline {
    max-width: 520px;
    margin: 20px 0 0;
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.7;
}

.home-v2-license-flow-brandline strong {
    color: var(--home-text);
    font-weight: 850;
}

.home-v2-license-brandline-logo {
    display: inline-block;

    width: auto;
    height: 34px;

    margin: 0 6px;

    vertical-align: middle;

    object-fit: contain;
}


/* ------------------------------------------------------------------------
   Steps
------------------------------------------------------------------------ */

.home-v2-license-flow-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 52px;
    row-gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-v2-license-flow-steps li {
    position: relative;
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    min-height: 82px;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: var(--home-text);
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
}

.home-v2-license-step-number {
    position: absolute;
    top: -10px;
    left: -23px;
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--home-accent);
    font-size: 10px;
    font-weight: 900;
    box-shadow: 0 5px 12px rgba(69, 104, 130, .18);
}

.home-v2-license-step-icon {
    display: flex;
    width: 43px;
    height: 43px;
    align-items: center;
    justify-content: center;
    color: #4f83ff;
}

.home-v2-license-step-icon svg {
    display: block;
    width: 37px;
    height: 37px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-v2-license-step-copy {
    display: block;
    padding-top: 1px;
}

.home-v2-license-step-copy strong {
    display: block;
    color: #3d342e;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.14;
}

.home-v2-license-step-copy small {
    display: block;
    max-width: 245px;
    margin-top: 7px;
    color: #81756d;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.5;
}

.home-v2-license-flow-cta {
    width: fit-content;
    margin-top: 32px;
}

.home-v2-license-flow-cta[aria-disabled="true"] {
    opacity: .48;
    cursor: not-allowed;
}


/* ------------------------------------------------------------------------
   Right column
------------------------------------------------------------------------ */

.home-v2-license-flow-media {
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 18px;
    min-width: 0;
}


/* ------------------------------------------------------------------------
   Folder
------------------------------------------------------------------------ */

.home-v2-license-folder-visual {
    position: relative;
    height: 470px;
    overflow: visible;
    perspective: 2100px;
}

.home-v2-license-ground-shadow {
    position: absolute;
    left: 50%;
    bottom: 8%;
    width: 82%;
    height: 10%;
    opacity: .75;
    background:
        radial-gradient(
            ellipse,
            rgba(18, 28, 40, .18),
            transparent 70%
        );
    filter: blur(20px);
    transform: translateX(-50%);
}

.home-v2-license-folder-world {
    --panel-width: min(24vw, 275px);
    --panel-height: min(34.62vw, 397px);

    position: absolute;
    top: 47%;
    left: 50%;
    width: calc(var(--panel-width) + var(--panel-width));
    height: var(--panel-height);
    transform: translate(-50%, -50%);
    transform-style: flat;
}

.home-v2-license-inside-position,
.home-v2-license-cover-position,
.home-v2-license-documents-position,
.home-v2-license-foreground-position,
.home-v2-license-sticker-position {
    position: absolute;
    top: 0;
    left: 50%;
    width: var(--panel-width);
    height: 100%;
    transform: translateX(calc(-50% + var(--license-open-x)));
    transition:
        transform
        1.05s
        cubic-bezier(.22, 1, .36, 1);
}

.home-v2-license-inside-position {
    z-index: 10;
}

.home-v2-license-documents-position {
    z-index: 20;
    pointer-events: none;
}

.home-v2-license-cover-position {
    z-index: 30;
    perspective: 2100px;
}

.home-v2-license-foreground-position {
    z-index: 25;
    pointer-events: none;
}

.home-v2-license-sticker-position {
    z-index: 70;
    pointer-events: none;
}

.home-v2-license-folder-world.papers-in-front
.home-v2-license-documents-position {
    z-index: 50;
}

.home-v2-license-folder-world.papers-in-front
.home-v2-license-foreground-position {
    z-index: 60;
}

.home-v2-license-inside-panel,
.home-v2-license-cover-side {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #fff;
}

.home-v2-license-scan-image {
    position: absolute;
    inset: -1px;
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border: 0;
    object-fit: fill;
}

.home-v2-license-cover-rotator {
    position: absolute;
    inset: 0;
    transform: rotateY(var(--license-cover-angle));
    transform-origin: left center;
    transform-style: preserve-3d;
    will-change: transform;
    transition:
        transform
        2s
        cubic-bezier(.22, 1, .36, 1);
}

.home-v2-license-cover-side {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.home-v2-license-cover-front {
    transform: rotateY(0deg);
}

.home-v2-license-cover-back {
    transform: rotateY(180deg);
    background:
        linear-gradient(
            90deg,
            #f2f3f5 0%,
            #fbfbfb 5%,
            #fff 15%,
            #fff 100%
        );
}

.home-v2-license-documents {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-v2-license-paper {
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 95%;
    width: auto;
    aspect-ratio: 210 / 297;
    overflow: hidden;
    border-radius: 1px;
    background: transparent;
    box-shadow: 0 12px 30px rgba(15, 26, 40, .20);
    transform-origin: 50% 100%;
    transition:
        transform
        .95s
        cubic-bezier(.22, 1, .36, 1);
}

.home-v2-license-paper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.home-v2-license-paper-licence {
    z-index: 4;
    transform:
        translateX(-50%)
        translateY(var(--license-paper-lift-y))
        translateX(var(--license-licence-fan-x))
        rotate(var(--license-licence-fan-rotate));
}

.home-v2-license-paper-invoice {
    z-index: 2;
    transform:
        translateX(-50%)
        translateY(var(--license-paper-lift-y))
        translateX(var(--license-invoice-fan-x))
        rotate(var(--license-invoice-fan-rotate))
        scale(.985);
}

.home-v2-license-pocket-foreground {
    position: absolute;
    inset: 0;
    overflow: hidden;
    clip-path:
        polygon(
            13.4% 75.5%,
            64% 75.5%,
            64% 56%,
            98% 0%,
            100% 0%,
            100% 100%,
            0 100%,
            0 94.3%
        );
}

.home-v2-license-real-sticker {
    position: absolute;
    left: 4%;
    bottom: 18%;
    width: 50%;
    aspect-ratio: 1637 / 1578;
    opacity: var(--license-sticker-progress);
    transform:
        translateX(-50%)
        translateX(var(--license-sticker-x))
        translateY(var(--license-sticker-y))
        rotate(var(--license-sticker-rotate));
    transform-origin: 50% 50%;
    filter: drop-shadow(0 12px 16px rgba(15, 26, 40, .18));
    transition:
        transform
        .8s
        cubic-bezier(.22, 1, .36, 1),
        opacity
        .45s
        ease;
}

.home-v2-license-real-sticker img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* ------------------------------------------------------------------------
   Folder animation states
------------------------------------------------------------------------ */

.home-v2-license-flow-stage.is-opening {
    --license-open-x: 50%;
    --license-cover-angle: -178deg;
}

.home-v2-license-flow-stage.is-papers {
    --license-paper-lift-y: -4.5%;
}

.home-v2-license-flow-stage.is-fanned {
    --license-licence-fan-x: -18%;
    --license-licence-fan-rotate: -4deg;
    --license-invoice-fan-x: -68%;
    --license-invoice-fan-rotate: -11deg;
}

.home-v2-license-flow-stage.is-sticker {
    --license-sticker-progress: 1;
    --license-sticker-x: 0%;
    --license-sticker-y: 0px;
    --license-sticker-rotate: -4deg;
}


/* ------------------------------------------------------------------------
   What you receive
------------------------------------------------------------------------ */

.home-v2-license-deliverables {
    margin-top: 2px;
    padding: 20px 0 0;
    border: 0;
    
    background: transparent;
    box-shadow: none;
}

.home-v2-license-deliverables h4 {
    margin: 0 0 16px;
    color: var(--home-accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-style: italic;
    line-height: 1.1;
}

.home-v2-license-deliverables ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-v2-license-deliverables li {
    position: relative;
    padding-left: 22px;
    color: #655a53;
    font-size: 12px;
    line-height: 1.45;
}

.home-v2-license-deliverables li::before {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    width: 16px;
    height: 16px;
    place-items: center;
    border: 1px solid var(--home-accent);
    border-radius: 50%;
    color: var(--home-accent);
    background: transparent;
    content: "✓";
    font-size: 9px;
    font-weight: 800;
}

.home-v2-license-currency {
    display: inline-block;
    font-size: 0.42em;
    font-weight: 700;
    vertical-align: 0.25em;
    margin: 0 0.12em;
}

/* ================================================================
   MOBILE SELECTORS — hidden on desktop
================================================================ */

.home-v2-license-mobile-selector {
    display: none;
}

/* ========================================================================
   RESPONSIVE
======================================================================== */

@media (min-width: 951px) {

    .home-v2-license {
        padding-top: 82px;
    }

    .home-v2-license-heading {
        max-width: 760px;
        margin-bottom: 30px;
    }

    .home-v2-license-heading h2 {
        font-size: clamp(38px, 3.2vw, 49px);
    }

    .home-v2-license-heading > p:last-child {
        max-width: 650px;
        margin-top: 15px;
        font-size: 14px;
        line-height: 1.62;
    }
}


@media (max-width: 1180px) and (min-width: 951px) {

    .home-v2-license-calculator {
        grid-template-columns:
            290px
            195px
            minmax(0, 1fr);
    }

    .home-v2-license-picker {
        padding-right: 25px;
        padding-left: 25px;
    }

    .home-v2-license-business-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


@media (max-width: 1100px) {

    .home-v2-license-flow-sticky {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .home-v2-license-title-line {
        white-space: normal;
    }

    .home-v2-license-flow-copy {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }

    .home-v2-license-flow-media {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }

    .home-v2-license-folder-world {
        --panel-width: min(42vw, 260px);
        --panel-height: min(60.56vw, 375px);
    }
}


@media (max-width: 950px) {

    .home-v2-license-calculator {
        grid-template-columns:
            minmax(250px, 290px)
            minmax(180px, 195px);
    }

    .home-v2-license-categories {
        min-width: 0;
    }

    .home-v2-license-price-card {
        min-height: 430px;
    }

    .home-v2-license-picker {
        grid-column: 1 / -1;
        min-height: 430px;
    }

    .home-v2-license-business-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-v2-license-flow-stage {
        margin-top: 70px;
        padding-bottom: 80px;
    }

    .home-v2-license-flow-main-title {
        font-size: 40px;
    }

    .home-v2-license-flow-copy {
        text-align: center;
    }

    .home-v2-license-flow-brandline {
        margin-right: auto;
        margin-left: auto;
    }

    .home-v2-license-flow-steps {
        max-width: 680px;
        margin-right: auto;
        margin-left: auto;
        column-gap: 24px;
    }

    .home-v2-license-flow-cta {
        margin-right: auto;
        margin-left: auto;
    }

    .home-v2-license-folder-visual {
        height: 420px;
    }
}


@media (max-width: 700px) {

    .home-v2-license-brandline-logo {
        height: 26px;
        margin: 0 4px;
    }

    .home-v2-license {
        padding-top: 75px;
    }

    .home-v2-license-heading {
        margin-bottom: 32px;
    }

    /* ================================================================
    MOBILE CALCULATOR
    ================================================================ */

    .home-v2-license-calculator {
        display: block;

        overflow: hidden;

        border-radius: 20px;
    }

    /* ================================================================
    MOBILE COLLAPSIBLE SELECTORS
    ================================================================ */

    .home-v2-license-mobile-selector {
        display: flex;

        width: 100%;
        min-height: 44px;

        align-items: center;
        justify-content: space-between;

        gap: 15px;

        padding:
            0
            14px;

        border:
            1px solid
            rgba(79, 146, 152, .24);

        border-radius:
            12px;

        color:
            #39332f;

        background:
            rgba(255, 255, 255, .82);

        font-family:
            Georgia,
            "Times New Roman",
            serif;

        font-size:
            14px;

        font-weight:
            700;

        text-align:
            left;

        cursor:
            pointer;
    }


    .home-v2-license-mobile-selector-icon {
        display: flex;

        flex:
            0
            0
            auto;

        width: 28px;
        height: 28px;

        align-items: center;
        justify-content: center;

        border-radius:
            50%;

        color:
            var(--home-turquoise-dark);

        background:
            var(--home-turquoise-soft);

        font-family:
            Arial,
            sans-serif;

        font-size:
            19px;

        font-weight:
            400;

        line-height:
            1;
    }


    /*
    * Όταν είναι ανοικτό.
    */
    .home-v2-license-mobile-selector[
        aria-expanded="true"
    ] {
        border-color:
            rgba(79, 146, 152, .42);

        background:
            #f4f9f8;
    }

    /* ================================================================
    CATEGORIES — 2 COLUMNS
    ================================================================ */

    .home-v2-license-categories {
        padding:
            18px
            16px
            20px;
    }


    .home-v2-license-categories
    .home-v2-license-panel-label {
        margin-bottom: 10px;
    }


    .home-v2-license-category-list {
        display: none;

        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 8px;

        margin:
            9px
            0
            0;

        padding: 0;

        overflow: visible;
    }


    .home-v2-license-category-list.is-mobile-open {
        display: grid;
    }


    .home-v2-license-category-list::-webkit-scrollbar {
        display: none;
    }


    .home-v2-license-category {
        width: 100%;

        min-width: 0;
        min-height: 35px;

        flex: none;

        padding:
            0px
            10px;

        border-radius: 12px;

        font-size: 11px;
    }


    .home-v2-license-category-text {
        width: 62%;

        overflow-wrap: anywhere;

        line-height: 1.12;
    }


    .home-v2-license-category-image {
        width: 66%;
    }


    /*
    * Στο mobile δεν χρειάζεται
    * η οριζόντια κίνηση του hover.
    */
    .home-v2-license-category:hover {
        transform: none;
    }


    /* ================================================================
    PRICE — COMPACT
    ================================================================ */

    .home-v2-license-price-card {
        display: grid;

        grid-template-columns:
            auto
            auto
            auto
            1fr;

        align-items: baseline;
        align-content: center;

        column-gap: 8px;

        min-height: 155px;

        padding:
            22px
            24px;
    }


    /*
    * ΚΑΦΕ
    */
    .home-v2-license-price-category {
        grid-column:
            1 / -1;

        margin-bottom: 16px;
    }


    /*
    * Από
    */
    .home-v2-license-price-prefix {
        margin: 0;

        font-size: 15px;
        line-height: 1;
    }


    /*
    * 100 €
    */
    .home-v2-license-price {
        margin: 0;

        font-size: 44px;
        line-height: .9;

        white-space: nowrap;
    }


    /*
    * ανά έτος
    */
    .home-v2-license-price-period {
        margin: 0;

        font-size: 11px;
        line-height: 1.2;

        white-space: nowrap;
    }


    /*
    * Επίλεξε την επιχείρησή σου...
    */
    .home-v2-license-price-card p {
        grid-column:
            1 / -1;

        max-width: none;

        margin:
            17px
            0
            0;

        font-size: 10.5px;
        line-height: 1.4;
    }


    .home-v2-license-price-card::after {
        right: -55px;
        bottom: -75px;

        width: 170px;
        height: 170px;

        border-width: 24px;
    }


    /* ================================================================
    BUSINESS PICKER
    ================================================================ */

    .home-v2-license-picker {
        min-height: 0;

        padding:
            26px
            16px
            22px;
    }


    .home-v2-license-picker-head {
        display: block;
    }


    .home-v2-license-picker-head h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }


    /* ================================================================
    BUSINESSES — 2 COLUMNS
    ================================================================ */

    .home-v2-license-business-grid {
        display: none;

        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 7px;

        max-height: none;

        margin:
            9px
            0
            0;

        padding: 0;

        overflow: visible;
    }


    .home-v2-license-business-grid.is-mobile-open {
        display: grid;
    }


    .home-v2-license-business {
        min-width: 0;
        min-height: 35px;

        padding:
            0px
            8px;

        border-radius: 10px;
    }


    .home-v2-license-business strong {
        min-width: 0;

        font-size: 11px;
        line-height: 1.18;

        overflow-wrap: anywhere;
    }


    .home-v2-license-business:hover {
        transform: none;
    }


    /* ================================================================
    OPTIONS
    ================================================================ */

    .home-v2-license-options {
        display: grid;

        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        align-items: initial;

        gap:
            12px
            8px;

        margin-top: 18px;

        padding-top: 18px;
    }


    .home-v2-license-options {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            12px
            8px;

        align-items: end;
    }


    /*
     * 1η σειρά:
     * Τετραγωνικά | Τραπεζοκαθίσματα
     */

    .home-v2-license-options
    .home-v2-license-field:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }


    .home-v2-license-options
    .home-v2-license-field:nth-child(4) {
        grid-column: 2;
        grid-row: 1;
    }


    /*
     * 2η σειρά:
     * Live | DJ
     */

    .home-v2-license-options
    .home-v2-license-field:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }


    .home-v2-license-options
    .home-v2-license-field:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .home-v2-license-options:not(
        :has(
            [data-license-seats-field]:not([hidden])
        )
    )
    .home-v2-license-field:nth-child(1) {
        grid-column:
            1 / -1;
    }




    .home-v2-license-options
    .home-v2-license-field:nth-child(1),
    .home-v2-license-options
    .home-v2-license-field:nth-child(2),
    .home-v2-license-options
    .home-v2-license-field:nth-child(3),
    .home-v2-license-options
    .home-v2-license-field:nth-child(4) {
        flex: none;
    }


    .home-v2-license-field select {
        min-height: 40px;
    }


    .home-v2-license-toggle button {
        min-height: 34px;
    }


    /* ================================================================
    FOOTER
    ================================================================ */

    .home-v2-license-picker-footer {
        display: block;

        margin-top: 20px;
    }

    .home-v2-license-flow-stage {
        margin-top: 0px;
        padding-bottom: 70px;
    }

    .home-v2-license-flow-copy {
        text-align: left;
    }

    .home-v2-license-flow-main-title {
        font-size: 38px;
    }

    .home-v2-license-title-line {
        white-space: normal;
    }

    .home-v2-license-flow-brandline {
        margin-left: 0;
    }

    .home-v2-license-flow-steps {
        grid-template-columns: 1fr;
        row-gap: 26px;
        margin-left: 0;
        margin-right: 0;
    }

    .home-v2-license-step-number {
        left: -10px;
    }

    .home-v2-license-flow-cta {
        width: 100%;
    }

    .home-v2-license-folder-visual {
        height: 285px;

        overflow: visible;
    }


    .home-v2-license-folder-world {
        --panel-width: min(56vw, 225px);
        --panel-height: min(80.76vw, 325px);

        top: 48%;
        left: 50%;

        transform:
            translate(-50%, -50%)
            scale(.78);

        transform-origin: center center;
    }

    .home-v2-license-deliverables ul {
        grid-template-columns: 1fr;
    }
}


@media (prefers-reduced-motion: reduce) {

    .home-v2-license-category,
    .home-v2-license-business,
    .home-v2-license-inside-position,
    .home-v2-license-cover-position,
    .home-v2-license-documents-position,
    .home-v2-license-foreground-position,
    .home-v2-license-sticker-position,
    .home-v2-license-cover-rotator,
    .home-v2-license-paper,
    .home-v2-license-real-sticker {
        transition: none;
    }
}


/* ==========================================================================
   HOME V3 LICENSE — DESKTOP LAYOUT
   ========================================================================== */

@media (min-width: 1200px) {

    /*
    |--------------------------------------------------------------------------
    | Section
    |--------------------------------------------------------------------------
    */

    .home-v2-license {
        padding-top: 82px;
        padding-bottom: 90px;
    }


    .home-v2-license-heading {
        max-width: 760px;

        margin-right: auto;
        margin-bottom: 30px;
        margin-left: auto;
    }


    /*
    |--------------------------------------------------------------------------
    | Main 3-column licence layout
    |--------------------------------------------------------------------------
    |
    | 200px  = categories
    | auto   = price + businesses
    | 400px  = deliverables + documents
    |
    */

    .home-v3-license-layout {
        position: relative;
        left: 50%;
        display: grid;
        grid-template-columns: 260px minmax(0, 1fr) 500px;
        width: min(1480px, calc(100vw - 60px));
        min-height: 500px;
        margin: 0;
        overflow: hidden;
        border: 1px solid rgba(214, 202, 191, .72);
        border-radius: 22px;
        background: #fff;
        box-shadow: 0 20px 55px rgba(52, 61, 67, .08);
        transform: translateX(-50%);
    }


    /*
    |--------------------------------------------------------------------------
    | LEFT — Categories
    |--------------------------------------------------------------------------
    */

    .home-v3-license-layout
    .home-v2-license-categories {
        min-width: 0;

        padding:
            18px
            12px;

        border-right:
            1px solid
            rgba(211, 220, 218, .72);

        background:
            linear-gradient(
                155deg,
                #eef3f2 0%,
                #e9efee 52%,
                #f3f3ef 100%
            );
    }


    .home-v3-license-layout
    .home-v2-license-category-list {
        gap: 5px;
    }


    .home-v3-license-layout
    .home-v2-license-category {
        min-height: 42px;

        padding:
            0
            11px;

        border-radius: 10px;

        font-size: 14px;
    }


    .home-v3-license-layout
    .home-v2-license-category-text {
        width: 62%;
    }


    .home-v3-license-layout
    .home-v2-license-category-image {
        width: 66%;
    }


    /*
    |--------------------------------------------------------------------------
    | CENTER
    |--------------------------------------------------------------------------
    */

    .home-v3-license-main {
        display: grid;

        min-width: 0;

        grid-template-rows:
            auto
            1fr;

        background: #fff;
    }


    /*
    |--------------------------------------------------------------------------
    | Price — horizontal header
    |--------------------------------------------------------------------------
    */

    .home-v3-license-main
    .home-v2-license-price-card {
        display: grid;

        grid-template-columns:
            150px
            245px
            minmax(180px, 1fr);

        align-items: center;

        min-height: 118px;

        padding:
            17px
            24px;

        overflow: hidden;

        color: #fff;

        background:
            radial-gradient(
                circle at 100% 0%,
                rgba(207, 233, 230, .24),
                transparent 38%
            ),
            linear-gradient(
                155deg,
                #7896a5 0%,
                #668694 52%,
                #587986 100%
            );
    }


    /*
     * ΚΑΦΕ
     */

    .home-v3-license-main
    .home-v2-license-price-category {
        align-self: start;

        padding-top: 4px;

        font-size: 13px;
        line-height: 1.3;

        letter-spacing: .13em;
    }


    /*
     * Από / 100 € / ανά έτος
     */

    .home-v3-license-price-line {
        display: grid;

        grid-template-columns:
            auto
            auto;

        align-items: baseline;
        justify-content: start;

        column-gap: 8px;

        padding:
            6px
            20px;

        border-left:
            1px solid
            rgba(255, 255, 255, .08);

        border-right:
            1px solid
            rgba(255, 255, 255, .08);
    }


    .home-v3-license-price-line
    .home-v2-license-price-prefix {
        grid-column:
            1 / -1;

        margin: 0 0 4px;

        font-size: 16px;
        line-height: 1;
    }


    .home-v3-license-price-line
    .home-v2-license-price {
        margin: 0;

        font-size: 60px;
        line-height: .9;

        white-space: nowrap;
    }


    .home-v3-license-price-line
    .home-v2-license-price-period {
        margin: 0;

        font-size: 11px;

        white-space: nowrap;
    }


    /*
     * Επίλεξε την επιχείρησή σου...
     */

    .home-v3-license-main
    .home-v2-license-price-card > p {
        max-width: 225px;

        margin:
            0
            0
            0
            22px;

        font-size: 12px;
        line-height: 1.45;
    }


    .home-v3-license-main
    .home-v2-license-price-card::after {
        right: -60px;
        bottom: -105px;

        width: 190px;
        height: 190px;

        border-width: 26px;
    }


    /*
    |--------------------------------------------------------------------------
    | Business picker
    |--------------------------------------------------------------------------
    */

    .home-v3-license-main
    .home-v2-license-picker {
        min-height: 0;

        padding:
            18px
            22px
            16px;

        background:
            radial-gradient(
                circle at 95% 8%,
                rgba(79, 146, 152, .045),
                transparent 25%
            ),
            #fff;
    }


    .home-v3-license-main
    .home-v2-license-picker-head h3 {
        font-size: 23px;
    }


    .home-v3-license-main
    .home-v2-license-business-grid {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );

        gap: 7px;

        margin-top: 15px;
    }


    .home-v3-license-main
    .home-v2-license-business {
        min-height: 35px;

        padding:
            5px
            9px;
    }


    .home-v3-license-main
    .home-v2-license-business strong {
        font-size: 12px;
    }


    /*
    |--------------------------------------------------------------------------
    | Options
    |--------------------------------------------------------------------------
    */

    .home-v3-license-main
    .home-v2-license-options {
        gap: 7px;

        margin-top: 14px;
        padding-top: 13px;
    }


    /*
    |--------------------------------------------------------------------------
    | Bottom note + CTA
    |--------------------------------------------------------------------------
    */

    .home-v3-license-main
    .home-v2-license-picker-footer {
        margin-top: auto;

        padding-top: 17px;
    }


    .home-v3-license-main
    .home-v2-license-picker-footer p {
        max-width: 310px;
    }


    .home-v3-license-cta {
        min-height: 44px;

        margin: 0;

        padding:
            0
            20px;

        white-space: nowrap;
    }


    /*
    |--------------------------------------------------------------------------
    | RIGHT — Result / Deliverables / Documents
    |--------------------------------------------------------------------------
    */

    .home-v3-license-result {
        position: relative;

        display: grid;

        grid-template-rows:
            auto
            1fr;

        min-width: 0;
        min-height: 100%;

        margin: 0;

        padding:
            25px
            22px
            14px;

        overflow: hidden;

        border-left:
            1px solid
            rgba(224, 214, 205, .7);

        background:
            radial-gradient(
                circle at 80% 15%,
                rgba(79, 146, 152, .06),
                transparent 28%
            ),
            linear-gradient(
                180deg,
                #faf6f1 0%,
                #f7f2ec 100%
            );
    }


    /*
     * Ακυρώνουμε τα παλιά dimensions
     * του standalone flow section.
     */

    .home-v3-license-result.home-v2-license-flow-stage {
        height: auto;

        margin-top: 0;

        padding:
            25px
            22px
            14px;
    }


    /*
    |--------------------------------------------------------------------------
    | Τι παραλαμβάνεις
    |--------------------------------------------------------------------------
    */

    .home-v3-license-result
    .home-v2-license-deliverables {
        position: relative;
        z-index: 20;

        margin: 0;

        padding: 0;
    }


    .home-v3-license-result
    .home-v2-license-deliverables h4 {
        margin-bottom: 15px;

        font-size: 22px;
    }


    .home-v3-license-result
    .home-v2-license-deliverables ul {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        column-gap: 17px;
        row-gap: 9px;
    }


    .home-v3-license-result
    .home-v2-license-deliverables li {
        padding-left: 19px;

        font-size: 11px;
        line-height: 1.35;
    }


    .home-v3-license-result
    .home-v2-license-deliverables li::before {
        width: 14px;
        height: 14px;

        font-size: 8px;
    }


    /*
    |--------------------------------------------------------------------------
    | Document animation
    |--------------------------------------------------------------------------
    */

    .home-v3-license-result
    .home-v2-license-folder-visual {
        height: 345px;

        margin-top: 8px;

        overflow: visible;

        perspective: 2100px;
    }


    .home-v3-license-result
    .home-v2-license-folder-world {
        --panel-width: 290px;
        --panel-height: 420px;

        top: 52%;
        left: 50%;

        transform:
            translate(
                -50%,
                -50%
            )
            scale(.78);

        transform-origin:
            center center;
    }


    .home-v3-license-result
    .home-v2-license-ground-shadow {
        bottom: 5%;

        width: 70%;
    }

}


/* ==========================================================================
   FLOATING LICENSE CTA
   ========================================================================== */

.floating-license-button {
    position: fixed;
    z-index: 990;

    right: 0;
    top: 255px;
    bottom: auto;

    display: flex;

    width: 165px;
    min-height: 58px;

    align-items: center;
    justify-content: center;

    padding:
        10px
        18px
        10px
        22px;

    border-radius:
        32px
        0
        0
        32px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #4f9298 0%,
            #39777d 100%
        );

    box-shadow:
        -8px 10px 28px
        rgba(49, 105, 111, .24);

    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;

    text-align: center;
    text-decoration: none;

    
}


.floating-license-button:hover {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #45868c 0%,
            #316b71 100%
        );

    box-shadow:
        -12px 13px 32px
        rgba(49, 105, 111, .30);

    
}


.floating-license-button:focus-visible {
    outline:
        3px solid
        rgba(79, 146, 152, .28);

    outline-offset: 3px;
}


/* --------------------------------------------------------------------------
   Mobile
   -------------------------------------------------------------------------- */

@media (max-width: 700px) {

    .floating-license-button {
        top: auto;
        right: 0;

        bottom:
            calc(
                630px
                + env(safe-area-inset-bottom)
            );

        width: 145px;
        min-height: 48px;

        padding:
            8px
            13px
            8px
            17px;

        border-radius:
            26px
            0
            0
            26px;

        font-size: 11px;
        line-height: 1.2;
    }

}