        /* --- RESET & LAYOUT --- */
        html, body {
            height: 100%;
        }

        body {
            margin: 0;
            display: flex;
            flex-direction: column;
            background: #1f2f5c;
            color: #ffffff;
        }

        main {
            flex: 1;
        }

        /* --- HERO --- */
        .hero {
            padding-top: 6rem;
            padding-bottom: 4rem;
        }

        .hero h1 {
            font-size: 3.25rem;
            font-weight: 500;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        .hero-accent {
            font-weight: 400;
        }

        .hero p {
            font-size: 1.05rem;
            line-height: 1.6;
            color: #c7d2fe;
            max-width: 460px;
        }

        /* --- CARD --- */
        .secret-card {
            background: #ffffff;
            color: #0f172a;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.25);
        }

        textarea {
            resize: none;
        }

        .counter {
            font-size: 0.75rem;
            color: #6b7280;
        }

        /* --- BUTTONS (Bootstrap override) --- */
        .btn {
            border-radius: 6px !important;
            padding: 0.55rem 0.9rem;
            font-size: 0.9rem;
            font-weight: 500;
            box-shadow: none !important;
        }

        .btn-primary {
            background-color: #2563eb;
            border-color: #2563eb;
        }

        .btn-primary:hover,
        .btn-primary:focus {
            background-color: #1e4fd8;
            border-color: #1e4fd8;
        }

        .btn:focus {
            outline: none;
            box-shadow: none;
        }
		
		/* --- TOP NAV --- */
.top-nav {
    padding-top: 1.25rem;
}

.nav-links {
    display: flex;
    justify-content: center; /* <-- detta centrerar */
    align-items: center;
    gap: 1.25rem;
    font-size: 0.9rem;
}


.nav-links a {
    color: #c7d2fe;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.15s ease;
}

.nav-links a:hover {
    opacity: 1;
    text-decoration: none;
}

.nav-separator {
    color: #64748b;
    opacity: 0.6;
}


/* --- WHY ONE-TIME SHARE --- */
.why-once {
    padding: 5rem 0;
    background: transparent;
}

.why-once h2 {
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* Card */
.why-card {
    height: 100%;
    background: rgba(255,255,255,0.06);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    transition: transform .2s ease, box-shadow .2s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}

/* Icon */
.why-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(250, 204, 21, 0.15);
    color: #facc15;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

/* Text */
.why-card h5 {
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #c7d2fe;
    margin: 0;
}



/* --- FOOTER --- */
.site-footer {
    margin-top: auto;
    padding: 1.5rem 0;
    background: #0b1220;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #cbd5e1;
    font-size: 0.85rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
}

.footer-left {
    text-align: left;
}

.footer-center {
    text-align: center;
    opacity: 0.9;
}

.footer-right {
    text-align: right;
}

.footer-right a {
    color: #c7d2fe;
    text-decoration: none;
    opacity: 0.85;
}

.footer-right a:hover {
    opacity: 1;
}

.footer-muted {
    opacity: 0.7;
}

.sep {
    margin: 0 0.35rem;
    opacity: 0.4;
}


        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .hero {
                padding-top: 4rem;
            }

            .hero h1 {
                font-size: 2.25rem;
            }
   .top-nav {
        padding-top: 0.75rem;
    }

    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        font-size: 0.85rem;
    }

.why-once {
        padding: 3.5rem 0;
    }

    .why-once h2 {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }

    .why-card {
        padding: 1.5rem;
        border-radius: 0.85rem;
    }

    .why-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .why-card h5 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .why-card p {
        font-size: 0.9rem;
        line-height: 1.55;
    }

.footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        text-align: center;
    }

        }
