@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;700;800&family=Sora:wght@600;700;800&display=swap');

:root {
    --neighbors-bg: #10273d;
    --neighbors-bg-2: #173550;
    --neighbors-ink: #17314a;
    --neighbors-ink-soft: #5c6f85;
    --neighbors-paper: #f7f2e5;
    --neighbors-paper-2: #fffaf0;
    --neighbors-card: #fffef9;
    --neighbors-card-strong: rgba(255, 255, 255, 0.08);
    --neighbors-line: rgba(23, 49, 63, 0.12);
    --neighbors-line-light: rgba(255, 255, 255, 0.14);
    --neighbors-accent: #f2d978;
    --neighbors-accent-2: #ffd34d;
    --neighbors-accent-3: #8fc6ff;
    --neighbors-text-light: #eef5ff;
    --neighbors-shadow: 0 24px 70px rgba(8, 24, 30, 0.16);
    --neighbors-radius: 28px;
    --neighbors-shell: 1180px;
}

body.fastllama-neighbors-landing-page {
    background:
        radial-gradient(circle at top left, rgba(120, 228, 188, 0.14), transparent 24%),
        radial-gradient(circle at top right, rgba(242, 217, 120, 0.12), transparent 22%),
        linear-gradient(180deg, #10273d 0%, #163450 22%, #f7f2e5 22%, #f7f2e5 100%);
    color: var(--neighbors-ink);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.fastllama-neighbors-landing-page h1,
.fastllama-neighbors-landing-page h2,
.fastllama-neighbors-landing-page h3 {
    color: inherit;
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.03em;
}

.neighbors-landing {
    overflow: clip;
}

.neighbors-shell {
    width: min(calc(100% - 32px), var(--neighbors-shell));
    margin: 0 auto;
}

.neighbors-shell--wide {
    width: min(calc(100% - 32px), 1320px);
}

.neighbors-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 16px 0;
    backdrop-filter: blur(18px);
    background: rgba(16, 39, 61, 0.86);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.neighbors-nav__bar,
.neighbors-nav__actions,
.neighbors-hero__actions,
.neighbors-hero__badges,
.neighbors-final-card__actions,
.neighbors-highlight-card__headline {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.neighbors-nav__bar {
    align-items: center;
    justify-content: space-between;
}

.neighbors-brand img {
    max-width: 124px;
}

.neighbors-nav__actions {
    align-items: center;
    justify-content: flex-end;
}

.neighbors-nav__actions a {
    color: var(--neighbors-text-light);
    font-weight: 600;
}

.neighbors-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #1b2b3d;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--neighbors-accent) 0%, var(--neighbors-accent-2) 100%);
    box-shadow: 0 16px 36px rgba(242, 217, 120, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.neighbors-button:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.neighbors-button--small {
    min-height: 46px;
    padding: 0 18px;
}

.neighbors-button--ghost,
.neighbors-button--ghost-dark {
    color: var(--neighbors-text-light);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.neighbors-button--ghost-dark {
    color: var(--neighbors-ink);
    border-color: rgba(23, 49, 63, 0.18);
}

.neighbors-hero {
    padding: 76px 0 112px;
    color: var(--neighbors-text-light);
}

.neighbors-hero__grid,
.neighbors-contact,
.neighbors-map-layout,
.neighbors-hero__stack {
    display: grid;
    gap: 32px;
}

.neighbors-hero__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 430px);
    align-items: start;
}

.neighbors-eyebrow,
.neighbors-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.neighbors-eyebrow {
    color: var(--neighbors-accent);
}

.neighbors-badge {
    padding: 8px 14px;
    border-radius: 999px;
    color: #2f2b1a;
    background: linear-gradient(135deg, rgba(120, 228, 188, 0.96), rgba(242, 217, 120, 0.96));
}

.neighbors-badge--dark {
    color: var(--neighbors-ink);
    background: rgba(23, 49, 63, 0.08);
}

.neighbors-hero h1 {
    max-width: 9ch;
    margin-bottom: 24px;
    font-size: clamp(3rem, 7vw, 5.4rem);
    line-height: 0.92;
}

.neighbors-lead,
.neighbors-section__heading p,
.neighbors-card p,
.neighbors-price-card li,
.neighbors-form-card p,
.neighbors-final-card p,
.neighbors-realization p,
.neighbors-map-card p {
    line-height: 1.8;
}

.neighbors-lead,
.neighbors-hero__note,
.neighbors-highlight-card p,
.neighbors-rule-card p {
    color: rgba(238, 245, 255, 0.84);
}

.neighbors-hero__badges span,
.neighbors-highlight-card,
.neighbors-rule-card,
.neighbors-card,
.neighbors-map,
.neighbors-map-card,
.neighbors-realization,
.neighbors-price-card,
.neighbors-form-card,
.neighbors-final-card {
    box-shadow: var(--neighbors-shadow);
}

.neighbors-hero__badges span {
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
}

.neighbors-hero__actions {
    margin-top: 14px;
}

.neighbors-hero__note {
    max-width: 58ch;
    margin-top: 24px;
    font-size: 0.98rem;
}

.neighbors-highlight-card,
.neighbors-rule-card {
    padding: 30px;
    border: 1px solid var(--neighbors-line-light);
    border-radius: var(--neighbors-radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.neighbors-highlight-card__headline {
    align-items: flex-start;
    margin-bottom: 18px;
}

.neighbors-highlight-card__headline strong {
    font-size: clamp(3rem, 7vw, 4.8rem);
    line-height: 0.9;
    color: #ffffff;
}

.neighbors-highlight-card h2,
.neighbors-rule-card h3 {
    margin-bottom: 10px;
    color: #ffffff;
}

.neighbors-highlight-card__stats {
    display: grid;
    gap: 14px;
    margin-top: 10px;
}

.neighbors-highlight-card__stats div {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
}

.neighbors-highlight-card__stats strong {
    display: block;
    color: #ffffff;
    font-size: 1.55rem;
}

.neighbors-highlight-card__stats span,
.neighbors-rule-card__label {
    color: rgba(255, 240, 196, 0.84);
}

.neighbors-rule-card__label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.neighbors-section {
    padding: 96px 0;
}

.neighbors-section__heading {
    max-width: 820px;
    margin-bottom: 40px;
}

.neighbors-section__heading h2 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.04;
    color: var(--neighbors-ink);
}

.neighbors-section__heading p,
.neighbors-card p,
.neighbors-realization p,
.neighbors-map-card p,
.neighbors-form-card p,
.neighbors-form__terms {
    color: var(--neighbors-ink-soft);
}

.neighbors-section--intro {
    position: relative;
    z-index: 2;
    margin-top: -160px;
    padding-top: 0;
    color: var(--neighbors-text-light);
}

.neighbors-section--intro .neighbors-section__heading h2 {
    color: #ffffff;
}

.neighbors-section--intro .neighbors-section__heading p {
    color: rgba(238, 245, 255, 0.78);
}

.neighbors-section--intro .neighbors-card {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 48px rgba(9, 21, 34, 0.18);
}

.neighbors-section--intro .neighbors-card p,
.neighbors-section--intro .neighbors-card h3 {
    color: var(--neighbors-ink);
}

.neighbors-section__heading--light h2 {
    color: #ffffff;
}

.neighbors-section__heading--light p {
    color: rgba(236, 246, 243, 0.78);
}

.neighbors-card-grid,
.neighbors-realizations,
.neighbors-pricing {
    display: grid;
    gap: 22px;
}

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

.neighbors-card,
.neighbors-map-card,
.neighbors-realization,
.neighbors-form-card {
    padding: 30px;
    border: 1px solid var(--neighbors-line);
    border-radius: var(--neighbors-radius);
    background: var(--neighbors-card);
}

.neighbors-card h3,
.neighbors-realization h3,
.neighbors-price-card h3,
.neighbors-form-card h3,
.neighbors-map-card h3 {
    margin-bottom: 12px;
}

.neighbors-section--map {
    background: linear-gradient(180deg, #f1e8d6 0%, #fbf7ee 100%);
}

.neighbors-map-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(290px, 0.75fr);
    align-items: stretch;
}

.neighbors-map {
    min-height: 460px;
    border: 1px solid var(--neighbors-line);
    border-radius: var(--neighbors-radius);
    overflow: hidden;
    background: #dfe9de;
}

.neighbors-map .leaflet-control-attribution {
    font-size: 11px;
}

.neighbors-map-card__meta {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    color: var(--neighbors-ink);
    font-weight: 700;
}

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

.neighbors-realizations__footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 44px;
}

.neighbors-realization {
    overflow: hidden;
    padding: 0;
    background: var(--neighbors-card);
}

.neighbors-realization img,
.neighbors-realization__placeholder,
.neighbors-realization__media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
}

.neighbors-realization__media {
    position: relative;
    padding: 0;
    border: 0;
    overflow: hidden;
    cursor: pointer;
    background: #dfe9de;
}

.neighbors-realization img {
    object-fit: cover;
}

.neighbors-realization__media img {
    width: 100%;
    height: 100%;
}

.neighbors-realization__placeholder {
    display: grid;
    place-items: center;
    padding: 24px;
    color: var(--neighbors-ink-soft);
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, rgba(242, 217, 120, 0.18) 0%, rgba(143, 198, 255, 0.16) 100%);
}

.neighbors-realization__play {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
    background: rgba(16, 39, 61, 0.82);
    backdrop-filter: blur(8px);
}

.neighbors-realization__play-icon {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid var(--neighbors-accent-2);
}

.neighbors-realization__body {
    padding: 24px;
}

.neighbors-inline-link {
    color: #2d537b;
    font-weight: 800;
}

.neighbors-section--pricing {
    background:
        radial-gradient(circle at top right, rgba(242, 217, 120, 0.16), transparent 24%),
        linear-gradient(180deg, #173550 0%, #112a40 100%);
}

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

.neighbors-price-card {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--neighbors-radius);
    color: var(--neighbors-text-light);
    background: rgba(255, 255, 255, 0.05);
}

.neighbors-price-card--featured {
    transform: translateY(-10px);
    border-color: rgba(242, 217, 120, 0.42);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(17, 42, 64, 0.98) 100%);
}

.neighbors-price-card__prices {
    display: grid;
    gap: 4px;
    margin-bottom: 18px;
}

.neighbors-price-card__standard {
    color: rgba(236, 246, 243, 0.64);
    text-decoration: line-through;
}

.neighbors-price-card strong {
    font-size: 2rem;
    color: #ffffff;
}

.neighbors-price-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.neighbors-price-card li {
    padding: 12px 0;
    color: rgba(236, 246, 243, 0.84);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.neighbors-price-card li strong {
    font-size: inherit;
    line-height: inherit;
    font-weight: 800;
    color: inherit;
}

.neighbors-price-card li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.neighbors-contact {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.98fr);
    align-items: start;
}

.neighbors-form-card {
    background: linear-gradient(180deg, #fffdf8 0%, #f7f8f5 100%);
}

.neighbors-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.neighbors-field,
.neighbors-consent {
    display: grid;
    gap: 7px;
}

.neighbors-field--full,
.neighbors-consent,
.neighbors-button--submit,
.neighbors-form__status,
.neighbors-form__terms {
    grid-column: 1 / -1;
}

.neighbors-field span,
.neighbors-consent span {
    color: var(--neighbors-ink);
    font-size: 0.88rem;
    font-weight: 700;
}

.neighbors-field input,
.neighbors-field select,
.neighbors-field textarea {
    width: 100%;
    min-height: 50px;
    padding: 15px 18px;
    border: 1px solid rgba(23, 49, 63, 0.12);
    border-radius: 18px;
    color: var(--neighbors-ink);
    background: #ffffff;
}

.neighbors-field textarea {
    min-height: 110px;
    resize: vertical;
}

.neighbors-field input:focus,
.neighbors-field select:focus,
.neighbors-field textarea:focus {
    outline: none;
    border-color: rgba(120, 228, 188, 0.92);
    box-shadow: 0 0 0 4px rgba(120, 228, 188, 0.16);
}

.neighbors-form__terms {
    padding: 14px 16px;
    border: 1px solid rgba(23, 49, 63, 0.1);
    border-radius: 18px;
    background: #f7f4ea;
    font-size: 0.92rem;
    font-weight: 600;
}

.neighbors-consent {
    grid-template-columns: 18px 1fr;
    align-items: start;
}

.neighbors-consent input {
    margin-top: 4px;
}

.neighbors-consent a {
    color: #18577b;
    font-weight: 800;
    text-decoration: underline;
}

.neighbors-form__status {
    display: none;
    padding: 14px 16px;
    border-radius: 18px;
    font-weight: 700;
}

.neighbors-form__status.is-success {
    display: block;
    color: #113828;
    background: rgba(120, 228, 188, 0.34);
}

.neighbors-form__status.is-error {
    display: block;
    color: #6b1c1c;
    background: rgba(255, 148, 148, 0.18);
    border: 1px solid rgba(255, 148, 148, 0.36);
}

.neighbors-section--final {
    padding-bottom: 110px;
}

.neighbors-final-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) auto;
    gap: 24px;
    align-items: center;
    padding: 40px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.4), transparent 24%),
        linear-gradient(135deg, #fff7da 0%, #f0ffd8 48%, #dff0ff 100%);
}

.neighbors-final-card p {
    margin-bottom: 0;
    color: var(--neighbors-ink-soft);
}

.neighbors-mobile-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 45;
    display: none;
}

.neighbors-mobile-bar .neighbors-button {
    width: 100%;
}

.neighbors-video-modal[hidden] {
    display: none;
}

.neighbors-video-modal {
    position: fixed;
    inset: 0;
    z-index: 70;
}

.neighbors-video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 17, 26, 0.76);
}

.neighbors-video-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 32px), 980px);
    margin: 5vh auto;
    padding: 18px;
    border-radius: 28px;
    background: #0f2733;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.neighbors-video-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.8rem;
    line-height: 1;
    background: rgba(255, 255, 255, 0.12);
}

.neighbors-video-modal__content {
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 16 / 9;
    background: #08111f;
}

.neighbors-video-modal__content iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.legal-footer {
    position: relative;
    padding: 0 0 48px;
    color: var(--neighbors-text-light);
    background:
        radial-gradient(circle at top left, rgba(120, 228, 188, 0.08), transparent 22%),
        linear-gradient(180deg, #17313f 0%, #0f2733 100%);
}

.legal-footer__inner {
    display: grid;
    gap: 28px;
    padding: 40px 44px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(12, 30, 38, 0.96) 100%);
    box-shadow: var(--neighbors-shadow);
}

.legal-footer__brand {
    display: grid;
    gap: 18px;
    max-width: 520px;
}

.legal-footer__brand img {
    max-width: 190px;
}

.legal-footer__brand p {
    margin: 0;
    color: rgba(236, 246, 243, 0.72);
    line-height: 1.8;
}

.legal-footer__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.legal-footer__block {
    display: grid;
    gap: 10px;
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
}

.legal-footer__label {
    color: var(--neighbors-accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.legal-footer__text,
.legal-footer__mail {
    color: #ffffff;
    line-height: 1.75;
}

.legal-footer__mail {
    font-weight: 700;
}

@media only screen and (max-width: 1199px) {
    .neighbors-hero__grid,
    .neighbors-contact,
    .neighbors-map-layout,
    .neighbors-final-card,
    .legal-footer__grid {
        grid-template-columns: 1fr;
    }

    .neighbors-card-grid,
    .neighbors-realizations,
    .neighbors-pricing {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .neighbors-section--intro {
        margin-top: -110px;
    }
}

@media only screen and (max-width: 991px) {
    .neighbors-nav__actions a:not(.neighbors-button) {
        display: none;
    }

    .neighbors-hero {
        padding-top: 36px;
    }

    .neighbors-pricing,
    .neighbors-realizations,
    .neighbors-card-grid,
    .neighbors-form {
        grid-template-columns: 1fr;
    }

    .neighbors-section--intro {
        margin-top: -72px;
    }
}

@media only screen and (max-width: 767px) {
    .neighbors-shell,
    .neighbors-shell--wide {
        width: min(calc(100% - 24px), 1320px);
    }

    .neighbors-nav {
        position: relative;
    }

    .neighbors-nav__bar {
        gap: 18px;
    }

    .neighbors-nav__actions {
        width: 100%;
        justify-content: stretch;
    }

    .neighbors-nav__actions .neighbors-button {
        flex: 1 1 auto;
    }

    .neighbors-hero h1 {
        max-width: none;
        font-size: 2.9rem;
    }

    .neighbors-card,
    .neighbors-map-card,
    .neighbors-form-card,
    .neighbors-price-card,
    .neighbors-final-card,
    .neighbors-highlight-card,
    .neighbors-rule-card,
    .legal-footer__inner,
    .legal-footer__block {
        padding: 24px;
        border-radius: 24px;
    }

    .neighbors-map {
        min-height: 360px;
    }

    .neighbors-section {
        padding: 72px 0;
    }

    .neighbors-section--intro {
        margin-top: -36px;
    }

    .neighbors-mobile-bar {
        display: block;
    }

    .neighbors-video-modal__dialog {
        width: min(calc(100% - 20px), 980px);
        margin: 10vh auto;
        padding: 14px;
        border-radius: 22px;
    }
}
