/* ============================================================
   LANKAWAYFARER
   HELP & HOW IT WORKS
============================================================ */


/* ============================================================
   RESET
============================================================ */

* {
    box-sizing: border-box;
}


/* ============================================================
   PAGE
============================================================ */

.help-page {

    width: 100%;

    overflow: hidden;

}


/* ============================================================
   HEADER ACTIONS
============================================================ */

.help-login-button,
.help-register-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 40px;

    padding: 9px 16px;

    border-radius: 9px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition:
        all 0.2s ease;

}


.help-login-button {

    color: #176044;

    background: transparent;

    border: 1px solid #d8e5de;

}


.help-login-button:hover {

    background: #edf8f1;

}


.help-register-button {

    color: #ffffff;

    background: #176044;

    border: 1px solid #176044;

}


.help-register-button:hover {

    background: #124d37;

    transform: translateY(-1px);

}


/* ============================================================
   HERO
============================================================ */

.help-hero {

    position: relative;

    padding:
        78px 20px 82px;

    text-align: center;

    background:
        linear-gradient(135deg,
            #edf8f1 0%,
            #f8fcfa 55%,
            #ffffff 100%);

    border-bottom:
        1px solid #e7eee9;

}


.help-hero::before {

    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    top: -120px;

    left: -80px;

    border-radius: 50%;

    background:
        rgba(23, 96, 68, 0.06);

}


.help-hero::after {

    content: "";

    position: absolute;

    width: 320px;

    height: 320px;

    right: -140px;

    bottom: -180px;

    border-radius: 50%;

    background:
        rgba(23, 96, 68, 0.05);

}


.help-hero-content {

    position: relative;

    z-index: 2;

    max-width: 780px;

    margin: 0 auto;

}


.help-hero-icon {

    width: 76px;

    height: 76px;

    margin:
        0 auto 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    font-size: 36px;

    box-shadow:
        0 12px 30px rgba(23, 96, 68, 0.12);

}


.help-eyebrow,
.section-eyebrow {

    margin-bottom: 10px;

    color: #176044;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.help-hero h1 {

    margin-bottom: 18px;

    color: #173f2f;

    font-size: clamp(34px,
            5vw,
            54px);

    line-height: 1.1;

    font-weight: 800;

}


.help-hero-description {

    max-width: 680px;

    margin:
        0 auto 28px;

    color: #66756e;

    font-size: 17px;

    line-height: 1.75;

}


/* ============================================================
   BUTTONS
============================================================ */

.help-hero-actions {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;

}


.help-primary-button,
.help-secondary-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 46px;

    padding: 11px 20px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition:
        all 0.2s ease;

}


.help-primary-button {

    color: #ffffff;

    background: #176044;

    border:
        1px solid #176044;

}


.help-primary-button:hover {

    background: #124d37;

    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(23, 96, 68, 0.18);

}


.help-secondary-button {

    color: #176044;

    background: #ffffff;

    border:
        1px solid #cfded6;

}


.help-secondary-button:hover {

    background: #edf8f1;

    transform: translateY(-2px);

}


/* ============================================================
   SECTION
============================================================ */

.help-section {

    width: 100%;

    max-width: 1180px;

    margin: 0 auto;

    padding:
        76px 24px;

}


.help-section-soft {

    max-width: none;

    padding-left:
        max(24px,
            calc((100% - 1180px) / 2));

    padding-right:
        max(24px,
            calc((100% - 1180px) / 2));

    background: #f8faf9;

}


.help-section-heading {

    max-width: 700px;

    margin:
        0 auto 42px;

    text-align: center;

}


.help-section-heading h2 {

    margin-bottom: 12px;

    color: #173f2f;

    font-size: 32px;

    line-height: 1.25;

}


.help-section-heading>p:last-child {

    color: #6b7771;

    font-size: 15px;

    line-height: 1.7;

}


/* ============================================================
   JOURNEY STEPS
============================================================ */

.journey-steps {

    display: grid;

    grid-template-columns:
        1fr auto 1fr auto 1fr auto 1fr;

    align-items: center;

    gap: 18px;

}


.journey-step {

    position: relative;

    min-height: 260px;

    padding: 28px 22px;

    text-align: center;

    background: #ffffff;

    border:
        1px solid #e4ece7;

    border-radius: 16px;

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.04);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;

}


.journey-step:hover {

    transform: translateY(-4px);

    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.08);

}


.journey-number {

    position: absolute;

    top: 12px;

    right: 14px;

    width: 28px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #176044;

    background: #edf8f1;

    font-size: 12px;

    font-weight: 700;

}


.journey-icon {

    margin:
        10px auto 18px;

    font-size: 38px;

}


.journey-step h3 {

    margin-bottom: 10px;

    color: #234536;

    font-size: 17px;

}


.journey-step p {

    color: #718078;

    font-size: 13px;

    line-height: 1.7;

}


.journey-connector {

    color: #91a89d;

    font-size: 22px;

    font-weight: 700;

}


/* ============================================================
   FEATURE GRID
============================================================ */

.help-feature-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}


.help-feature-card {

    padding: 30px 26px;

    background: #ffffff;

    border:
        1px solid #e4ece7;

    border-radius: 16px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.04);

}


.feature-icon {

    width: 54px;

    height: 54px;

    margin-bottom: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: #edf8f1;

    font-size: 26px;

}


.help-feature-card h3,
.account-help-card h3 {

    margin-bottom: 10px;

    color: #234536;

    font-size: 19px;

}


.help-feature-card>p,
.account-help-card>p {

    color: #6d7973;

    font-size: 14px;

    line-height: 1.7;

}


.help-feature-card ul {

    margin:
        18px 0;

    padding-left: 18px;

    color: #5f6e66;

}


.help-feature-card li {

    margin-bottom: 7px;

    font-size: 13px;

}


.help-feature-card a,
.account-help-card a {

    color: #176044;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

}


.help-feature-card a:hover,
.account-help-card a:hover {

    text-decoration: underline;

}


/* ============================================================
   PROCESS CARD
============================================================ */

.process-card {

    max-width: 850px;

    margin: 0 auto;

    padding: 12px 28px;

    background: #ffffff;

    border:
        1px solid #e4ece7;

    border-radius: 18px;

}


.process-row {

    display: flex;

    gap: 20px;

    padding: 24px 0;

    border-bottom:
        1px solid #edf1ee;

}


.process-row:last-child {

    border-bottom: none;

}


.process-icon {

    flex:
        0 0 54px;

    width: 54px;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: #edf8f1;

    font-size: 25px;

}


.process-content h3 {

    margin-bottom: 7px;

    color: #234536;

    font-size: 17px;

}


.process-content p {

    color: #6d7973;

    font-size: 14px;

    line-height: 1.7;

}


.section-action {

    margin-top: 30px;

    text-align: center;

}


/* ============================================================
   GUIDE HELP
============================================================ */

.guide-help-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}


.guide-help-item {

    padding: 28px;

    background: #ffffff;

    border-radius: 16px;

    border:
        1px solid #e3ebe6;

}


.guide-help-item>span {

    display: inline-flex;

    margin-bottom: 16px;

    color: #176044;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;

}


.guide-help-item h3 {

    margin-bottom: 9px;

    color: #234536;

    font-size: 18px;

}


.guide-help-item p {

    color: #6d7973;

    font-size: 14px;

    line-height: 1.7;

}


/* ============================================================
   QUOTATION FLOW
============================================================ */

.quotation-flow {

    display: grid;

    grid-template-columns:
        1fr auto 1fr auto 1fr auto 1fr;

    align-items: center;

    gap: 18px;

}


.quotation-flow-step {

    min-height: 180px;

    padding: 25px 18px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background: #ffffff;

    border:
        1px solid #e4ece7;

    border-radius: 16px;

}


.flow-icon {

    margin-bottom: 14px;

    font-size: 32px;

}


.quotation-flow-step strong {

    margin-bottom: 7px;

    color: #234536;

    font-size: 15px;

}


.quotation-flow-step span {

    color: #78837e;

    font-size: 12px;

    line-height: 1.5;

}


.flow-arrow {

    color: #91a89d;

    font-size: 22px;

    font-weight: 700;

}


/* ============================================================
   ACCOUNT GRID
============================================================ */

.account-help-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}


.account-help-card {

    padding: 28px;

    background: #ffffff;

    border:
        1px solid #e4ece7;

    border-radius: 16px;

}


.account-help-card .feature-icon {

    margin-bottom: 17px;

}


/* ============================================================
   VERIFICATION TIP
============================================================ */

.verification-tip {

    max-width: 850px;

    margin: 28px auto 0;

    padding: 20px 22px;

    background: #edf8f1;

    border:
        1px solid #d6e9de;

    border-radius: 12px;

}


.verification-tip strong {

    display: block;

    margin-bottom: 7px;

    color: #176044;

    font-size: 14px;

}


.verification-tip p {

    color: #5f6e66;

    font-size: 13px;

    line-height: 1.6;

}


/* ============================================================
   GUIDE REGISTRATION
============================================================ */

.guide-registration-flow {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


.guide-registration-flow>div {

    position: relative;

    padding: 28px 22px;

    text-align: center;

    background: #ffffff;

    border:
        1px solid #e4ece7;

    border-radius: 16px;

}


.guide-registration-flow span {

    width: 42px;

    height: 42px;

    margin:
        0 auto 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background: #176044;

    font-size: 15px;

    font-weight: 700;

}


.guide-registration-flow h3 {

    margin-bottom: 9px;

    color: #234536;

    font-size: 17px;

}


.guide-registration-flow p {

    color: #6d7973;

    font-size: 13px;

    line-height: 1.7;

}


/* ============================================================
   FAQ
============================================================ */

.faq-list {

    max-width: 850px;

    margin: 0 auto;

}


.faq-item {

    margin-bottom: 10px;

    background: #ffffff;

    border:
        1px solid #e3ebe6;

    border-radius: 12px;

    overflow: hidden;

}


.faq-item summary {

    position: relative;

    padding: 19px 48px 19px 20px;

    color: #234536;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    list-style: none;

}


.faq-item summary::-webkit-details-marker {

    display: none;

}


.faq-item summary::after {

    content: "+";

    position: absolute;

    right: 20px;

    top: 50%;

    transform:
        translateY(-50%);

    color: #176044;

    font-size: 21px;

    font-weight: 400;

}


.faq-item[open] summary::after {

    content: "−";

}


.faq-item p {

    margin: 0;

    padding:
        0 20px 20px;

    color: #6d7973;

    font-size: 14px;

    line-height: 1.75;

}


/* ============================================================
   FINAL CTA
============================================================ */

.help-final-cta {

    max-width: 1180px;

    margin:
        20px auto 70px;

    padding:
        48px 40px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    border-radius: 20px;

    background:
        linear-gradient(135deg,
            #edf8f1,
            #f8fcfa);

    border:
        1px solid #dceae2;

}


.cta-icon {

    display: block;

    margin-bottom: 10px;

    font-size: 30px;

}


.help-final-cta h2 {

    margin-bottom: 8px;

    color: #173f2f;

    font-size: 28px;

}


.help-final-cta p {

    max-width: 620px;

    color: #68756f;

    font-size: 14px;

    line-height: 1.7;

}


/* ============================================================
   FOOTER
============================================================ */

.help-footer {

    padding:
        28px 6%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    background: #173f2f;

    color: #ffffff;

}


.help-footer strong {

    display: block;

    margin-bottom: 5px;

    font-size: 16px;

}


.help-footer span {

    color: #c8d8d0;

    font-size: 12px;

}


.footer-links {

    display: flex;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;

}


.footer-links a {

    color: #d9e6df;

    font-size: 13px;

    text-decoration: none;

}


.footer-links a:hover {

    color: #ffffff;

    text-decoration: underline;

}


/* ============================================================
   MOBILE MENU
============================================================ */

.mobile-menu-button {

    display: none;

    width: 42px;

    height: 42px;

    align-items: center;

    justify-content: center;

    border: 1px solid #dce7e1;

    border-radius: 9px;

    background: #ffffff;

    color: #176044;

    font-size: 21px;

    cursor: pointer;

}


.mobile-navigation {

    display: none;

}


/* ============================================================
   LARGE TABLET
============================================================ */

@media (max-width: 1050px) {

    .journey-steps {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .journey-connector {

        display: none;

    }


    .help-feature-grid,
    .guide-help-grid,
    .account-help-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .guide-registration-flow {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .quotation-flow {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .flow-arrow {

        display: none;

    }


    .help-final-cta {

        margin-left: 24px;

        margin-right: 24px;

    }

}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 850px) {

    .main-navigation,
    .header-actions {

        display: none;

    }


    .mobile-menu-button {

        display: flex;

    }


    .mobile-navigation {

        position: fixed;

        top: 75px;

        left: 0;

        right: 0;

        z-index: 7999;

        padding: 15px;

        background: #ffffff;

        border-bottom:
            1px solid #e5ece8;

        box-shadow:
            0 12px 30px rgba(0, 0, 0, 0.10);

    }


    .mobile-navigation.active {

        display: flex;

        flex-direction: column;

        gap: 4px;

    }


    .mobile-navigation a {

        display: block;

        padding: 13px 15px;

        border-radius: 8px;

        color: #34463e;

        font-size: 14px;

        font-weight: 600;

        text-decoration: none;

    }


    .mobile-navigation a:hover,
    .mobile-navigation a.active {

        color: #176044;

        background: #edf8f1;

    }


    .help-section {

        padding:
            60px 22px;

    }


    .help-section-soft {

        padding-left: 22px;

        padding-right: 22px;

    }


    .help-final-cta {

        flex-direction: column;

        align-items: flex-start;

        padding: 38px 28px;

    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 600px) {

    .help-hero {

        padding:
            55px 18px 60px;

    }


    .help-hero-icon {

        width: 66px;

        height: 66px;

        font-size: 31px;

    }


    .help-hero h1 {

        font-size: 34px;

    }


    .help-hero-description {

        font-size: 15px;

    }


    .help-hero-actions {

        width: 100%;

        flex-direction: column;

    }


    .help-primary-button,
    .help-secondary-button {

        width: 100%;

    }


    .help-section {

        padding:
            52px 16px;

    }


    .help-section-soft {

        padding:
            52px 16px;

    }


    .help-section-heading {

        margin-bottom: 30px;

    }


    .help-section-heading h2 {

        font-size: 26px;

    }


    .journey-steps,
    .help-feature-grid,
    .guide-help-grid,
    .account-help-grid,
    .guide-registration-flow,
    .quotation-flow {

        grid-template-columns: 1fr;

    }


    .journey-step {

        min-height: auto;

    }


    .process-card {

        padding:
            8px 18px;

    }


    .process-row {

        gap: 14px;

    }


    .process-icon {

        flex-basis: 46px;

        width: 46px;

        height: 46px;

        font-size: 21px;

    }


    .process-content h3 {

        font-size: 16px;

    }


    .process-content p {

        font-size: 13px;

    }


    .quotation-flow-step {

        min-height: 150px;

    }


    .help-final-cta {

        margin:
            0 16px 45px;

        padding:
            32px 22px;

    }


    .help-final-cta h2 {

        font-size: 24px;

    }


    .help-footer {

        flex-direction: column;

        align-items: flex-start;

        padding:
            28px 20px;

    }


    .footer-links {

        gap: 14px;

    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 380px) {

    .help-hero h1 {

        font-size: 29px;

    }


    .help-hero-description {

        font-size: 14px;

    }


    .help-section-heading h2 {

        font-size: 23px;

    }


    .help-feature-card,
    .account-help-card,
    .guide-help-item {

        padding: 24px 20px;

    }

}