:root {
    --bg: #fff7f3;
    --card: #ffffff;
    --text: #261917;
    --muted: #6b5954;
    --coral: #dc7b68;
    --coral-soft: #ffe4dd;
    --line: #efd5cc;
    --dark: #2b1d19;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top right, #ffe9e1 0, #fff7f3 34%, #fffaf7 100%);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

/* HEADER */

.header {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(255, 247, 243, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(239, 213, 204, 0.6);
}

.nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.nav nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
}

.nav nav a.active {
    color: var(--coral);
    border-bottom: 2px solid var(--coral);
    padding-bottom: 8px;
}

.btn-nav {
    background: var(--dark);
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
}

/* HERO */

.hero {
    padding: 78px 0 86px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 64px;
    align-items: start;
}

.hero-left {
    padding-top: 22px;
    min-height: 720px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.subtitle,
.small-subtitle {
    display: block;
    color: var(--coral);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-left h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(54px, 6vw, 82px);
    line-height: 0.95;
    letter-spacing: -2px;
    margin: 0 0 28px;
}

.hero-subtitle {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    color: #c98d80;
    margin: 0 0 30px;
}

.hero-left p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--muted);
    margin: 0 0 24px;
}

.hero-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 34px 0;
}

.hero-benefits div {
    background: rgba(255,255,255,0.65);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 15px 17px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.hero-benefits div::before {
    content: "✓";
    color: var(--coral);
    font-weight: 900;
    margin-right: 8px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
}

.btn-primary {
    background: var(--dark);
    color: #fff;
}

.btn-outline {
    border: 2px solid var(--dark);
    color: var(--dark);
}

/* HERO CARD */

.hero-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 34px;
    padding: 34px;
    min-height: 720px;
    box-shadow: 0 28px 70px rgba(92, 54, 43, 0.08);
}

.hero-card-line {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.hero-card-line span {
    height: 1px;
    flex: 1;
    background: var(--line);
}

.hero-card-line strong {
    color: #c98d80;
    font-size: 13px;
    letter-spacing: 0.8px;
}

.about-image {
    max-width: 92%;
    margin: 0 auto 30px;
}

.about-image img {
    border-radius: 28px;
    max-height: 520px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-card h3 {
    font-family: "Inter", sans-serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 0.92;
    margin: 24px 0 24px;
    letter-spacing: -2px;
}

.hero-card h3 span {
    color: #c7a097;
}

.hero-card p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--muted);
}

.read-more-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--text);
    font-weight: 800;
    text-decoration: none;
}

.pink-signature {
    font-family: "Oooh Baby", cursive;
    font-size: 44px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.05;
    color: #dca398;
    margin-top: 18px;
}

/* VALUE SECTION - FĂRĂ COLAJ */

.value-section {
    padding: 90px 0;
    background: #fffaf7;
}

.value-grid {
    display: block;
}

.value-collage {
    display: none;
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.value-card {
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 42px;
    box-shadow: 0 18px 50px rgba(92,54,43,0.05);
}

.value-card.soft-pink {
    background: #fff6f2;
}

.value-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: var(--coral-soft);
    color: var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 34px;
}

.value-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    line-height: 1.12;
    margin: 0 0 22px;
}

.value-card p,
.value-card li {
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
}

.value-card ul {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.value-card li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
}

.value-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: 900;
}

/* PROGRAMS HOME */

.programs {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 48px;
}

.section-title h2 {
    font-family: "Playfair Display", serif;
    font-size: 56px;
    line-height: 1.05;
    margin: 0 0 18px;
}

.section-title p {
    font-size: 18px;
    line-height: 1.65;
    color: var(--muted);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(92,54,43,0.05);
    display: flex;
    flex-direction: column;
}

.card-image {
    height: 390px;
    background: #efd0ca;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.card-content {
    padding: 34px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    line-height: 1.1;
    margin: 0 0 14px;
}

.card-content p,
.card-content li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
}

.card-content ul {
    padding-left: 18px;
    margin-bottom: 24px;
}

.card-btn {
    margin-top: auto;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    background: var(--coral);
    color: white;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
}

/* BLOG */

.blog-section {
    padding: 90px 0;
    background: #fffaf7;
}

.blog-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 46px;
}

.blog-header span {
    color: var(--coral);
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 13px;
}

.blog-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 56px;
    margin: 12px 0 16px;
}

.blog-header p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.blog-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 30px 22px;
    text-align: center;
    text-decoration: none;
    color: var(--text);
}

.blog-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--coral-soft);
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.blog-card h3 {
    font-size: 22px;
    margin: 0 0 14px;
}

.blog-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.blog-card span {
    color: var(--coral);
    font-weight: 800;
}

/* TESTIMONIALS */

.testimonials {
    padding: 90px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.testimonial-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 34px;
}

.stars {
    color: var(--coral);
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
}

.testimonial-card strong {
    display: block;
    margin-top: 18px;
}

/* FOOTER */

.site-footer {
    background: var(--dark);
    color: white;
    padding: 70px 0 24px;
}

.footer-container {
    width: min(1180px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 34px;
}

.footer-col h3 {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    margin: 0 0 18px;
}

.footer-col h4 {
    margin: 0 0 18px;
}

.footer-col p,
.footer-col li,
.footer-col a {
    color: #f8ddd6;
    font-size: 15px;
    line-height: 1.75;
    text-decoration: none;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-socials {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-btn {
    display: inline-flex;
    margin-top: 18px;
    background: var(--coral);
    color: white !important;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 800;
}

.footer-bottom {
    width: min(1180px, 92%);
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

/* MOBILE */

@media (max-width: 980px) {
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
    }

    .btn-nav {
        display: none;
    }

    .hero-grid,
    .value-cards,
    .cards,
    .testimonial-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .hero-left,
    .hero-card {
        min-height: auto;
    }

    .hero-left {
        padding-top: 0;
    }

    .hero {
        padding: 50px 0 70px;
    }

    .hero-left h1 {
        font-size: 52px;
    }

    .hero-subtitle {
        font-size: 30px;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .section-title h2,
    .blog-header h2 {
        font-size: 42px;
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .logo {
        font-size: 28px;
    }

    .nav nav a {
        font-size: 14px;
    }

    .hero-left h1 {
        font-size: 44px;
    }

    .hero-card,
    .value-card,
    .card-content,
    .testimonial-card {
        padding: 26px;
    }

    .hero-card h3 {
        font-size: 44px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .card-image {
        height: 340px;
    }

    .pink-signature {
        font-size: 36px;
    }
}
/* CITESTE MAI MULT */

.read-more-link {
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    margin-top: 6px !important;
    display: inline-block;
}

/* SUNT AICI PENTRU TINE */

.pink-signature {
    font-family: "Allura", cursive !important;
    font-size: 34px !important;
    line-height: 0.95 !important;
    font-weight: 400 !important;
    color: #d89f93 !important;
    margin-top: 2px !important;
    letter-spacing: 0 !important;
}
/* SCOATE COMPLET */

.read-more-link {
    display: none !important;
}

/* SUNT AICI PENTRU TINE */

.pink-signature {
    font-family: "Allura", cursive !important;
    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-align: center !important;
    width: 100%;
    display: block;
    color: #d89f93 !important;
    margin-top: 12px !important;
}
/* SECTION INTRO */

.section-intro {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 58px;
}

.section-intro span {
    display: block;
    color: #dc7b68;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-intro h2 {
    font-family: "Playfair Display", serif;
    font-size: 58px;
    line-height: 1.02;
    color: #261917;
    margin: 0 0 16px;
    letter-spacing: -1px;
}

.section-intro p {
    font-size: 20px;
    line-height: 1.55;
    color: #6b5954;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .section-intro {
        margin-bottom: 36px;
    }

    .section-intro h2 {
        font-size: 38px;
    }

    .section-intro p {
        font-size: 17px;
    }
}
.section-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.section-intro span {
    display: inline-block;
    color: #dc7b68;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
    position: relative;
}

.section-intro span::before,
.section-intro span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 70px;
    height: 1px;
    background: #e6b6aa;
}

.section-intro span::before {
    right: calc(100% + 18px);
}

.section-intro span::after {
    left: calc(100% + 18px);
}

.section-intro h2 {
    font-family: "Playfair Display", serif;
    font-size: 62px;
    line-height: 1.02;
    color: #261917;
    margin: 0 0 18px;
    letter-spacing: -1.5px;
}

.section-intro p {
    font-size: 21px;
    line-height: 1.6;
    color: #6d5d57;
    margin: 0 auto;
    max-width: 700px;
}

@media (max-width: 768px) {

    .section-intro {
        margin-bottom: 45px;
    }

    .section-intro h2 {
        font-size: 40px;
    }

    .section-intro p {
        font-size: 17px;
    }

    .section-intro span::before,
    .section-intro span::after {
        width: 40px;
    }
}
.section-intro h2 {
    font-family: "Playfair Display", serif;
    font-size: 62px;
    line-height: 1.02;
    color: #261917;
    margin: 0 0 18px;
    letter-spacing: -1.5px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .section-intro h2 {
        white-space: normal;
    }
}
.section-intro span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    color: #dc7b68;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;

    margin-bottom: 18px;
}

.section-intro span::before,
.section-intro span::after {
    content: "";
    width: 70px;
    height: 1px;
    background: #e7b7ac;
    display: block;
}
.programs {
    padding-bottom: 40px !important;
}

.testimonials {
    padding-top: 40px !important;

}
.section-intro span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 18px !important;

    color: #dc7b68 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;

    margin-bottom: 18px !important;
}

.section-intro span::before,
.section-intro span::after {
    content: "" !important;
    width: 70px !important;
    height: 1px !important;
    background: #e5b5aa !important;
    display: block !important;
}
.decor-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    color: #dc7b68;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;

    margin-bottom: 18px;
}

.decor-label span {
    width: 70px;
    height: 1px;
    background: #e5b5aa;
    display: block;
}
/* =========================================
   PROGRAME PAGE
========================================= */

/* =========================================
   PROGRAME PAGE
========================================= */

.programs-page {
    padding: 90px 0 70px;
}

/* HERO */

.programs-hero {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 70px;
}

.programs-hero .small-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    color: #dc7b68;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;

    margin-bottom: 22px;
}

.programs-hero .small-subtitle::before,
.programs-hero .small-subtitle::after {
    content: "";
    width: 70px;
    height: 1px;
    background: #e5b5aa;
    display: block;
}

.programs-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 72px;
    line-height: 0.98;
    letter-spacing: -2px;
    color: #261917;
    margin: 0 0 24px;
}

.programs-hero p {
    font-size: 20px;
    line-height: 1.8;
    color: #6f5f59;
    margin: 0 auto;
    max-width: 760px;
}

/* GRID */

.programs-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 90px;
}

/* CARD */

.program-offer {
    background: rgba(255,255,255,0.92);
    border: 1px solid #efd5cc;
    border-radius: 34px;
    padding: 34px;
    position: relative;

    display: flex;
    flex-direction: column;

    box-shadow:
        0 10px 30px rgba(92,54,43,0.04),
        0 24px 60px rgba(92,54,43,0.06);

    transition: 0.25s ease;
}

.program-offer:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 40px rgba(92,54,43,0.08),
        0 30px 70px rgba(92,54,43,0.10);
}

/* ICON */

.program-top-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;

    background: #fff0eb;
    color: #dc7b68;

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

    font-size: 26px;
    margin-bottom: 24px;
}

/* BADGE */

.program-badge {
    display: inline-flex;
    align-self: flex-start;

    background: #fff1eb;
    color: #dc7b68;

    padding: 10px 16px;
    border-radius: 999px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;

    margin-bottom: 18px;
}

/* TITLU */

.program-offer h2 {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    line-height: 1.02;
    letter-spacing: -1px;

    color: #261917;
    margin: 0 0 18px;
}

/* TEXT */

.program-offer p {
    font-size: 16px;
    line-height: 1.8;
    color: #6c5c56;

    margin: 0 0 24px;
}

/* LISTA */

.program-offer ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.program-offer li {
    position: relative;
    padding-left: 28px;

    font-size: 15px;
    line-height: 1.75;
    color: #5f514d;

    margin-bottom: 12px;
}

.program-offer li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;

    color: #dc7b68;
    font-weight: 900;
}

/* BOTTOM */

.program-bottom {
    margin-top: auto;
}

/* PRET */

.price-soft,
.price-single-soft {
    background: #fff7f4;
    border: 1px solid #f0d8cf;
    border-radius: 24px;

    padding: 22px;
    margin-bottom: 24px;
}

.price-soft {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.price-normal,
.price-recommended,
.price-single-soft {
    text-align: center;
}

.price-soft span,
.price-single-soft span {
    display: block;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #b67f72;

    margin-bottom: 10px;
}

.price-soft strong,
.price-single-soft strong {
    display: block;

    font-size: 36px;
    line-height: 1;

    color: #261917;

    margin-bottom: 8px;
}

.price-soft small,
.price-single-soft small {
    color: #8d7a74;
    font-size: 14px;
}

/* BUTTON */

.program-btn {
    width: 100%;
    min-height: 56px;

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

    background: #261917;
    color: white;

    border-radius: 18px;

    text-decoration: none;
    font-size: 15px;
    font-weight: 800;

    transition: 0.2s ease;
}

.program-btn:hover {
    background: #dc7b68;
}

/* CHALLENGE TITLE */

.challenge-title-block {
    text-align: center;
    margin: 20px auto 55px;
    max-width: 760px;
}

.challenge-title-block span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    color: #dc7b68;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;

    margin-bottom: 18px;
}

.challenge-title-block span::before,
.challenge-title-block span::after {
    content: "";
    width: 70px;
    height: 1px;
    background: #e5b5aa;
    display: block;
}

.challenge-title-block h2 {
    font-family: "Playfair Display", serif;
    font-size: 58px;
    line-height: 1.02;

    color: #261917;
    margin: 0 0 18px;
}

.challenge-title-block p {
    font-size: 19px;
    line-height: 1.75;
    color: #6f5f59;
}

/* INFO BOXES */

.bottom-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;

    margin-top: 20px;
}

.results-alert-box,
.programs-cta {
    border-radius: 34px;
    padding: 44px;

    position: relative;
    overflow: hidden;
}

.results-alert-box {
    background: linear-gradient(135deg, #d97e6b, #cf6c57);
    color: white;
}

.results-alert-box span {
    display: inline-block;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 18px;
}

.results-alert-box h2 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    line-height: 1;

    margin: 0 0 20px;
}

.results-alert-box p {
    font-size: 17px;
    line-height: 1.8;

    opacity: 0.95;
}

.programs-cta {
    background: #fff;
    border: 1px solid #efd5cc;
}

.programs-cta h2 {
    font-family: "Playfair Display", serif;
    font-size: 46px;
    line-height: 1.02;

    color: #261917;

    margin: 0 0 20px;
}

.programs-cta p {
    font-size: 17px;
    line-height: 1.8;

    color: #6c5c56;

    margin-bottom: 32px;
}

/* MOBILE */

@media (max-width: 980px) {

    .programs-grid-large,
    .bottom-info-grid {
        grid-template-columns: 1fr;
    }

    .programs-hero h1 {
        font-size: 52px;
    }

    .challenge-title-block h2 {
        font-size: 42px;
    }

    .program-offer h2 {
        font-size: 34px;
    }

    .results-alert-box h2,
    .programs-cta h2 {
        font-size: 38px;
    }
}

@media (max-width: 640px) {

    .programs-page {
        padding: 60px 0;
    }

    .program-offer {
        padding: 28px;
    }

    .programs-hero h1 {
        font-size: 42px;
    }

    .challenge-title-block h2 {
        font-size: 34px;
    }

    .price-soft {
        grid-template-columns: 1fr;
    }

    .results-alert-box,
    .programs-cta {
        padding: 30px;
    }
}

/* FIX HERO ALIGN LEFT WITH RIGHT CARD */

.hero-grid {
    align-items: start;
}

.hero-left {
    padding-top: 42px;
}

/* SIGNATURE - SCRIS DE MANA FINUT */

.pink-signature {
    font-family: "Oooh Baby", cursive !important;
    font-size: 44px !important;
    font-weight: 400 !important;
    line-height: 1.1 !important;
    color: #dca398 !important;
    letter-spacing: 0.5px !important;
    margin-top: 22px !important;
}

/* PROGRAM CARDS - POZE INTEGRATE FRUMOS */

.card {
    background: #fffaf7;
    overflow: hidden;
}

.card-image {
    height: 390px;
    background: #efd0ca !important;
    border-radius: 28px 28px 0 0;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 0 !important;
}

/* ca textul sa nu urce peste poza */

.card-content {
    background: #fff;
    padding: 34px !important;
}
/* ===== AJUSTARI PROGRAME - BADGE LANGA ICON, CULORI, PRETURI MICI ===== */

/* icon + badge pe acelasi rand */
.program-offer {
    position: relative;
}

.program-offer .program-top-icon {
    display: inline-flex !important;
    width: 58px !important;
    height: 58px !important;
    border-radius: 50% !important;
    margin: 0 12px 24px 0 !important;
    vertical-align: middle !important;
}

.program-offer .program-badge {
    display: inline-flex !important;
    align-items: center !important;
    vertical-align: middle !important;
    min-height: 30px !important;
    padding: 8px 15px !important;
    border-radius: 999px !important;
    margin: 0 0 24px 0 !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
}

/* culori pe card + icon + badge + buton */
.program-transformare {
    background: linear-gradient(180deg, #fff7f6, #fff0ed) !important;
    border-color: #f0c4bb !important;
}

.program-transformare .program-top-icon,
.program-transformare .program-badge,
.program-transformare .program-btn {
    background: #e66d58 !important;
    color: #fff !important;
}

.programs-grid-large > .program-offer:nth-child(2) {
    background: linear-gradient(180deg, #fffaf2, #fff1de) !important;
    border-color: #efcf9f !important;
}

.programs-grid-large > .program-offer:nth-child(2) .program-top-icon,
.programs-grid-large > .program-offer:nth-child(2) .program-badge,
.programs-grid-large > .program-offer:nth-child(2) .program-btn {
    background: #ef9a3f !important;
    color: #fff !important;
}

.programs-grid-large > .program-offer:nth-child(3) {
    background: linear-gradient(180deg, #fff7f8, #fff0f3) !important;
    border-color: #efbdc8 !important;
}

.programs-grid-large > .program-offer:nth-child(3) .program-top-icon,
.programs-grid-large > .program-offer:nth-child(3) .program-badge,
.programs-grid-large > .program-offer:nth-child(3) .program-btn {
    background: #df5f78 !important;
    color: #fff !important;
}

.program-nutritie {
    background: linear-gradient(180deg, #fbfff7, #f0f6e4) !important;
    border-color: #d5dfb8 !important;
}

.program-nutritie .program-top-icon,
.program-nutritie .program-badge,
.program-nutritie .program-btn {
    background: #7fa148 !important;
    color: #fff !important;
}

.program-antrenament {
    background: linear-gradient(180deg, #f8fdff, #e9f5fb) !important;
    border-color: #bddbe8 !important;
}

.program-antrenament .program-top-icon,
.program-antrenament .program-badge,
.program-antrenament .program-btn {
    background: #4384a4 !important;
    color: #fff !important;
}

.program-concurs {
    background: linear-gradient(180deg, #fff9ff, #f7eef9) !important;
    border-color: #dcc0e5 !important;
}

.program-concurs .program-top-icon,
.program-concurs .program-badge,
.program-concurs .program-btn {
    background: #8d5ba0 !important;
    color: #fff !important;
}

/* preturi mai mici, sa nu iasa */
.price-soft {
    gap: 10px !important;
}

.price-normal,
.price-recommended,
.price-single-soft {
    padding: 14px 8px !important;
    border-radius: 16px !important;
}

.price-soft span,
.price-single-soft span {
    font-size: 9.5px !important;
    letter-spacing: 1px !important;
    margin-bottom: 7px !important;
}

.price-soft strong,
.price-single-soft strong {
    font-size: 20px !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
    margin-bottom: 5px !important;
}

.price-soft small,
.price-single-soft small {
    font-size: 11.5px !important;
}

/* pret recomandat diferentiat */
.price-recommended {
    background: linear-gradient(135deg, #ffe0d8, #ffc6ba) !important;
    border-color: #eb9f91 !important;
    box-shadow: 0 8px 20px rgba(223, 112, 89, 0.16) !important;
}

.price-recommended::after {
    content: "★";
    position: absolute;
    top: -9px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e66d58;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-recommended {
    position: relative;
}

/* challenge-uri FARA icon si FARA badge */
.challenge-grid .program-top-icon,
.challenge-grid .program-badge {
    display: none !important;
}

.challenge-grid .program-offer {
    padding-top: 34px !important;
}

.challenge-grid .program-offer h2 {
    margin-top: 0 !important;
}

.challenge-grid .program-btn {
    background: #e66d58 !important;
}

/* butoane putin mai fine */
.program-btn {
    min-height: 48px !important;
    font-size: 14px !important;
    border-radius: 14px !important;
}
/* =========================================
   DESPRE MINE PAGE - ROADMAP
========================================= */

.about-roadmap-page {
    padding: 82px 0 80px;
}

/* HERO */

.about-hero-title {
    max-width: 920px;
    margin: 0 auto 72px;
    text-align: center;
}

.about-hero-title .small-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    color: #dc7b68;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;

    margin-bottom: 22px;
}

.about-hero-title .small-subtitle::before,
.about-hero-title .small-subtitle::after {
    content: "";
    width: 70px;
    height: 1px;
    background: #e5b5aa;
    display: block;
}

.about-hero-title h1 {
    font-family: "Playfair Display", serif;
    font-size: 72px;
    line-height: 0.98;
    letter-spacing: -2px;
    color: #261917;
    margin: 0 0 24px;
}

.about-hero-title p {
    font-size: 20px;
    line-height: 1.75;
    color: #6d5b55;
    max-width: 760px;
    margin: 0 auto;
}

/* ROADMAP */

.roadmap.no-photos {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 10px 0 20px;
}

.roadmap.no-photos::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;

    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent,
        #e8b8ad 8%,
        #e8b8ad 92%,
        transparent
    );

    transform: translateX(-50%);
}

/* ITEM */

.road-item-simple {
    position: relative;
    width: calc(50% - 54px);

    background: rgba(255,255,255,0.9);
    border: 1px solid #efd2c8;
    border-radius: 32px;

    padding: 34px;

    box-shadow:
        0 14px 34px rgba(92,54,43,0.05);

    margin-bottom: 34px;
}

.road-item-simple:nth-child(odd) {
    margin-right: auto;
}

.road-item-simple:nth-child(even) {
    margin-left: auto;
}

/* DOT */

.road-item-simple::before {
    content: "♡";
    position: absolute;
    top: 34px;

    width: 48px;
    height: 48px;
    border-radius: 50%;

    background: #dc7b68;
    color: white;

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

    font-size: 18px;
    font-weight: 800;

    box-shadow: 0 12px 28px rgba(220,123,104,0.25);
}

.road-item-simple:nth-child(odd)::before {
    right: -79px;
}

.road-item-simple:nth-child(even)::before {
    left: -79px;
}

/* CONNECTOR */

.road-item-simple::after {
    content: "";
    position: absolute;
    top: 58px;

    width: 54px;
    height: 1px;
    background: #e8b8ad;
}

.road-item-simple:nth-child(odd)::after {
    right: -54px;
}

.road-item-simple:nth-child(even)::after {
    left: -54px;
}

/* TEXT */

.road-item-simple span {
    display: inline-block;

    color: #dc7b68;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 14px;
}

.road-item-simple h2 {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    line-height: 1.05;
    letter-spacing: -1px;

    color: #261917;

    margin: 0 0 16px;
}

.road-item-simple p {
    font-size: 16px;
    line-height: 1.78;
    color: #6d5b55;

    margin: 0;
}

/* FINAL BOX */

.about-final-box {
    max-width: 900px;
    margin: 70px auto 0;
    padding: 52px;

    text-align: center;

    background: linear-gradient(135deg, #fffafa, #fff0eb);
    border: 1px solid #efd2c8;
    border-radius: 36px;

    box-shadow:
        0 18px 44px rgba(92,54,43,0.06);
}

.about-final-box .small-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    color: #dc7b68;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;

    margin-bottom: 22px;
}

.about-final-box .small-subtitle::before,
.about-final-box .small-subtitle::after {
    content: "";
    width: 62px;
    height: 1px;
    background: #e5b5aa;
    display: block;
}

.about-final-box h2 {
    font-family: "Playfair Display", serif;
    font-size: 54px;
    line-height: 1;
    letter-spacing: -1.5px;

    color: #261917;

    margin: 0 0 22px;
}

.about-final-box p {
    font-size: 18px;
    line-height: 1.8;
    color: #6d5b55;

    max-width: 700px;
    margin: 0 auto 32px;
}

.about-final-box .btn-primary {
    width: auto;
    min-width: 230px;
    padding: 0 32px;
}

/* MOBILE */

@media (max-width: 900px) {

    .about-hero-title h1 {
        font-size: 52px;
    }

    .roadmap.no-photos {
        max-width: 100%;
        padding-left: 34px;
    }

    .roadmap.no-photos::before {
        left: 12px;
        transform: none;
    }

    .road-item-simple,
    .road-item-simple:nth-child(odd),
    .road-item-simple:nth-child(even) {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .road-item-simple::before,
    .road-item-simple:nth-child(odd)::before,
    .road-item-simple:nth-child(even)::before {
        left: -47px;
        right: auto;
    }

    .road-item-simple::after,
    .road-item-simple:nth-child(odd)::after,
    .road-item-simple:nth-child(even)::after {
        left: -34px;
        right: auto;
        width: 34px;
    }
}

@media (max-width: 640px) {

    .about-roadmap-page {
        padding: 54px 0 60px;
    }

    .about-hero-title {
        margin-bottom: 46px;
    }

    .about-hero-title h1 {
        font-size: 40px;
    }

    .about-hero-title p {
        font-size: 16px;
    }

    .road-item-simple {
        padding: 26px;
        border-radius: 26px;
    }

    .road-item-simple h2 {
        font-size: 30px;
    }

    .road-item-simple p {
        font-size: 15px;
    }

    .about-final-box {
        padding: 34px 26px;
        border-radius: 30px;
    }

    .about-final-box h2 {
        font-size: 36px;
    }

    .about-final-box p {
        font-size: 16px;
    }
}
.about-final-box p {
    max-width: 760px;
    margin: 0 auto 18px;
}

.about-final-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 32px;
    border-radius: 999px;
    border: 1px solid #e07b67;
    color: #2b1713;
    background: transparent;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-secondary:hover {
    background: #e07b67;
    color: #fff;
}

@media (max-width: 768px) {
    .about-final-actions {
        flex-direction: column;
    }

    .about-final-actions a {
        width: 100%;
        max-width: 320px;
    }
}
.program-card {
    position: relative;
}

.program-card .program-badge,
.program-card .badge {
    position: absolute;
    top: 42px;
    left: 88px;
    margin: 0;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}
.program-card {
    position: relative;
}

.program-icon {
    position: relative;
    z-index: 2;
}

.program-badge {
    position: absolute;
    top: 50px;
    left: 95px;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    padding: 8px 16px;
    border-radius: 999px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;

    margin: 0 !important;
    white-space: nowrap;

    z-index: 3;
}
/* =========================
   HEADER NAV FIX
========================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav > a,
.nav-main-link {
    text-decoration: none;
    color: #241612;
    font-weight: 700;
    font-size: 17px;
    position: relative;
}


/* =========================
   BLOG DROPDOWN
========================= */

.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);

    width: 270px;

    background: #fffdfb;
    border: 1px solid #f0d4cc;
    border-radius: 20px;

    padding: 14px;

    display: flex;
    flex-direction: column;
    gap: 4px;

    opacity: 0;
    visibility: hidden;

    transition: all 0.22s ease;

    box-shadow: 0 20px 50px rgba(70, 40, 30, 0.08);

    z-index: 9999;
}

.nav-dropdown-menu a {
    text-decoration: none;
    color: #241612;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
}

.nav-dropdown-menu a:hover {
    background: #fff1ec;
    color: #df7c6b;
}

.nav-item-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
/* Homepage Hero */

.home-hero .hero-left h1 {
    font-size: clamp(40px, 4vw, 64px);
    line-height: 1.05;
    letter-spacing: -1px;
    max-width: 700px;
    margin-bottom: 20px;
}

.home-hero .hero-subtitle {
    font-size: clamp(20px, 2vw, 30px);
    line-height: 1.3;
    color: #c89286;
    font-weight: 500;
    margin-bottom: 18px;
}

.home-hero .hero-description {
    font-size: 18px;
    color: #6d5a56;
    margin: 0;
}

@media (max-width: 768px) {

    .home-hero .hero-left h1 {
        font-size: 42px;
        line-height: 1.1;
        letter-spacing: -0.5px;
    }

    .home-hero .hero-subtitle {
        font-size: 22px;
    }

    .home-hero .hero-description {
        font-size: 16px;
    }

}
/* Homepage Hero - ajustare titlu */

.home-hero .hero-left {
    text-align: center;
    max-width: 780px;
}

.home-hero .subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 28px;
}

.home-hero .subtitle::before,
.home-hero .subtitle::after {
    content: "";
    width: 42px;
    height: 1px;
    background: #d79a8d;
    display: inline-block;
}

.home-hero .hero-left h1 {
    font-size: clamp(50px, 5.6vw, 86px);
    line-height: 0.96;
    letter-spacing: -1.8px;
    max-width: 820px;
    margin: 0 auto 24px;
}

.home-hero .hero-subtitle {
    font-size: clamp(24px, 2.4vw, 36px);
    line-height: 1.25;
    color: #c89286;
    font-weight: 600;
    max-width: 720px;
    margin: 0 auto 18px;
}

.home-hero .hero-description {
    font-size: 18px;
    color: #6d5a56;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .home-hero .hero-left {
        text-align: center;
    }

    .home-hero .subtitle {
        font-size: 11px;
        letter-spacing: 2px;
        gap: 8px;
    }

    .home-hero .subtitle::before,
    .home-hero .subtitle::after {
        width: 24px;
    }

    .home-hero .hero-left h1 {
        font-size: 46px;
        line-height: 1;
        letter-spacing: -1px;
    }

    .home-hero .hero-subtitle {
        font-size: 24px;
    }
}
.about-roadmap-page .about-hero-subtitle {
    color: #d88c7d !important;
    font-size: 18px !important;
    line-height: 1.8;
    max-width: 850px;
    margin: 18px auto 0;
    text-align: center;
    font-weight: 400;
}
.afm-header-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.afm-header-mark {
    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    color: #2b1b19;
    letter-spacing: -2px;
}

.afm-header-mark span {
    color: #c98289;
}

.afm-header-name {
    margin-top: -3px;
    font-family: 'Allura', cursive;
    font-size: 32px;
    color: #2b1b19;
}

.afm-header-name span {
    color: #c98289;
}
.pink-signature {
    text-align: center;
    margin-top: 45px;
}

.pink-motto {
    font-family: 'Allura', cursive;
    font-size: 42px;
    line-height: 1.1;
    color: #d3a198;
}

.pink-heart {
    font-size: 22px;
}

.pink-signoff p {
    margin: 0;
    font-size: 15px;
    color: #6e5953;
}

.pink-signoff span {
    display: block;
    margin-top: 5px;
    font-family: 'Allura', cursive;
    font-size: 42px;
    line-height: 1;
    color: #d3a198;
}
.logo-link {
    text-decoration: none;
}

.afm-header-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.afm-header-mark {
    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    color: #2b1b19;
    letter-spacing: -2px;
}

.afm-header-mark span {
    color: #c98289;
}

.afm-header-name {
    margin-top: -4px;
    font-family: 'Allura', cursive;
    font-size: 32px;
    color: #2b1b19;
}

.afm-header-name span {
    color: #c98289;
}
.newsletter-wide-block {
    padding: 55px 20px 90px;
    background: #fff8f4;
}

.newsletter-wide-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 42px;
    border: 1px solid #efc7bd;
    border-radius: 30px;
    background: #fffdfb;
    box-shadow: 0 18px 45px rgba(70, 40, 30, 0.06);

    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 38px;
    align-items: center;
}

.newsletter-small-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #df7c6b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.newsletter-wide-text h2 {
    max-width: 540px;
    margin: 0 0 18px;
    font-family: Georgia, serif;
    color: #241612;
    font-size: 48px;
    line-height: 1.02;
    letter-spacing: -1.5px;
}

.newsletter-wide-text p {
    max-width: 600px;
    margin: 0 0 24px;
    color: #6f5a52;
    font-size: 18px;
    line-height: 1.7;
}

.newsletter-wide-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.newsletter-wide-benefits span {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 999px;
    background: #fff1ed;
    color: #7a5149;
    font-size: 14px;
    font-weight: 700;
}

.newsletter-wide-form .afm-newsletter-wrap,
.newsletter-wide-form .sib-form {
    padding: 0 !important;
    background: transparent !important;
}


@media (max-width: 980px) {
    .newsletter-wide-inner {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .newsletter-wide-text h2 {
        font-size: 36px;
    }
}
.newsletter-wide-form {
    min-height: 260px;
}

.newsletter-wide-form .afm-newsletter-wrap,
.newsletter-wide-form .sib-form {
    display: block !important;
    padding: 0 !important;
    background: transparent !important;
}

.newsletter-wide-form #sib-form-container,
.newsletter-wide-form #sib-container,
.newsletter-wide-form form {
    display: block !important;
}

.newsletter-wide-form #sib-container {
    max-width: 100% !important;
}
.newsletter-title{
    max-width:1200px;
    margin:80px auto 30px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    text-align:center;
}

.newsletter-title span{
    flex:0 0 70px;
    height:1px;
    background:#e7a08d;
}

.newsletter-title h3{
    margin:0;
    color:#d97d66;
    font-size:18px;
    letter-spacing:4px;
    text-transform:uppercase;
    font-weight:700;
    white-space:nowrap;
}
