/*
|--------------------------------------------------------------------------
| JustDate24 – SEO-Landingpage „Neue Leute kennenlernen“
|--------------------------------------------------------------------------
| Pfad: /css/neue-leute-kennenlernen.css
|--------------------------------------------------------------------------
*/

:root {
    --nlk-navy: #07306d;
    --nlk-navy-dark: #05275a;
    --nlk-orange: #ff6329;
    --nlk-orange-dark: #e84f18;
    --nlk-red: #ff5572;
    --nlk-blue: #2874d0;
    --nlk-green: #75b654;
    --nlk-purple: #7756b4;
    --nlk-text: #18365f;
    --nlk-muted: #61708a;
    --nlk-border: #dbe4ef;
    --nlk-soft: #f7f9fc;
    --nlk-white: #ffffff;
}

.nlk-page,
.nlk-page * {
    box-sizing: border-box;
}

.nlk-page {
    width: 100%;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .98), transparent 34%),
        linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    color: var(--nlk-text);
    font-family: 'Roboto', Arial, sans-serif;
    padding: 8px 0 28px;
}

.nlk-page a {
    color: inherit;
}

.nlk-shell {
    width: min(100% - 40px, 1180px);
    margin: 0 auto;
}

.nlk-svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.nlk-breadcrumb {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 28px;
    margin-bottom: 7px;
    color: #4c6282;
    font-size: 11px;
    font-weight: 700;
}

.nlk-breadcrumb a {
    text-decoration: none;
}

.nlk-breadcrumb a:hover {
    color: var(--nlk-orange);
}

/* HERO */

.nlk-hero {
    display: grid;
    grid-template-columns: minmax(350px, 42%) minmax(0, 58%);
    min-height: 420px;
    margin-bottom: 17px;
    overflow: hidden;
    border: 1px solid #e5ebf2;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(22, 50, 88, .07);
}

.nlk-hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 36px 38px;
}

.nlk-hero-copy::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 115px;
    height: 3px;
    background: var(--nlk-orange);
}

.nlk-hero h1 {
    max-width: 440px;
    margin: 0;
    color: var(--nlk-navy);
    font-size: clamp(45px, 5vw, 68px);
    font-weight: 900;
    letter-spacing: -2.4px;
    line-height: .95;
}

.nlk-hero-script {
    margin: 18px 0 14px;
    color: var(--nlk-orange);
    font-family: 'Caveat', cursive;
    font-size: clamp(25px, 2.6vw, 36px);
    font-weight: 600;
    line-height: 1.05;
}

.nlk-hero-text {
    max-width: 470px;
    margin: 0;
    color: #294769;
    font-size: 15px;
    line-height: 1.68;
}

.nlk-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 23px;
}

.nlk-hero-media {
    position: relative;
    min-width: 0;
    min-height: 420px;
    overflow: hidden;
}

.nlk-hero-media::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 1;
    width: 42px;
    background: linear-gradient(90deg, #fff, transparent);
    pointer-events: none;
}

.nlk-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* BUTTONS */

.nlk-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 44px;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background .18s ease,
        border-color .18s ease;
}

.nlk-button:hover {
    transform: translateY(-1px);
}

.nlk-button-primary {
    background: linear-gradient(180deg, #ff7b3f, var(--nlk-orange));
    color: #fff !important;
    box-shadow: 0 5px 14px rgba(255, 99, 41, .23);
}

.nlk-button-primary:hover {
    background: linear-gradient(180deg, #ff884f, var(--nlk-orange-dark));
    box-shadow: 0 8px 18px rgba(255, 99, 41, .28);
}

.nlk-button-secondary {
    border-color: #b8cce3;
    background: #fff;
    color: var(--nlk-navy);
}

.nlk-button-secondary:hover {
    border-color: var(--nlk-blue);
    background: #f8fbff;
}

/* SECTIONS */

.nlk-section {
    margin-top: 14px;
    padding: 22px 18px 18px;
    border: 1px solid #e3e9f1;
    border-radius: 9px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 4px 18px rgba(22, 50, 88, .035);
}

.nlk-section-header {
    margin-bottom: 17px;
    text-align: center;
}

.nlk-section-header h2 {
    margin: 0;
    color: var(--nlk-navy);
    font-size: clamp(20px, 2vw, 27px);
    font-weight: 900;
    line-height: 1.18;
}

.nlk-section-header p {
    max-width: 720px;
    margin: 8px auto 0;
    color: var(--nlk-muted);
    font-size: 13px;
    line-height: 1.55;
}

/* BENEFITS */

.nlk-benefit-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.nlk-benefit-card {
    min-width: 0;
    padding: 7px 13px 10px;
    border-right: 1px solid #e5eaf1;
    text-align: center;
}

.nlk-benefit-card:last-child {
    border-right: 0;
}

.nlk-round-icon {
    display: grid;
    place-items: center;
    width: 49px;
    height: 49px;
    margin: 0 auto 10px;
    border: 1px solid #dbe6f2;
    border-radius: 50%;
    background: #f9fbff;
    color: var(--nlk-blue);
}

.nlk-benefit-card:nth-child(2) .nlk-round-icon {
    color: var(--nlk-red);
}

.nlk-benefit-card:nth-child(3) .nlk-round-icon {
    color: var(--nlk-blue);
}

.nlk-benefit-card:nth-child(4) .nlk-round-icon {
    color: var(--nlk-orange);
}

.nlk-benefit-card:nth-child(5) .nlk-round-icon {
    color: var(--nlk-green);
}

.nlk-benefit-card:nth-child(6) .nlk-round-icon {
    color: var(--nlk-purple);
}

.nlk-round-icon svg,
.nlk-process-icon svg,
.nlk-promise-heart svg,
.nlk-city-pin svg,
.nlk-final-heart svg,
.nlk-trust-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nlk-benefit-card h3 {
    margin: 0 0 6px;
    color: var(--nlk-navy);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.25;
}

.nlk-benefit-card p {
    margin: 0;
    color: #526681;
    font-size: 10px;
    line-height: 1.5;
}

/* PROCESS */

.nlk-process-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(225px, 1fr);
    gap: 20px;
    align-items: stretch;
}

.nlk-process-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 4px 0 0;
    list-style: none;
}

.nlk-process-step {
    position: relative;
    min-width: 0;
    padding: 0 22px;
    text-align: center;
}

.nlk-process-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 9px;
    color: var(--nlk-navy);
}

.nlk-process-icon svg {
    width: 42px;
    height: 42px;
}

.nlk-process-step h3 {
    margin: 0 0 4px;
    color: var(--nlk-navy);
    font-size: 11px;
    font-weight: 900;
}

.nlk-process-step p {
    margin: 0 auto;
    color: #596c85;
    font-size: 9px;
    line-height: 1.4;
}

.nlk-process-arrow {
    position: absolute;
    top: 19px;
    right: -8px;
    color: var(--nlk-navy);
    font-size: 23px;
    font-weight: 400;
}

.nlk-promise-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 132px;
    padding: 18px;
    border-left: 1px solid #e2e8f0;
    background: linear-gradient(90deg, transparent, #fff8f4);
}

.nlk-promise-heart {
    color: var(--nlk-red);
}

.nlk-promise-heart svg {
    width: 67px;
    height: 67px;
    stroke-width: 2.3;
}

.nlk-promise-card p {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    color: var(--nlk-navy);
    font-size: 12px;
    line-height: 1.3;
}

/* AUDIENCE */

.nlk-audience-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.nlk-audience-card {
    overflow: hidden;
    border: 1px solid #dae3ee;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(22, 50, 88, .04);
    text-align: center;
    transition: transform .18s ease, box-shadow .18s ease;
}

.nlk-audience-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 50, 88, .09);
}

.nlk-audience-card img {
    width: 100%;
    aspect-ratio: 1.22 / 1;
    object-fit: cover;
    display: block;
}

.nlk-audience-copy {
    min-height: 92px;
    padding: 10px 8px 12px;
}

.nlk-audience-copy h3 {
    margin: 0 0 6px;
    color: var(--nlk-navy);
    font-size: 12px;
    font-weight: 900;
}

.nlk-audience-copy p {
    margin: 0;
    color: #596c85;
    font-size: 9px;
    line-height: 1.45;
}

/* CITIES */

.nlk-city-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.nlk-city-card {
    overflow: hidden;
    border: 1px solid #d9e3ee;
    border-radius: 7px;
    background: #f9fbfe;
    color: var(--nlk-navy);
    text-align: center;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease;
}

.nlk-city-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(22, 50, 88, .09);
}

.nlk-city-card img {
    width: 100%;
    aspect-ratio: 2.03 / 1;
    object-fit: cover;
    display: block;
}

.nlk-city-card > span:not(.nlk-city-pin) {
    display: block;
    padding: 9px 7px 10px;
    font-size: 11px;
    font-weight: 900;
}

.nlk-city-card-all {
    display: flex;
    min-height: 111px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.nlk-city-pin {
    color: var(--nlk-blue);
}

.nlk-city-pin svg {
    width: 43px;
    height: 43px;
}

.nlk-city-card-all strong {
    margin-top: 4px;
    font-size: 11px;
}

.nlk-city-card-all small {
    margin-top: 3px;
    color: #61708a;
    font-size: 9px;
}

.nlk-text-link {
    display: table;
    margin: 14px auto 0;
    color: var(--nlk-blue) !important;
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
}

/* TESTIMONIALS */

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

.nlk-testimonial-card {
    min-width: 0;
    min-height: 195px;
    margin: 0;
    padding: 22px 20px 16px;
    border: 1px solid #e2e8ef;
    border-radius: 8px;
    background:
        linear-gradient(145deg, #fff 0%, #f9fafc 100%);
}

.nlk-testimonial-card blockquote {
    min-height: 93px;
    margin: 0;
    color: #2f4b70;
    font-size: 13px;
    font-style: italic;
    line-height: 1.65;
}

.nlk-testimonial-card figcaption {
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr) 35px;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.nlk-testimonial-card img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.nlk-testimonial-card figcaption > span:not(.nlk-testimonial-heart) {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.nlk-testimonial-card strong {
    color: var(--nlk-navy);
    font-size: 11px;
}

.nlk-testimonial-card small {
    margin-top: 3px;
    color: #61708a;
    font-size: 9px;
}

.nlk-testimonial-heart {
    color: var(--nlk-orange);
    font-size: 38px;
    font-weight: 300;
    line-height: 1;
}

/* FAQ */

.nlk-faq-section {
    padding-bottom: 22px;
}

.nlk-faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.nlk-faq-item {
    overflow: hidden;
    border: 1px solid #dce5ef;
    border-radius: 7px;
    background: #fff;
}

.nlk-faq-item summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 12px;
    align-items: center;
    min-height: 54px;
    padding: 12px 15px;
    color: var(--nlk-navy);
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    list-style: none;
}

.nlk-faq-item summary::-webkit-details-marker {
    display: none;
}

.nlk-faq-item summary span {
    display: grid;
    place-items: center;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #f0f5fb;
    color: var(--nlk-blue);
    font-size: 18px;
    transition: transform .18s ease;
}

.nlk-faq-item[open] summary span {
    transform: rotate(45deg);
}

.nlk-faq-item > div {
    padding: 0 15px 15px;
    color: #50647f;
    font-size: 11px;
    line-height: 1.6;
}

.nlk-faq-item p {
    margin: 0;
}

.nlk-faq-item a {
    display: inline-block;
    margin-top: 8px;
    color: var(--nlk-blue);
    font-weight: 800;
}

/* FINAL CTA */

.nlk-final-cta {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    min-height: 102px;
    margin-top: 15px;
    padding: 20px 28px;
    border: 1px solid #f0e2d9;
    border-radius: 9px;
    background:
        linear-gradient(90deg, #fff9f5 0%, #fff 56%, #fff8f3 100%);
}

.nlk-final-heart {
    color: var(--nlk-orange);
}

.nlk-final-heart svg {
    width: 62px;
    height: 62px;
    stroke-width: 2.2;
}

.nlk-final-cta h2 {
    margin: 0;
    color: var(--nlk-navy);
    font-size: 19px;
    font-weight: 900;
}

.nlk-final-cta p {
    margin: 5px 0 0;
    color: #61708a;
    font-size: 11px;
}

/* TRUSTBAR */

.nlk-trustbar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 16px;
    padding-top: 15px;
    border-top: 1px solid #e1e7ef;
}

.nlk-trust-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 64px;
    padding: 0 18px;
    border-right: 1px solid #e1e7ef;
}

.nlk-trust-item:last-child {
    border-right: 0;
}

.nlk-trust-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
}

.nlk-trust-icon svg {
    width: 39px;
    height: 39px;
}

.nlk-trust-icon-green {
    color: var(--nlk-green);
}

.nlk-trust-icon-blue {
    color: var(--nlk-blue);
}

.nlk-trust-icon-red {
    color: var(--nlk-red);
}

.nlk-trust-item p {
    margin: 0;
    color: #50647f;
    font-size: 9px;
    line-height: 1.35;
}

.nlk-trust-item strong {
    display: block;
    margin-bottom: 3px;
    color: var(--nlk-navy);
    font-size: 11px;
}

/* TABLET */

@media (max-width: 1040px) {
    .nlk-hero {
        grid-template-columns: 44% 56%;
    }

    .nlk-benefit-grid,
    .nlk-audience-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 20px;
    }

    .nlk-benefit-card:nth-child(3) {
        border-right: 0;
    }

    .nlk-benefit-card:nth-child(4),
    .nlk-benefit-card:nth-child(5),
    .nlk-benefit-card:nth-child(6) {
        padding-top: 13px;
        border-top: 1px solid #e5eaf1;
    }

    .nlk-city-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .nlk-trustbar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 16px;
    }

    .nlk-trust-item:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 820px) {
    .nlk-shell {
        width: min(100% - 26px, 720px);
    }

    .nlk-hero {
        grid-template-columns: 1fr;
    }

    .nlk-hero-copy {
        padding: 35px 25px 31px;
    }

    .nlk-hero-media,
    .nlk-hero-media img {
        min-height: 320px;
    }

    .nlk-hero-media::before {
        display: none;
    }

    .nlk-process-layout {
        grid-template-columns: 1fr;
    }

    .nlk-process-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 28px;
    }

    .nlk-process-step:nth-child(2) .nlk-process-arrow {
        display: none;
    }

    .nlk-promise-card {
        border-top: 1px solid #e2e8f0;
        border-left: 0;
    }

    .nlk-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .nlk-testimonial-card blockquote {
        min-height: 0;
    }

    .nlk-final-cta {
        grid-template-columns: 60px minmax(0, 1fr);
    }

    .nlk-final-cta .nlk-button {
        grid-column: 1 / -1;
        width: 100%;
    }
}

/* MOBILE */

@media (max-width: 560px) {
    .nlk-page {
        padding-top: 2px;
    }

    .nlk-shell {
        width: min(100% - 18px, 520px);
    }

    .nlk-breadcrumb {
        overflow-x: auto;
        white-space: nowrap;
        font-size: 10px;
    }

    .nlk-hero h1 {
        font-size: 43px;
    }

    .nlk-hero-script {
        font-size: 27px;
    }

    .nlk-hero-text {
        font-size: 14px;
    }

    .nlk-hero-actions {
        display: grid;
    }

    .nlk-button {
        width: 100%;
    }

    .nlk-section {
        padding: 19px 12px 15px;
    }

    .nlk-benefit-grid,
    .nlk-audience-grid,
    .nlk-city-grid,
    .nlk-faq-list {
        grid-template-columns: 1fr 1fr;
    }

    .nlk-benefit-card {
        border-right: 0;
    }

    .nlk-benefit-card:nth-child(n + 3) {
        padding-top: 13px;
        border-top: 1px solid #e5eaf1;
    }

    .nlk-audience-copy {
        min-height: 106px;
    }

    .nlk-process-list {
        grid-template-columns: 1fr;
    }

    .nlk-process-arrow {
        position: static;
        display: block !important;
        margin: 12px auto -7px;
        transform: rotate(90deg);
    }

    .nlk-process-step:last-child .nlk-process-arrow {
        display: none !important;
    }

    .nlk-promise-card {
        flex-direction: column;
        text-align: center;
    }

    .nlk-faq-list {
        grid-template-columns: 1fr;
    }

    .nlk-final-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nlk-final-heart {
        margin: 0 auto;
    }

    .nlk-trustbar {
        grid-template-columns: 1fr;
    }

    .nlk-trust-item,
    .nlk-trust-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid #e1e7ef;
        padding: 12px 6px;
    }

    .nlk-trust-item:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 380px) {
    .nlk-benefit-grid,
    .nlk-audience-grid,
    .nlk-city-grid {
        grid-template-columns: 1fr;
    }
}
