body {
    margin: 0;
    font-family: 'Patrick Hand', cursive;
    background: url('/assets/fundal.png') no-repeat center center;
    background-size: cover;
}

/* ===== HERO ===== */

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* ===== HERO BOX (DOAR HOMEPAGE) ===== */

.hero-box.home {
    width: 100%;
    max-width: 320px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center; /* 🔥 doar homepage */

    text-align: center;
    gap: 18px;

    padding: 20px 0;
}

/* ===== TEXT ===== */

.hero-top {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;

    font-size: 17px;
    color: #7a7a7a;

    white-space: nowrap;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 700;

    font-size: 30px;
    color: #8a8a8a;

    line-height: 1.4;
}

.hero-steps {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;

    font-size: 16px;
    color: #9a9a9a;
}

.hero-subtext {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 700;

    font-size: 28px;
    color: #8a8a8a;
}

.hero-trust {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;

    font-size: 15px;
    color: #9a9a9a;
}

/* ===== BUTTON GROUP ===== */

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
}

/* ===== LOGO ===== */

.hero-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    height: 110px;
    opacity: 0.95;
}