/* ==========================================================================
   STIGMOVA MEMORIES — DEDICATED ROBUST STYLESHEET
   Garantează afișarea impecabilă, independent de compilarea Tailwind CSS.
   ========================================================================== */

/* --- ROOT COLORS & TYPOGRAPHY --- */
:root {
    --stm-font-sans: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --stm-font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --stm-gold: #C49A6C;
    --stm-gold-light: #DFBF99;
    --stm-gold-dark: #9A7432;
    --stm-dark: #111827;
    --stm-dark-card: #1F2937;
    --stm-gray-bg: #F9FAFB;
    --stm-gray-border: #E5E7EB;
    --stm-gray-text: #4B5563;
}

/* Global Font Consistency */
body, .stm-container, .stm-hero, .stm-journey-section, .stm-packages-section, .stm-combo-section, .stm-cta-section {
    font-family: var(--stm-font-sans);
}

.stm-hero-title, .stm-section-title, .stm-pkg-title, .stm-combo-title, .stm-cta-title, .stm-step-title {
    font-family: var(--stm-font-serif);
}

/* Italic & Color Helpers */
.italic, .stm-hero-title .italic, .stm-section-title .italic {
    font-style: italic !important;
}

.text-gold, .stm-hero-title .text-gold, .stm-section-title .text-gold {
    color: var(--stm-gold) !important;
}

.text-gold-light, .stm-hero-title .text-gold-light {
    color: var(--stm-gold-light) !important;
}

.text-gold-dark, .stm-hero-title .text-gold-dark {
    color: var(--stm-gold-dark) !important;
}

.italic.text-gold, .stm-hero-title .italic.text-gold {
    font-style: italic !important;
    color: var(--stm-gold) !important;
}

/* --- COMMON UTILITIES --- */
.stm-container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.stm-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 154, 108, 0.12);
    color: var(--stm-gold-dark);
    border: 1px solid rgba(196, 154, 108, 0.3);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.stm-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--stm-gold);
}

.stm-section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px auto;
}

.stm-section-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px 0;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .stm-section-title {
        font-size: 42px;
    }
}

.stm-section-desc {
    font-size: 16px;
    color: var(--stm-gray-text);
    line-height: 1.7;
    margin: 0;
}

/* --- SECTION 1: HERO --- */
.stm-hero {
    position: relative;
    background-color: var(--stm-dark);
    color: #ffffff;
    padding: 100px 20px 80px 20px;
    overflow: hidden;
    border-bottom: 1px solid rgba(196, 154, 108, 0.3);
    text-align: center;
}

.stm-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.40;
    filter: none;
    z-index: 1;
}

.stm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.90) 0%, rgba(17, 24, 39, 0.70) 50%, rgba(17, 24, 39, 0.45) 100%);
    z-index: 2;
}

.stm-hero-content {
    position: relative;
    z-index: 10;
    max-width: 860px;
    margin: 0 auto;
}

.stm-hero-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 16px 0 20px 0;
}

@media (min-width: 768px) {
    .stm-hero-title {
        font-size: 52px;
    }
}

.stm-hero-subtitle {
    font-size: 17px;
    color: #D1D5DB;
    line-height: 1.7;
    margin: 0 auto 36px auto;
    max-width: 720px;
}

.stm-btn-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .stm-btn-group {
        flex-direction: row;
    }
}

.stm-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--stm-gold);
    color: #111827 !important;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none !important;
    box-shadow: 0 10px 20px rgba(196, 154, 108, 0.3);
    transition: all 0.25s ease;
}

.stm-btn-primary:hover {
    background-color: var(--stm-gold-light);
    transform: translateY(-2px);
}

.stm-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 16px 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.stm-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.18);
}

.stm-hero-usps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
}

@media (min-width: 640px) {
    .stm-hero-usps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stm-hero-usps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stm-hero-usp-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stm-hero-usp-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(196, 154, 108, 0.15);
    border: 1px solid rgba(196, 154, 108, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stm-gold);
    font-size: 15px;
    flex-shrink: 0;
}

.stm-hero-usp-text {
    font-size: 13px;
    color: #E5E7EB;
    font-weight: 500;
    line-height: 1.4;
}

/* --- SECTION 2: JOURNEY (4 STEPS) --- */
.stm-journey {
    padding: 90px 20px;
    background-color: #ffffff;
}

.stm-journey-steps {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.stm-step-row {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: center;
}

@media (min-width: 992px) {
    .stm-step-row {
        flex-direction: row;
        justify-content: space-between;
        gap: 60px;
    }

    .stm-step-row.is-even {
        flex-direction: row-reverse;
    }
}

.stm-step-text {
    flex: 1 1 50%;
    width: 100%;
    box-sizing: border-box;
}

.stm-step-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .stm-step-title {
        font-size: 32px;
    }
}

.stm-step-desc {
    font-size: 15px;
    color: var(--stm-gray-text);
    line-height: 1.7;
    margin: 0 0 24px 0;
}

.stm-step-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.stm-step-bullet {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.5;
}

.stm-step-bullet-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ECFDF5;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 2px;
}

.stm-step-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    color: var(--stm-gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stm-step-media {
    flex: 1 1 50%;
    width: 100%;
    box-sizing: border-box;
}

.stm-step-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.15);
    border: 4px solid #ffffff;
    background-color: #F3F4F6;
    transition: transform 0.3s ease;
}

.stm-step-img-wrap:hover {
    transform: scale(1.015);
}

.stm-step-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 480px;
}

/* --- SECTION 3: PACKAGES & COMBO BANNER --- */
.stm-packages-section {
    padding: 90px 20px;
    background-color: var(--stm-gray-bg);
    border-top: 1px solid var(--stm-gray-border);
    border-bottom: 1px solid var(--stm-gray-border);
}

.stm-packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: stretch;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .stm-packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stm-card {
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--stm-gray-border);
    padding: 36px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.stm-card:hover {
    box-shadow: 0 16px 24px -6px rgba(0, 0, 0, 0.08);
}

.stm-card-featured {
    border: 2px solid var(--stm-gold);
    box-shadow: 0 16px 30px -5px rgba(196, 154, 108, 0.25);
}

@media (min-width: 768px) {
    .stm-card-featured {
        transform: translateY(-8px);
    }
}

.stm-card-top-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--stm-gold);
    color: #111827;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 8px rgba(196, 154, 108, 0.3);
}

.stm-card-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}

.stm-card-badge-start {
    background-color: #EFF6FF;
    color: #1D4ED8;
}

.stm-card-badge-plus {
    background-color: rgba(196, 154, 108, 0.15);
    color: var(--stm-gold-dark);
}

.stm-card-badge-nelimitat {
    background-color: #ECFDF5;
    color: #047857;
}

.stm-card-name {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 6px 0;
}

.stm-card-capacity {
    font-size: 13px;
    color: #6B7280;
    margin: 0 0 20px 0;
}

.stm-card-price-box {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F3F4F6;
}

.stm-card-price-discount-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.stm-card-price-old {
    font-size: 13px;
    color: #9CA3AF;
    text-decoration: line-through;
    font-weight: 700;
}

.stm-card-discount-pill {
    background-color: #DC2626;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
}

.stm-card-price-val {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 40px;
    font-weight: 700;
    color: #111827;
    line-height: 1;
}

.stm-card-featured .stm-card-price-val {
    color: var(--stm-gold-dark);
}

.stm-card-price-cur {
    font-size: 18px;
    font-weight: 700;
    color: #4B5563;
    margin-left: 4px;
}

.stm-card-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.stm-card-bullet {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #4B5563;
    line-height: 1.5;
    margin-bottom: 12px;
}

.stm-card-bullet i {
    color: var(--stm-gold);
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.stm-card-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none !important;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.stm-card-btn-default {
    background-color: #F3F4F6;
    color: #111827 !important;
}

.stm-card-btn-default:hover {
    background-color: #111827;
    color: #ffffff !important;
}

.stm-card-btn-featured {
    background-color: var(--stm-gold);
    color: #111827 !important;
    box-shadow: 0 4px 10px rgba(196, 154, 108, 0.35);
}

.stm-card-btn-featured:hover {
    background-color: var(--stm-gold-light);
    transform: translateY(-1px);
}

/* --- SECTION: COMBO VIP --- */
.stm-combo-section {
    padding: 0 0 80px 0;
    background-color: #ffffff;
}

.stm-combo-banner {
    background: linear-gradient(135deg, #111827 0%, #1F2937 60%, #0F172A 100%);
    border: 2px solid rgba(196, 154, 108, 0.45);
    border-radius: 24px;
    padding: 40px 30px;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .stm-combo-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 48px 40px;
    }
}

.stm-combo-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 154, 108, 0.2);
    border: 1px solid rgba(196, 154, 108, 0.4);
    color: var(--stm-gold);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.stm-combo-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .stm-combo-title {
        font-size: 32px;
    }
}

.stm-combo-desc {
    font-size: 15px;
    color: #D1D5DB;
    line-height: 1.6;
    margin: 0;
    max-width: 650px;
}

.stm-combo-btn-wrap {
    flex-shrink: 0;
}

/* --- SECTION 4: CTA --- */
.stm-cta-section {
    padding: 80px 20px;
    background-color: var(--stm-dark);
    color: #ffffff;
    text-align: center;
}

.stm-cta-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 16px 0 16px 0;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .stm-cta-title {
        font-size: 40px;
    }
}

.stm-cta-desc {
    font-size: 16px;
    color: #D1D5DB;
    line-height: 1.7;
    margin: 0 auto 36px auto;
    max-width: 640px;
}
