/* ── Public landing (pre-login) ── */

.landing-page {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: #06060a;
    color: #f4f4f5;
    overflow-x: hidden;
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-brand-text {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

.landing-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.landing-bg-mesh {
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(ellipse 60% 50% at 15% 20%, rgba(59, 130, 246, 0.18), transparent 55%),
        radial-gradient(ellipse 50% 40% at 85% 10%, rgba(245, 158, 11, 0.12), transparent 50%),
        radial-gradient(ellipse 40% 35% at 70% 80%, rgba(139, 92, 246, 0.1), transparent 55%);
    animation: landingMeshShift 18s ease-in-out infinite alternate;
}

.landing-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
}

@keyframes landingMeshShift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(2%, -1%) scale(1.04); }
}

.landing-container {
    width: min(1120px, calc(100% - 2.5rem));
    margin: 0 auto;
}

/* Nav */

.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(6, 6, 10, 0.72);
    backdrop-filter: blur(16px);
}

.landing-nav-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: min(1120px, calc(100% - 2.5rem));
    margin: 0 auto;
    padding: 0.9rem 0;
}

.landing-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-right: auto;
}

.landing-brand-mark {
    display: grid;
    place-items: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.landing-brand-text {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.landing-nav-links a {
    font-size: 0.875rem;
    color: #a1a1aa;
    transition: color 0.2s ease;
}

.landing-nav-links a:hover {
    color: #fff;
}

.landing-nav-login {
    padding: 0.55rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #e4e4e7;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.landing-nav-login:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.landing-lang-select-wrap {
    display: flex;
    align-items: center;
}

.landing-lang-select-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.landing-lang-select {
    appearance: none;
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background-color: #14141a;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a1a1aa' d='M3 4.5 6 7.5 9 4.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.65rem center;
    color: #f4f4f5;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.landing-lang-select option {
    background-color: #14141a;
    color: #f4f4f5;
}

.landing-lang-select:hover,
.landing-lang-select:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.45);
    background-color: #1c1c24;
}

.landing-page-rtl {
    direction: rtl;
}

.landing-page-rtl .landing-nav-links,
.landing-page-rtl .landing-hero-trust,
.landing-page-rtl .landing-lina-list li,
.landing-page-rtl .landing-step {
    text-align: right;
}

.landing-page-rtl .landing-lina-list li {
    padding-left: 0;
    padding-right: 1.5rem;
}

.landing-page-rtl .landing-lina-list li::before {
    left: auto;
    right: 0;
}

.landing-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    background: transparent;
}

.landing-nav-toggle span {
    display: block;
    height: 2px;
    background: #e4e4e7;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.landing-nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0 1.25rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(6, 6, 10, 0.95);
}

.landing-nav-mobile a,
.landing-nav-mobile button {
    padding: 0.75rem 0;
    text-align: left;
    color: #d4d4d8;
    font-size: 0.9375rem;
    background: none;
    border: none;
}

.landing-nav-mobile:not(.hidden) {
    display: flex;
}

/* Hero */

.landing-hero {
    position: relative;
    z-index: 1;
    padding: 7.5rem 0 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.landing-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}

.landing-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 1rem;
}

.landing-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.landing-gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #fbbf24 55%, #f472b6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.landing-lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #a1a1aa;
    max-width: 34rem;
    margin-bottom: 2rem;
}

.landing-lead strong {
    color: #e4e4e7;
    font-weight: 600;
}

.landing-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.landing-hero-actions .btn {
    width: 100%;
}

.landing-btn-glow {
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.3), 0 8px 32px rgba(59, 130, 246, 0.25);
}

.landing-btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e4e4e7;
}

.landing-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
}

.landing-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    list-style: none;
    font-size: 0.8125rem;
    color: #71717a;
}

.landing-hero-trust li::before {
    content: '✓ ';
    color: #22c55e;
}

.landing-hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.landing-hero-photo-wrap {
    position: relative;
    width: min(100%, 380px);
    aspect-ratio: 1;
}

.landing-hero-photo-glow {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.45), rgba(245, 158, 11, 0.35));
    filter: blur(40px);
    animation: landingGlowPulse 4s ease-in-out infinite alternate;
}

@keyframes landingGlowPulse {
    0% { opacity: 0.6; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1.05); }
}

.landing-hero-photo {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.landing-hero-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(6, 6, 10, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: nowrap;
}

.landing-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    animation: landingDotBlink 2s ease-in-out infinite;
}

@keyframes landingDotBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.landing-hero-quote {
    margin-top: 1.75rem;
    max-width: 22rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #d4d4d8;
    font-style: italic;
}

.landing-hero-quote::before {
    content: '„';
    display: block;
    font-size: 2rem;
    line-height: 1;
    color: #3b82f6;
    font-style: normal;
    margin-bottom: 0.25rem;
}

/* Sections */

.landing-section {
    position: relative;
    z-index: 1;
    padding: 5.5rem 0;
}

.landing-section-alt {
    background: rgba(255, 255, 255, 0.02);
    border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.landing-section-head {
    max-width: 40rem;
    margin-bottom: 3rem;
}

.landing-section-head h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.landing-section-head p {
    color: #a1a1aa;
    line-height: 1.7;
}

.landing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.landing-feature-card {
    padding: 1.75rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.landing-feature-card:hover {
    border-color: rgba(59, 130, 246, 0.35);
    transform: translateY(-2px);
}

.landing-feature-icon {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.landing-feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.landing-feature-card p {
    font-size: 0.9375rem;
    color: #a1a1aa;
    line-height: 1.65;
}

/* References */

.landing-references-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.landing-reference-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.landing-reference-card:hover {
    border-color: rgba(59, 130, 246, 0.35);
    transform: translateY(-2px);
}

.landing-reference-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.landing-reference-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.landing-reference-card:hover .landing-reference-thumb {
    transform: scale(1.04);
}

.landing-reference-thumb-fallback {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(139, 92, 246, 0.12));
}

.landing-reference-thumb-fallback span {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #c4b5fd;
}

.landing-reference-body {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1rem 1.1rem 1.15rem;
    flex: 1;
}

.landing-reference-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.landing-reference-meta {
    margin: 0;
    font-size: 0.8125rem;
    color: #a1a1aa;
    line-height: 1.45;
}

.landing-reference-btn {
    margin-top: auto;
    width: fit-content;
    padding: 0.5rem 0.9rem;
    font-size: 0.8125rem;
}

@media (max-width: 900px) {
    .landing-references-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .landing-references-grid {
        grid-template-columns: 1fr;
    }
}

/* Steps */

.landing-steps {
    list-style: none;
    display: grid;
    gap: 1rem;
    counter-reset: step;
}

.landing-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: 1.5rem 1.75rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-step-num {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.15));
    border: 1px solid rgba(59, 130, 246, 0.3);
    font-weight: 700;
    font-size: 0.9375rem;
    color: #93c5fd;
}

.landing-step h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.landing-step p {
    font-size: 0.9375rem;
    color: #a1a1aa;
    line-height: 1.6;
}

/* Lina */

.landing-lina-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
    align-items: center;
}

.landing-lina-photo {
    display: flex;
    justify-content: center;
}

.landing-lina-photo-frame {
    width: min(380px, 100%);
    aspect-ratio: 3 / 4;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.landing-lina-photo-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.landing-lina-copy h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.landing-lina-copy p {
    color: #a1a1aa;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.landing-lina-copy strong {
    color: #e4e4e7;
}

.landing-lina-list {
    list-style: none;
    margin-top: 1.5rem;
}

.landing-lina-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.65rem;
    color: #d4d4d8;
    font-size: 0.9375rem;
}

.landing-lina-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fbbf24;
}

/* Pricing */

.landing-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.landing-pricing-card {
    flex: 1 1 240px;
    max-width: 320px;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.landing-pricing-main {
    border-color: rgba(59, 130, 246, 0.35);
    background: linear-gradient(160deg, rgba(59, 130, 246, 0.1), rgba(255, 255, 255, 0.02));
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.12);
}

.landing-pricing-label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #71717a;
    margin-bottom: 0.5rem;
}

.landing-pricing-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.landing-pricing-amount span {
    font-size: 1.125rem;
    font-weight: 600;
    color: #a1a1aa;
}

.landing-pricing-note {
    font-size: 0.875rem;
    color: #a1a1aa;
    line-height: 1.5;
}

.landing-pricing-plus {
    font-size: 1.5rem;
    font-weight: 300;
    color: #52525b;
}

.landing-pricing-disclaimer {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
    font-size: 0.875rem;
    color: #71717a;
    line-height: 1.65;
}

.landing-pricing-disclaimer strong {
    color: #a1a1aa;
}

/* CTA */

.landing-cta {
    position: relative;
    z-index: 1;
    padding: 4rem 0 5rem;
}

.landing-cta-inner {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.landing-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.landing-cta p {
    color: #a1a1aa;
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Footer */

.landing-footer {
    position: relative;
    z-index: 1;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.landing-footer strong {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 0.2rem;
}

.landing-footer p {
    font-size: 0.8125rem;
    color: #71717a;
}

.landing-footer-copy {
    color: #52525b !important;
}

/* Login panel */

.landing-login-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.landing-login-overlay.is-visible {
    opacity: 1;
}

.landing-login-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 201;
    width: min(100%, 400px);
    height: 100%;
    background: #111116;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.landing-login-panel.is-visible {
    transform: translateX(0);
}

.landing-login-panel-inner {
    padding: 4.5rem 3.25rem 2.5rem 2rem;
}

.landing-login-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #a1a1aa;
    font-size: 1.5rem;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease;
}

.landing-login-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.landing-login-header {
    margin-bottom: 2rem;
}

.landing-login-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.landing-login-header p {
    font-size: 0.875rem;
    color: #71717a;
}

.landing-login-error {
    margin-bottom: 1rem;
}

.landing-login-submit {
    width: 100%;
}

.landing-login-form .form-group {
    margin-bottom: 1.25rem;
}

.landing-auth-tabs {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
    padding: 0.25rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-auth-tab {
    flex: 1;
    border: none;
    border-radius: 8px;
    padding: 0.55rem 0.75rem;
    background: transparent;
    color: #a1a1aa;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.landing-auth-tab:hover {
    color: #e4e4e7;
}

.landing-auth-tab.is-active {
    background: rgba(59, 130, 246, 0.2);
    color: #f4f4f5;
}

.landing-auth-panel.hidden {
    display: none;
}

.landing-form-hint {
    margin: 0.4rem 0 0;
    font-size: 0.75rem;
    color: #71717a;
    line-height: 1.4;
}

/* Reveal animation */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .landing-bg-mesh,
    .landing-hero-photo-glow,
    .landing-hero-badge-dot {
        animation: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Responsive */

@media (max-width: 900px) {
    .landing-nav-links,
    .landing-nav-login {
        display: none;
    }

    .landing-lang-select-wrap {
        display: none;
    }

    .landing-nav-mobile .landing-lang-select-wrap {
        display: flex;
        width: 100%;
        margin: 0.25rem 0 0.5rem;
    }

    .landing-nav-mobile .landing-lang-select {
        width: 100%;
    }

    .landing-nav-toggle {
        display: flex;
    }

    .landing-hero-grid,
    .landing-lina-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .landing-hero {
        padding-top: 6.5rem;
        min-height: auto;
    }

    .landing-hero-copy {
        order: 2;
    }

    .landing-hero-visual {
        order: 1;
    }

    .landing-hero-photo-wrap {
        width: min(280px, 80vw);
        margin: 0 auto;
    }

    .landing-features {
        grid-template-columns: 1fr;
    }

    .landing-lina-photo {
        justify-content: center;
    }
}
