:root {
    --green-main: #5fa36a;
    --green-hover: #4a8c57;

    --text-main: #5c5c5c;
    --text-light: #8f8f8f;

    --card-bg: rgba(255,255,255,0.65);
}

/* 🔥 RESET */
body {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    background: url('/assets/Fundal.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

/* 🔥 NAVBAR */
.navbar {
    padding: 25px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.nav-logo {
    height: 110px;
}

/* RIGHT */
.nav-right {
    display: flex;
    gap: 12px;
}

/* 🔥 BUTOANE PREMIUM */
.navbar .nav-btn {
    padding: 9px 20px;
    border-radius: 12px;

    background: var(--green-main);
    color: #fff;

    border: none;
    text-decoration: none;
    font-size: 13px;

    box-shadow: 0 6px 18px rgba(95,163,106,0.25);

    transition: transform 0.15s ease;
}

/* click effect */
.navbar .nav-btn:active {
    transform: scale(0.96);
}

/* 🔥 HERO */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* BOX */
.hero-box {
    text-align: center;
    max-width: 720px;
}

/* BRAND LUX */
.hero-brand {
    font-family: 'Great Vibes', cursive;
    font-size: 42px;
    color: #5fa36a;
    margin-bottom: 10px;
}

/* TITLU */
.hero-title {
    font-size: 42px;
    color: var(--text-main);
    line-height: 1.3;
}

/* SUBTEXT */
.hero-subtext {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 12px;
}

.hero-highlight {
    display: block;
    margin-top: 6px;
    color: #5fa36a;
    font-weight: 600;
    font-size: 19px;
}

/* 🔥 CTA */
.cta-btn {
    margin-top: 28px;
    display: inline-block;

    background: var(--green-main);
    color: white;

    padding: 18px 42px;
    border-radius: 16px;

    font-weight: bold;
    font-size: 16px;

    text-decoration: none;

    box-shadow: 0 10px 30px rgba(95,163,106,0.35);

    transition: transform 0.2s ease;
}

/* click effect */
.cta-btn:active {
    transform: scale(0.97);
}

/* 🔥 TRUST */
.trust {
    margin-top: 14px;
    font-size: 14px;
    color: var(--text-light);
}

/* 🔥 HOW */
.how {
    margin-top: -60px;
    display: flex;
    justify-content: center;
}

.how-steps {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    width: 150px;
    text-align: center;
}

/* ICON */
.step-icon {
    width: 60px;
    height: 60px;

    border-radius: 50%;
    background: var(--card-bg);

    display: flex;
    align-items: center;
    justify-content: center;

    margin: auto;
    margin-bottom: 10px;

    backdrop-filter: blur(6px);
}

/* TEXT */
.step-text {
    font-size: 14px;
    color: var(--text-main);
}

/* 🔥 CATEGORIES */
.categories {
    text-align: center;
    margin-top: 70px;
}

.categories h2 {
    font-size: 30px;
    color: var(--text-main);
}

/* GRID */
.cat-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 25px;
}

/* CARD */
.cat-card {
    background: var(--card-bg);
    padding: 14px 22px;
    border-radius: 14px;

    text-decoration: none;
    color: var(--text-main);

    backdrop-filter: blur(8px);

    transition: transform 0.2s ease;
}

/* hover subtil */
.cat-card:hover {
    transform: translateY(-4px);
}

/* 🔥 FOOTER */
.footer {
    margin-top: 100px;
    padding: 60px 40px;
    text-align: center;
}

.footer-grid {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-size: 18px;
    color: var(--text-main);
}

.footer-col a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 14px;
}

.footer-bottom {
    font-size: 13px;
    color: #9a9a9a;
}

/* 🔥 FIX ARTEFACTE */
*::before,
*::after {
    content: none !important;
}