* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #1f1f1f;
    background: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: relative;
    z-index: 20;
    padding: 16px 24px 0px 24px;
    background: white;
}

.site-header-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    width: min(1600px, 100%);
    min-height: 76px;
    margin: 0 auto;
}

.site-logo-link {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
}

.site-logo {
    display: block;
    width: 200px;
    height: auto;
    max-height: 74px;
    object-fit: contain;
}

.site-logo-text {
    color: #24201d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 700;
}

.site-header-content {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-width: 0;
}

.site-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 1.35vw, 26px);
}

.site-navigation a {
    position: relative;
    padding: 13px 0;
    color: #38312d;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.site-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 2px;
    content: "";
    background: #c96e43;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.site-navigation a:hover::after,
.site-navigation a:focus-visible::after,
.site-navigation a.is-active::after {
    transform: scaleX(1);
}

.site-header-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
}

.header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.header-button:hover {
    transform: translateY(-1px);
}

.header-button-secondary {
    border: 1px solid #d7b49f;
    color: #a75732;
    background: #fffaf7;
}

.header-button-secondary:hover {
    background: #fff4ed;
}

.header-button-primary {
    border: 1px solid #c96e43;
    color: #ffffff;
    background: #c96e43;
}

.header-button-primary:hover {
    border-color: #ab5933;
    background: #ab5933;
}

.header-button-icon {
    color: #c96e43;
    font-size: 16px;
}

.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    margin-left: auto;
    padding: 9px;
    border: 1px solid #dfd3c9;
    border-radius: 9px;
    background: #ffffff;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: #332d29;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.business-types-section {
    padding: 0px 24px 44px 24px;
    background: #ffffff;
}

.business-types-shell {
    width: min(1600px, 100%);
    margin: 0 auto;
}

.business-types-title {
    margin: 0 0 28px;
    color: #211d1a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.1;
    text-align: center;
}

.business-types-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.business-type-card {
    display: flex;
    min-height: 215px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 26px 20px 24px;
    border: 1px solid #eadfd6;
    border-radius: 16px;
    color: #28221f;
    background: #fffdfb;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(70, 48, 34, 0.04);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.business-type-card:hover {
    transform: translateY(-4px);
    border-color: #d9b49f;
    box-shadow: 0 14px 32px rgba(70, 48, 34, 0.09);
}

.business-type-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 96px;
    margin-bottom: 18px;
}

.business-type-icon img {
    display: block;
    width: auto;
    max-width: 100px;
    height: 90px;
    object-fit: contain;
}

.business-type-card h3 {
    margin: 0;
    color: #26211e;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.12;
}

.business-type-card p {
    margin: 18px 0 0;
    color: #5e5550;
    font-size: 15px;
    line-height: 1.55;
}

.licence-cta-section {
    padding: 34px 24px 56px;
    background: #ffffff;
}

.licence-cta-shell {
    width: min(1600px, 100%);
    margin: 0 auto;
}

.licence-cta-content {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(330px, 0.65fr);

    align-items: center;

    min-height: 520px;

    overflow: hidden;

    border: 1px solid #f0e5dc;
    border-radius: 24px;

    background:
        radial-gradient(
            circle at 28% 30%,
            rgba(201, 110, 67, 0.04),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #fffdfb 0%,
            #fffaf6 55%,
            #fdf7f1 100%
        );

    box-shadow:
        0 34px 90px rgba(72, 45, 29, 0.22),
        0 14px 40px rgba(72, 45, 29, 0.12);
}

.licence-cta-image-link {
    position: relative;
    z-index: 2;

    display: block;

    width: fit-content;
    max-width: 100%;

    cursor: pointer;
}

.licence-cta-image-link .licence-cta-image {
    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}

.licence-cta-image-link:hover .licence-cta-image {
    transform: translateY(-3px) scale(1.015);

    filter:
        drop-shadow(
            0 24px 30px
            rgba(82, 52, 35, 0.22)
        );
}

.licence-subtitle-logo {
    display: inline-block;

    width: auto;
    height: 70px;

    margin: 0 6px;

    vertical-align: middle;

    object-fit: contain;

    transform: translateY(-1px);
}


/*
|--------------------------------------------------------------------------
| Αριστερό περιεχόμενο
|--------------------------------------------------------------------------
*/

.licence-cta-text {
    position: relative;
    z-index: 3;

    padding: 54px 54px 50px 70px;

    color: #352c27;
}

.licence-cta-title {
    max-width: 660px;

    margin: 0;

    color: #c85e38;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(36px, 3.2vw, 52px);
    font-weight: 700;
    line-height: 1.08;
}

.licence-cta-subtitle {
    max-width: 650px;

    margin: 18px 0 0;

    color: #654b3b;

    font-size: 18px;
    line-height: 1.55;
}


/*
|--------------------------------------------------------------------------
| Βήματα
|--------------------------------------------------------------------------
*/

.licence-process-steps {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px 34px;

    max-width: 780px;

    margin-top: 32px;
}

.licence-process-step {
    position: relative;

    display: grid;

    grid-template-columns:
        52px minmax(0, 1fr);

    align-items: start;

    gap: 14px;

    min-height: 86px;

    padding: 4px 0 4px 8px;
}

.licence-process-number {
    position: absolute;

    z-index: 3;

    top: -5px;
    left: -2px;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    border-radius: 50%;

    color: #ffffff;
    background: #c85e38;

    font-size: 11px;
    font-weight: 800;

    box-shadow:
        0 4px 10px rgba(126, 60, 32, 0.16);
}

.licence-process-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 70px;
    height: 65px;
}

.licence-process-icon img {
    display: block;

    width: 70px;
    height: 70px;

    object-fit: contain;

    /*
     * Πορτοκαλί icons αντί για λευκά
     */
    filter:
        brightness(0)
        saturate(100%)
        invert(43%)
        sepia(55%)
        saturate(1160%)
        hue-rotate(335deg)
        brightness(94%)
        contrast(91%);

    opacity: 1;
}

.licence-process-copy {
    min-width: 0;
    padding-top: 2px;
}

.licence-process-copy h3 {
    margin: 0;

    color: #342923;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
}

.licence-process-copy p {
    margin: 6px 0 0;

    color: #806656;

    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
}


/*
|--------------------------------------------------------------------------
| Κουμπί
|--------------------------------------------------------------------------
*/

.licence-cta-button {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 28px;

    min-width: 310px;
    min-height: 58px;

    margin-top: 30px;

    padding: 0 26px;

    border: 1px solid #c85e38;
    border-radius: 11px;

    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #d66b44 0%,
            #c85e38 100%
        );

    font-size: 17px;
    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 9px 20px rgba(154, 75, 42, 0.18);

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.licence-cta-button:hover {
    transform: translateY(-2px);

    background:
        linear-gradient(
            135deg,
            #c85e38 0%,
            #ae4d2b 100%
        );

    box-shadow:
        0 13px 26px rgba(154, 75, 42, 0.24);
}

.licence-button-arrow {
    color: #ffffff;

    font-size: 27px;
    line-height: 1;
}


/*
|--------------------------------------------------------------------------
| Παραλαμβάνεις
|--------------------------------------------------------------------------
*/

.licence-receive {
    max-width: 850px;

    margin-top: 26px;
    padding-top: 19px;

    border-top:
        1px solid #e7d8cc;
}

.licence-receive-title {
    margin: 0 0 15px;

    color: #c85e38;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;
    font-weight: 800;
    font-style: italic;
    line-height: 1.3;
}

.licence-receive-list {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    column-gap: 34px;
    row-gap: 12px;
}

.licence-receive-item {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    min-width: 0;

    color: #4e4038;

    font-size: 13px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.45;
}

.licence-receive-check {
    display: inline-flex;

    flex: 0 0 auto;

    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    margin-top: 1px;

    border: 1.5px solid #c85e38;
    border-radius: 50%;

    color: #c85e38;
    background: transparent;

    font-size: 11px;
    font-weight: 900;
}


/*
|--------------------------------------------------------------------------
| Δεξιά εικόνα
|--------------------------------------------------------------------------
*/

.licence-cta-image-wrap {
    position: relative;

    z-index: 1;

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 520px;

    padding: 42px 70px 42px 20px;
}


/*
 * Μεγάλος απαλός κύκλος πίσω από την άδεια
 */
.licence-cta-image-wrap::before {
    position: absolute;

    z-index: 0;

    width: 430px;
    height: 430px;

    border: 1px solid rgba(201, 110, 67, 0.10);
    border-radius: 50%;

    content: "";

    background:
        rgba(255, 248, 241, 0.45);
}


/*
 * Πορτοκαλί διακοσμητικό σχήμα κάτω δεξιά
 */
.licence-cta-image-wrap::after {
    position: absolute;

    z-index: 0;

    right: -150px;
    bottom: -250px;

    width: 470px;
    height: 470px;

    border-radius: 50%;

    content: "";

    background:
        linear-gradient(
            145deg,
            #efb08c 0%,
            #d87b52 100%
        );

    opacity: 0.78;
}

.licence-cta-image {
    position: relative;

    z-index: 2;

    display: block;

    width: auto;

    max-width: 100%;
    max-height: 400px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 20px 24px
            rgba(82, 52, 35, 0.16)
        );

    overflow: visible;
}

.how-it-works-section {
    padding: 0 24px 34px;
    background: #ffffff;
}

.how-it-works-shell {
    width: min(1600px, 100%);
    margin: 0 auto;
}

.how-it-works-title {
    margin: 0 0 34px;
    color: #211d1a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3.3vw, 52px);
    line-height: 1.1;
    text-align: center;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.how-it-works-item {
    position: relative;
    display: grid;
    grid-template-columns: 138px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    min-height: 180px;
}

.how-it-works-number {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: -14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #ffffff;
    background: #c96e43;
    font-size: 16px;
    font-weight: 800;
    transform: translateY(-50%);
    box-shadow: 0 8px 18px rgba(126, 60, 32, 0.18);
}

.how-it-works-icon-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 138px;
    height: 164px;
    border: 1px solid #eadfd6;
    border-radius: 18px;
    background: #fffdfb;
    box-shadow: 0 8px 22px rgba(70, 48, 34, 0.05);
}

.how-it-works-icon-card img {
    display: block;
    width: 92px;
    height: 92px;
    object-fit: contain;
}

.how-it-works-copy h3 {
    margin: 0;
    color: #29231f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    line-height: 1.15;
}

.how-it-works-copy p {
    margin: 14px 0 0;
    color: #5e5550;
    font-size: 15px;
    line-height: 1.55;
}

.site-footer {
    color: #f7f0e9;
    background: #202328;
}

.site-footer-main {
    padding: 48px 24px 34px;
}

.site-footer-shell {
    display: grid;
    grid-template-columns:
        minmax(240px, 1.25fr)
        repeat(3, minmax(150px, 0.75fr))
        minmax(250px, 1.1fr)
        minmax(160px, 0.65fr);
    gap: 38px;
    width: min(1600px, 100%);
    margin: 0 auto;
}

.footer-brand-column,
.footer-links-column,
.footer-contact-column,
.footer-radio-column {
    min-width: 0;
}

.footer-logo {
    display: block;
    width: 230px;
    max-width: 100%;
    height: 70px;
    object-fit: contain;
    object-position: left center;
    filter: none;
}

.footer-description {
    max-width: 260px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.footer-socials a {
    display: block;

    width: 38px;
    height: 38px;

    border: 0;
    border-radius: 0;

    background: transparent;

    color: #ffffff;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.footer-socials a img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.footer-socials a:hover {
    border: 0;
    background: transparent;

    transform: translateY(-2px);
    opacity: 0.85;
}

.footer-links-column h2,
.footer-contact-column h2 {
    margin: 0 0 18px;
    color: #c96e43;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
}

.footer-links-column nav {
    display: grid;
    gap: 12px;
}

.footer-links-column a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links-column a:hover {
    color: #ffffff;
}

.footer-contacts {
    display: grid;
    gap: 13px;
}

.footer-contact-item {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
    gap: 9px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.45;
}

.footer-contact-icon {
    color: #c96e43;
    font-size: 17px;
    line-height: 1.2;
    text-align: center;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: #ffffff;
}

.footer-radio-column {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 4px;
    text-align: center;
}

.footer-radio-icon {
    color: #c96e43;
    font-size: 48px;
    line-height: 1;
}

.footer-radio-column a {
    max-width: 160px;
    margin-top: 12px;
    color: #c96e43;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    text-decoration: none;
}

.site-footer-bottom {
    border-top: 1px solid rgba(217, 160, 93, 0.25);
}

.site-footer-bottom-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1600px, 100%);
    min-height: 58px;
    margin: 0 auto;
    padding: 14px 24px;
}

.site-footer-bottom-shell p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    line-height: 1.45;
}

.faq-section {
    position: relative;
    padding: 52px 24px 78px;
    border-top: 1px solid #eadfd6;
    background: #f8f4ef;
}

.faq-section::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 90px;
    height: 3px;
    border-radius: 999px;
    content: "";
    background: #c96e43;
    transform: translateX(-50%);
}

.faq-shell {
    width: min(1080px, 100%);
    margin: 0 auto;
}

.faq-heading {
    max-width: 720px;
    margin: 0 auto 30px;
    text-align: center;
}

.faq-heading h2 {
    margin: 0;
    color: #211d1a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3.4vw, 50px);
    font-weight: 700;
    line-height: 1.08;
}

.faq-heading p {
    max-width: 680px;
    margin: 15px auto 0;
    color: #665d57;
    font-size: 16px;
    line-height: 1.65;
}

.faq-category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 28px;
}

.faq-category-filter {
    min-height: 42px;
    padding: 9px 17px;
    border: 1px solid #dfd3ca;
    border-radius: 999px;
    color: #3a312c;
    background: #fffdfb;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.faq-category-filter:hover {
    transform: translateY(-1px);
    border-color: #c96e43;
    box-shadow: 0 5px 14px rgba(112, 65, 41, 0.08);
}

.faq-category-filter.is-active {
    border-color: #c96e43;
    color: #ffffff;
    background: #c96e43;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid #e5ddd7;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(70, 48, 34, 0.04);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.faq-item[hidden] {
    display: none;
}

.faq-item:hover {
    border-color: #d9c8bc;
}

.faq-item.is-open {
    border-color: #d8a082;
    box-shadow: 0 8px 22px rgba(112, 65, 41, 0.07);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    width: 100%;
    min-height: 66px;
    padding: 17px 20px;
    border: 0;
    color: #2c2622;
    background: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
}

.faq-question:hover {
    background: #fffaf7;
}

.faq-item.is-open .faq-question {
    color: #9b4f2d;
    background: #fffaf7;
}

.faq-question-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #dcb59f;
    border-radius: 50%;
    color: #b95d34;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}

.faq-answer {
    border-top: 1px solid #eee6e0;
}

.faq-answer[hidden] {
    display: none;
}

.faq-answer-inner {
    padding: 19px 20px 22px;
    color: #625a55;
    background: #fffdfb;
    font-size: 15px;
    line-height: 1.75;
}

.faq-answer-inner a {
    color: #c96e43;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 700;
    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.faq-answer-inner a:hover {
    color: #a9542e;
    opacity: 0.85;
}

.faq-empty-message {
    margin-top: 16px;
    padding: 20px;
    border: 1px dashed #d8cbc2;
    border-radius: 10px;
    color: #716862;
    background: #faf8f6;
    font-size: 14px;
    text-align: center;
}

.faq-empty-message[hidden] {
    display: none;
}

.faq-disclaimer {
    margin-top: 24px;
    padding: 15px 18px;
    border-left: 3px solid #c96e43;
    border-radius: 0 8px 8px 0;
    color: #746b65;
    background: #faf7f4;
    font-size: 12px;
    line-height: 1.65;
}

.faq-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.faq-more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid #c96e43;
    border-radius: 11px;
    color: #ffffff;
    background: #c96e43;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 9px 22px rgba(112, 65, 41, 0.12);
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.faq-more-button:hover {
    border-color: #a9542e;
    background: #a9542e;
    box-shadow: 0 12px 26px rgba(112, 65, 41, 0.18);
    transform: translateY(-2px);
}

.faq-more-button:focus-visible {
    outline: 3px solid rgba(201, 110, 67, 0.24);
    outline-offset: 3px;
}

.faq-more-arrow {
    font-size: 23px;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.2s ease;
}

.faq-more-button:hover .faq-more-arrow {
    transform: translateX(4px);
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Large desktop
|--------------------------------------------------------------------------
*/

@media (max-width: 1350px) {

    .site-footer-shell {
        grid-template-columns:
            minmax(240px, 1.2fr)
            repeat(3, minmax(150px, 0.7fr))
            minmax(230px, 1fr);
    }

    .footer-radio-column {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: center;
        gap: 16px;
        padding-top: 8px;
    }

    .footer-radio-column a {
        margin-top: 0;
        text-align: left;
    }
}


/*
|--------------------------------------------------------------------------
| Small desktop / laptop
|--------------------------------------------------------------------------
*/

@media (max-width: 1280px) {

    /*
    |--------------------------------------------------------------------------
    | Header
    |--------------------------------------------------------------------------
    */

    .site-header-inner {
        gap: 18px;
    }

    .site-logo {
        width: 160px;
        height: auto;
        max-height: 66px;
    }

    .site-navigation {
        gap: 13px;
    }

    .site-navigation a {
        font-size: 12px;
    }

    .header-button {
        padding-right: 13px;
        padding-left: 13px;
        font-size: 12px;
    }


    /*
    |--------------------------------------------------------------------------
    | How it works
    |--------------------------------------------------------------------------
    */

    .how-it-works-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 34px 28px;
    }


    /*
    |--------------------------------------------------------------------------
    | Business types
    |--------------------------------------------------------------------------
    */

    .business-types-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }
}


/*
|--------------------------------------------------------------------------
| Hero tablet transition
|--------------------------------------------------------------------------
*/

@media (max-width: 1100px) {

    .hero-main {
        grid-template-columns: 1fr;
        padding-bottom: 0;
    }

    .hero-bottom-bar {
        position: relative;

        right: auto;
        bottom: auto;
        left: auto;

        grid-column: 1 / -1;

        margin: 0 22px 22px;
    }

    .hero-left {
        padding: 48px 32px 30px;
    }

    .hero-right {
        min-height: 420px;
    }

    .hero-image-fade {
        background:
            linear-gradient(
                180deg,
                rgba(248, 244, 239, 0.15) 0%,
                rgba(248, 244, 239, 0) 30%
            );
    }
}


/*
|--------------------------------------------------------------------------
| Mobile header
|--------------------------------------------------------------------------
*/

@media (max-width: 1050px) {

    .site-header {
        padding: 12px 18px;
    }

    .site-header-inner {
        position: relative;
        min-height: 64px;
    }

    .site-logo {
        width: 160px;
        height: auto;
        max-height: 66px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .site-header-content {
        position: absolute;

        z-index: 30;

        top: calc(100% + 10px);
        right: 0;
        left: 0;

        display: none;

        align-items: stretch;

        padding: 18px;

        border: 1px solid #e4d9d0;
        border-radius: 14px;

        background:
            rgba(255, 255, 255, 0.98);

        box-shadow:
            0 18px 45px
            rgba(52, 40, 31, 0.12);
    }

    .site-header-content.is-open {
        display: block;
    }

    .site-navigation {
        display: flex;

        align-items: stretch;
        flex-direction: column;

        gap: 0;
    }

    .site-navigation a {
        padding: 13px 4px;

        border-bottom:
            1px solid #eee5de;

        font-size: 14px;
    }

    .site-navigation a::after {
        display: none;
    }

    .site-header-actions {
        display: grid;

        grid-template-columns:
            1fr 1fr;

        margin-top: 18px;
    }

    .header-button {
        width: 100%;
        min-height: 48px;
    }
}


/*
|--------------------------------------------------------------------------
| Licence tablet
|--------------------------------------------------------------------------
*/

@media (max-width: 1000px) {

    .licence-process-steps {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        max-width: none;
    }

    .licence-cta-content {
        grid-template-columns: 1fr;
    }

    .licence-cta-text {
        padding: 52px 42px 20px;
    }

    .licence-cta-image-wrap {
        min-height: 390px;

        padding: 20px 42px 45px;
    }

    .licence-cta-image-wrap::before {
        width: 350px;
        height: 350px;
    }

    .licence-cta-image-wrap::after {
        right: -170px;
        bottom: -270px;

        width: 430px;
        height: 430px;
    }

    .licence-cta-image {
        max-height: 350px;
    }
}


/*
|--------------------------------------------------------------------------
| Footer tablet
|--------------------------------------------------------------------------
*/

@media (max-width: 950px) {

    .site-footer-shell {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .footer-brand-column {
        grid-column: 1 / -1;
    }

    .footer-description {
        max-width: 520px;
    }

    .footer-radio-column {
        grid-column: auto;

        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
    }

    .footer-radio-column a {
        text-align: left;
    }
}


/*
|--------------------------------------------------------------------------
| Tablet / mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {

    /*
    |--------------------------------------------------------------------------
    | Hero
    |--------------------------------------------------------------------------
    */

    .hero-section {
        padding: 18px 14px 24px;
    }

    .hero-title {
        font-size: 46px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-button {
        width: 100%;
    }

    .hero-bottom-bar {
        grid-template-columns: 1fr;
        margin: 0 14px 14px;
    }

    .hero-bottom-item
    + .hero-bottom-item {
        border-left: 0;

        border-top:
            1px solid #eee2d8;
    }


    /*
    |--------------------------------------------------------------------------
    | FAQ
    |--------------------------------------------------------------------------
    */

    .faq-section {
        padding: 42px 16px 58px;
    }

    .faq-heading {
        margin-bottom: 24px;
    }

    .faq-heading p {
        font-size: 15px;
    }

    .faq-heading h2 {
        font-size: 28px;
        line-height: 1.08;
    }

    .faq-category-filters {
        justify-content: flex-start;
        flex-wrap: nowrap;

        overflow-x: auto;

        margin-right: -16px;
        margin-left: -16px;

        padding-right: 16px;
        padding-bottom: 8px;
        padding-left: 16px;

        scrollbar-width: thin;
    }

    .faq-category-filter {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .faq-question {
        min-height: 62px;

        padding: 15px 16px;

        font-size: 15px;
    }

    .faq-question-icon {
        width: 28px;
        height: 28px;

        font-size: 19px;
    }

    .faq-answer-inner {
        padding: 16px 16px 19px;

        font-size: 14px;
    }

    .faq-more-button {
        width: 100%;

        padding-right: 18px;
        padding-left: 18px;
    }


    /*
    |--------------------------------------------------------------------------
    | How it works
    |--------------------------------------------------------------------------
    */

    .how-it-works-section {
        padding: 42px 16px 54px;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
    }

    .how-it-works-item {
        grid-template-columns:
            118px minmax(0, 1fr);
    }

    .how-it-works-icon-card {
        width: 118px;
        height: 140px;
    }

    .how-it-works-icon-card img {
        width: 78px;
        height: 78px;
    }

    .how-it-works-number {
        left: -10px;
    }


    /*
    |--------------------------------------------------------------------------
    | Business types
    |--------------------------------------------------------------------------
    */

    .business-types-section {
        padding: 34px 14px 44px;
    }

    .business-types-title {
        margin-bottom: 22px;

        font-size: 28px;
        line-height: 1.08;
    }

    .business-types-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }

    .business-type-card {
        min-height: 0;
        height: auto;

        padding: 16px 10px 18px;
    }

    .business-type-icon {
        height: 62px;
        margin-bottom: 8px;
    }

    .business-type-icon img {
        max-width: 62px;
        height: 58px;
    }

    .business-type-card h3 {
        font-size: 17px;
        line-height: 1.12;
    }

    .business-type-card p {
        margin-top: 9px;

        font-size: 12px;
        line-height: 1.4;
    }

    .business-type-icon {
        height: 78px;
        margin-bottom: 12px;
    }

    .business-type-icon img {
        max-width: 78px;
        height: 72px;
    }

    .business-type-card h3 {
        font-size: 18px;
        line-height: 1.12;
    }

    .business-type-card p {
        margin-top: 12px;

        font-size: 13px;
        line-height: 1.45;
    }
}


/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 600px) {

    /*
    |--------------------------------------------------------------------------
    | Licence process
    |--------------------------------------------------------------------------
    */

    .licence-subtitle-logo {
        height: 28px;
        margin-right: 4px;
        margin-left: 4px;
    }

    .licence-process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .licence-process-step {
        grid-template-columns:
            52px minmax(0, 1fr);

        min-height: 74px;

        padding: 4px 0 4px 6px;
    }

    .licence-process-icon {
        width: 52px;
        height: 52px;
    }

    .licence-process-icon img {
        width: 46px;
        height: 46px;
    }

    .licence-cta-content {
        border-radius: 18px;
    }

    .licence-cta-text {
        padding: 34px 22px 18px;
    }

    .licence-cta-title {
        font-size: 30px;
    }

    .licence-cta-subtitle {
        color: #654b3b;

        font-size: 16px;
    }

    .licence-process-copy h3 {
        color: #342923;
    }

    .licence-process-copy p {
        color: #806656;
    }

    .licence-cta-image-wrap {
        min-height: 300px;

        padding: 10px 24px 32px;
    }

    .licence-cta-image-wrap::before {
        width: 270px;
        height: 270px;
    }

    .licence-cta-image-wrap::after {
        right: -155px;
        bottom: -220px;

        width: 350px;
        height: 350px;
    }

    .licence-cta-image {
        max-height: 270px;
    }


    /*
    |--------------------------------------------------------------------------
    | Licence receive
    |--------------------------------------------------------------------------
    */

    .licence-receive {
        margin-top: 18px;
        padding-top: 14px;
    }

    .licence-receive-list {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .licence-receive-item {
        gap: 7px;

        padding: 5px 2px;

        font-size: 12px;
        line-height: 1.35;
    }

    .licence-receive-check {
        width: 18px;
        height: 18px;

        margin-top: 0;

        font-size: 10px;
    }


    /*
    |--------------------------------------------------------------------------
    | Licence CTA
    |--------------------------------------------------------------------------
    */

    .licence-cta-section {
        padding: 26px 14px 52px;
    }

    .licence-cta-text {
        padding: 38px 24px 18px;
    }

    .licence-cta-title {
        font-size: 30px;
    }

    .licence-cta-subtitle {
        font-size: 17px;
    }

    .licence-cta-step {
        align-items: flex-start;

        font-size: 15px;
        line-height: 1.45;
    }

    .licence-cta-button {
        width: 100%;
        min-width: 0;
    }

    .licence-cta-image-wrap {
        min-height: 340px;

        padding: 15px 24px 35px;
    }

    .licence-cta-image {
        max-height: 320px;
    }


    /*
    |--------------------------------------------------------------------------
    | Footer
    |--------------------------------------------------------------------------
    */

    .site-footer-main {
        padding: 38px 18px 28px;
    }

    .site-footer-shell {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .footer-brand-column {
        grid-column: auto;
    }

    .footer-radio-column {
        align-items: flex-start;
    }

    .site-footer-bottom-shell {
        align-items: flex-start;
        flex-direction: column;

        padding: 18px;
    }
}


/*
|--------------------------------------------------------------------------
| Small mobile header
|--------------------------------------------------------------------------
*/

@media (max-width: 560px) {

    .site-header {
        padding-right: 14px;
        padding-left: 14px;
    }

    .site-logo {
        width: 160px;
        height: auto;
        max-height: 66px;
    }

    .site-header-actions {
        grid-template-columns: 1fr;
    }
}



/*
|--------------------------------------------------------------------------
| Very small mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 480px) {

    .how-it-works-item {
        grid-template-columns:
            96px minmax(0, 1fr);

        gap: 16px;
    }

    .how-it-works-icon-card {
        width: 96px;
        height: 118px;
    }

    .how-it-works-icon-card img {
        width: 66px;
        height: 66px;
    }

    .how-it-works-copy h3 {
        font-size: 20px;
    }

    .how-it-works-copy p {
        font-size: 14px;
    }

    .business-types-section {
        padding-right: 10px;
        padding-left: 10px;
    }

    .business-types-title {
        font-size: 26px;
    }

    .business-types-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 9px;
    }

    .business-type-card {
        min-height: 0;
        height: auto;

        padding: 14px 8px 16px;
    }

    .business-type-icon {
        height: 56px;
        margin-bottom: 7px;
    }

    .business-type-icon img {
        max-width: 58px;
        height: 52px;
    }

    .business-type-card h3 {
        font-size: 16px;
        line-height: 1.1;
    }

    .business-type-icon {
        height: 65px;
        margin-bottom: 10px;
    }

    .business-type-icon img {
        max-width: 66px;
        height: 60px;
    }

    .business-type-card h3 {
        font-size: 16px;
    }

    .business-type-card p {
        margin-top: 9px;

        font-size: 11px;
        line-height: 1.4;
    }
    
    .faq-heading h2 {
        font-size: 26px;
    }
}